aboutsummaryrefslogtreecommitdiffstats
path: root/include/linux/netdevice.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/linux/netdevice.h')
-rw-r--r--include/linux/netdevice.h9
1 files changed, 9 insertions, 0 deletions
diff --git a/include/linux/netdevice.h b/include/linux/netdevice.h
index 71cf409ad17e..b33d084712fa 100644
--- a/include/linux/netdevice.h
+++ b/include/linux/netdevice.h
@@ -800,6 +800,15 @@ extern int dev_restart(struct net_device *dev);
800extern int netpoll_trap(void); 800extern int netpoll_trap(void);
801#endif 801#endif
802 802
803static inline int dev_hard_header(struct sk_buff *skb, struct net_device *dev,
804 unsigned short type,
805 void *daddr, void *saddr, unsigned len)
806{
807 if (!dev->hard_header)
808 return 0;
809 return dev->hard_header(skb, dev, type, daddr, saddr, len);
810}
811
803typedef int gifconf_func_t(struct net_device * dev, char __user * bufptr, int len); 812typedef int gifconf_func_t(struct net_device * dev, char __user * bufptr, int len);
804extern int register_gifconf(unsigned int family, gifconf_func_t * gifconf); 813extern int register_gifconf(unsigned int family, gifconf_func_t * gifconf);
805static inline int unregister_gifconf(unsigned int family) 814static inline int unregister_gifconf(unsigned int family)