Skip to content

Commit 9ca3cc6

Browse files
Stephan Gatzkadavem330
authored andcommitted
fec_mpc52xx: fix timestamp filtering
skb_defer_rx_timestamp was called with a freshly allocated skb but must be called with rskb instead. Signed-off-by: Stephan Gatzka <stephan@gatzka.org> Cc: stable <stable@vger.kernel.org> Acked-by: Richard Cochran <richardcochran@gmail.com> Signed-off-by: David S. Miller <davem@davemloft.net>
1 parent b1ff4f9 commit 9ca3cc6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

drivers/net/ethernet/freescale/fec_mpc52xx.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -437,7 +437,7 @@ static irqreturn_t mpc52xx_fec_rx_interrupt(int irq, void *dev_id)
437437
length = status & BCOM_FEC_RX_BD_LEN_MASK;
438438
skb_put(rskb, length - 4); /* length without CRC32 */
439439
rskb->protocol = eth_type_trans(rskb, dev);
440-
if (!skb_defer_rx_timestamp(skb))
440+
if (!skb_defer_rx_timestamp(rskb))
441441
netif_rx(rskb);
442442

443443
spin_lock(&priv->lock);

0 commit comments

Comments
 (0)