lkml.org 
[lkml]   [2011]   [Jan]   [20]   [last100]   RSS Feed
Views: [wrap][no wrap]   [headers]  [forward] 
 
Messages in this thread
    /
    SubjectRe: [PATCH v3] net: add Faraday FTMAC100 10/100 Ethernet driver
    From
    Date
    Le jeudi 20 janvier 2011 à 23:30 +0800, Po-Yu Chuang a écrit :

    > + /* push packet to protocol stack */
    > + netif_receive_skb(skb);
    > +
    > + netdev->stats.rx_packets++;
    > + netdev->stats.rx_bytes += skb->len;
    > +
    > + (*processed)++;
    > +
    > + return true;
    > +}
    > +

    Hmm, after call to netif_receive_skb(skb), you are not allowed to access
    skb anymore (maybe it was freed)

    netdev->stats.rx_packets++;
    netdev->stats.rx_bytes += skb->len;
    netif_receive_skb(skb);



    --
    To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
    the body of a message to majordomo@vger.kernel.org
    More majordomo info at http://vger.kernel.org/majordomo-info.html
    Please read the FAQ at http://www.tux.org/lkml/

    \
     
     \ /
      Last update: 2011-01-20 16:39    [W:4.151 / U:0.032 seconds]
    ©2003-2020 Jasper Spaans|hosted at Digital Ocean and TransIP|Read the blog|Advertise on this site