skbuff.c (06693f305e60202d2795a10bee7fb7da23bc2acc) | skbuff.c (e0d1095ae3405404d247afb00233ef837d58da83) |
---|---|
1/* 2 * Routines having to do with the 'struct sk_buff' memory handlers. 3 * 4 * Authors: Alan Cox <alan@lxorguk.ukuu.org.uk> 5 * Florian La Roche <rzsfl@rz.uni-sb.de> 6 * 7 * Fixes: 8 * Alan Cox : Fixed the worst of the load --- 726 unchanged lines hidden (view full) --- 735 new->tc_verd = old->tc_verd; 736#endif 737#endif 738 new->vlan_proto = old->vlan_proto; 739 new->vlan_tci = old->vlan_tci; 740 741 skb_copy_secmark(new, old); 742 | 1/* 2 * Routines having to do with the 'struct sk_buff' memory handlers. 3 * 4 * Authors: Alan Cox <alan@lxorguk.ukuu.org.uk> 5 * Florian La Roche <rzsfl@rz.uni-sb.de> 6 * 7 * Fixes: 8 * Alan Cox : Fixed the worst of the load --- 726 unchanged lines hidden (view full) --- 735 new->tc_verd = old->tc_verd; 736#endif 737#endif 738 new->vlan_proto = old->vlan_proto; 739 new->vlan_tci = old->vlan_tci; 740 741 skb_copy_secmark(new, old); 742 |
743#ifdef CONFIG_NET_LL_RX_POLL | 743#ifdef CONFIG_NET_RX_BUSY_POLL |
744 new->napi_id = old->napi_id; 745#endif 746} 747 748/* 749 * You should not add any new code to this function. Add it to 750 * __copy_skb_header above instead. 751 */ --- 2772 unchanged lines hidden --- | 744 new->napi_id = old->napi_id; 745#endif 746} 747 748/* 749 * You should not add any new code to this function. Add it to 750 * __copy_skb_header above instead. 751 */ --- 2772 unchanged lines hidden --- |