Message ID | 1273224906-4874-7-git-send-email-xiaohui.xin@intel.com (mailing list archive) |
---|---|
State | New, archived |
Headers | show |
diff --git a/include/linux/netdevice.h b/include/linux/netdevice.h index 31d9c4a..0cb78f4 100644 --- a/include/linux/netdevice.h +++ b/include/linux/netdevice.h @@ -1602,6 +1602,11 @@ extern void netdev_mp_port_detach(struct net_device *dev); extern int netdev_mp_port_prep(struct net_device *dev, struct mpassthru_port *port); +static inline bool dev_is_mpassthru(struct net_device *dev) +{ + return (dev && dev->mp_port); +} + static inline void napi_free_frags(struct napi_struct *napi) { kfree_skb(napi->skb);