The patch titled nmclan_cs: dereferencing skb after netif_rx() has been added to the -mm tree. Its filename is nmclan_cs-dereferencing-skb-after-netif_rx.patch See http://www.zip.com.au/~akpm/linux/patches/stuff/added-to-mm.txt to find out what to do about this ------------------------------------------------------ Subject: nmclan_cs: dereferencing skb after netif_rx() From: Florin Malita <fmalita@xxxxxxxxx> The skb may be gone after netif_rx(), we can't use 'skb->len' to update the stats. 'pkt_len' should work instead. Coverity CID: 911. Signed-off-by: Florin Malita <fmalita@xxxxxxxxx> Cc: Dominik Brodowski <linux@xxxxxxxxxxxxxxxxxxxx> Cc: Jeff Garzik <jeff@xxxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxx> --- drivers/net/pcmcia/nmclan_cs.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff -puN drivers/net/pcmcia/nmclan_cs.c~nmclan_cs-dereferencing-skb-after-netif_rx drivers/net/pcmcia/nmclan_cs.c --- devel/drivers/net/pcmcia/nmclan_cs.c~nmclan_cs-dereferencing-skb-after-netif_rx 2006-05-30 17:48:46.000000000 -0700 +++ devel-akpm/drivers/net/pcmcia/nmclan_cs.c 2006-05-30 17:48:46.000000000 -0700 @@ -1204,7 +1204,7 @@ static int mace_rx(struct net_device *de dev->last_rx = jiffies; lp->linux_stats.rx_packets++; - lp->linux_stats.rx_bytes += skb->len; + lp->linux_stats.rx_bytes += pkt_len; outb(0xFF, ioaddr + AM2150_RCV_NEXT); /* skip to next frame */ continue; } else { _ Patches currently in -mm which might be from fmalita@xxxxxxxxx are origin.patch nmclan_cs-dereferencing-skb-after-netif_rx.patch git-mtd.patch git-netdev-all.patch irda-missing-allocation-result-check-in-irlap_change_speed.patch pcmcia-missing-pcmcia_get_socket-result-check.patch - To unsubscribe from this list: send the line "unsubscribe mm-commits" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html