diff options
author | dingtianhong <dingtianhong@huawei.com> | 2014-05-30 16:00:56 +0800 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2014-06-02 16:05:24 -0700 |
commit | 688cea83f4396fa98b77a126ed278b89daccccdc (patch) | |
tree | ae3349b41460cf5cfb9fe1a09ae1e613e619171f /include/linux/if_macvlan.h | |
parent | 7d507ac28ab9a17f28fd8c8be82f9255a1f72834 (diff) | |
download | blackbird-op-linux-688cea83f4396fa98b77a126ed278b89daccccdc.tar.gz blackbird-op-linux-688cea83f4396fa98b77a126ed278b89daccccdc.zip |
macvlan: add netpoll support
Add netpoll support to macvlan devices. Based on the netpoll support in the 802.1q vlan code.
Tested and macvlan could work well with netconsole.
Signed-off-by: Ding Tianhong <dingtianhong@huawei.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'include/linux/if_macvlan.h')
-rw-r--r-- | include/linux/if_macvlan.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/include/linux/if_macvlan.h b/include/linux/if_macvlan.h index a9a53b12397b..6b2c7cf352a5 100644 --- a/include/linux/if_macvlan.h +++ b/include/linux/if_macvlan.h @@ -57,6 +57,9 @@ struct macvlan_dev { netdev_features_t tap_features; int minor; int nest_level; +#ifdef CONFIG_NET_POLL_CONTROLLER + struct netpoll *netpoll; +#endif }; static inline void macvlan_count_rx(const struct macvlan_dev *vlan, |