aboutsummaryrefslogtreecommitdiffstats
path: root/net/core
diff options
context:
space:
mode:
authorPatrick McHardy <kaber@trash.net>2005-08-09 22:25:56 -0400
committerDavid S. Miller <davem@sunset.davemloft.net>2005-08-29 18:31:18 -0400
commitabc3bc58047efa72ee9c2e208cbeb73d261ad703 (patch)
tree05701d5210afd76fded4bd4268a0e7e8c90a06bf /net/core
parent8728b834b226ffcf2c94a58530090e292af2a7bf (diff)
[NET]: Kill skb->tc_classid
Signed-off-by: Patrick McHardy <kaber@trash.net> Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/core')
-rw-r--r--net/core/skbuff.c2
1 files changed, 0 insertions, 2 deletions
diff --git a/net/core/skbuff.c b/net/core/skbuff.c
index e6564b0a6839..8896e6f8aa42 100644
--- a/net/core/skbuff.c
+++ b/net/core/skbuff.c
@@ -300,7 +300,6 @@ void __kfree_skb(struct sk_buff *skb)
300 skb->tc_index = 0; 300 skb->tc_index = 0;
301#ifdef CONFIG_NET_CLS_ACT 301#ifdef CONFIG_NET_CLS_ACT
302 skb->tc_verd = 0; 302 skb->tc_verd = 0;
303 skb->tc_classid = 0;
304#endif 303#endif
305#endif 304#endif
306 305
@@ -376,7 +375,6 @@ struct sk_buff *skb_clone(struct sk_buff *skb, unsigned int __nocast gfp_mask)
376 n->tc_verd = CLR_TC_OK2MUNGE(n->tc_verd); 375 n->tc_verd = CLR_TC_OK2MUNGE(n->tc_verd);
377 n->tc_verd = CLR_TC_MUNGED(n->tc_verd); 376 n->tc_verd = CLR_TC_MUNGED(n->tc_verd);
378 C(input_dev); 377 C(input_dev);
379 C(tc_classid);
380#endif 378#endif
381 379
382#endif 380#endif