]> git.openfabrics.org - ~tnikolova/compat/.git/commitdiff
Add compatibility call for dev_get_stats()
authorArnaud Lacombe <lacombar@gmail.com>
Tue, 1 Dec 2009 08:38:18 +0000 (03:38 -0500)
committerLuis R. Rodriguez <lrodriguez@atheros.com>
Tue, 1 Dec 2009 17:57:48 +0000 (09:57 -0800)
Added on commit eeda3fd6 by Stephen Hemminger in include/linux/netdevice.h.

Signed-off-by: Arnaud Lacombe <lacombar@gmail.com>
compat-2.6.29.h

index ff97b37b6616002d2cc815ef1c2b84097e1cee27..cad5e6b4888b98bfbed4dc20284c447d4731a866 100644 (file)
@@ -6,6 +6,7 @@
 
 #if (LINUX_VERSION_CODE < KERNEL_VERSION(2,6,29))
 
+#include <linux/netdevice.h>
 #include <linux/skbuff.h>
 #include <linux/usb.h>
 
@@ -40,6 +41,12 @@ static inline struct sk_buff *skb_queue_prev(const struct sk_buff_head *list,
        return skb->prev;
 }
 
+
+static inline struct net_device_stats *dev_get_stats(struct net_device *dev)
+{
+       return dev->get_stats(dev);
+}
+
 extern void usb_unpoison_anchored_urbs(struct usb_anchor *anchor);
 
 #define DIV_ROUND_CLOSEST(x, divisor)(                 \