]> bbs.cooldavid.org Git - net-next-2.6.git/commitdiff
skbuff: remove unused dev_consume_skb macro definition
authorAlexander Duyck <alexander.h.duyck@intel.com>
Fri, 9 Apr 2010 10:01:37 +0000 (10:01 +0000)
committerDavid S. Miller <davem@davemloft.net>
Tue, 13 Apr 2010 09:58:24 +0000 (02:58 -0700)
dev_consume_skb and kfree_skb_clean have no users and in the case of
kfree_skb_clean could cause potential build issues since I cannot find
where it is defined.  Based on the patch in which it was introduced it
appears to have been a bit of leftover code from an earlier version of the
patch in which kfree_skb_clean was dropped in favor of consume_skb.

Signed-off-by: Alexander Duyck <alexander.h.duyck@intel.com>
Signed-off-by: Jeff Kirsher <jeffrey.t.kirsher@intel.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
include/linux/skbuff.h

index cf42f194616e39600dcbdfc2f4eba78eb8636efb..38501d20650c8241cfec4a5e546c523a2f4cf764 100644 (file)
@@ -470,7 +470,6 @@ extern int         skb_cow_data(struct sk_buff *skb, int tailbits,
                                    struct sk_buff **trailer);
 extern int            skb_pad(struct sk_buff *skb, int pad);
 #define dev_kfree_skb(a)       consume_skb(a)
-#define dev_consume_skb(a)     kfree_skb_clean(a)
 extern void          skb_over_panic(struct sk_buff *skb, int len,
                                     void *here);
 extern void          skb_under_panic(struct sk_buff *skb, int len,