diff options
author | Andy Roulin <aroulin@cumulusnetworks.com> | 2019-02-22 21:06:37 +0300 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2019-02-25 00:01:04 +0300 |
commit | 2e8b4ba64676f0871ee5952c23cdef6d4ac35195 (patch) | |
tree | a6488d1e211302fd0a2f658fca9ede94ba55470b /drivers/net/macvlan.c | |
parent | b58996795dc4921123ada213f9f10b8317d3f34f (diff) | |
download | linux-2e8b4ba64676f0871ee5952c23cdef6d4ac35195.tar.xz |
macvlan: add ndo_change_proto_down support
Add ndo_change_proto_down support through dev_change_proto_down_generic
for use by control protocols like VRRPD.
Signed-off-by: Andy Roulin <aroulin@cumulusnetworks.com>
Acked-by: Roopa Prabhu <roopa@cumulusnetworks.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'drivers/net/macvlan.c')
-rw-r--r-- | drivers/net/macvlan.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/net/macvlan.c b/drivers/net/macvlan.c index 26e53832b095..0c0f105657d3 100644 --- a/drivers/net/macvlan.c +++ b/drivers/net/macvlan.c @@ -1122,6 +1122,7 @@ static const struct net_device_ops macvlan_netdev_ops = { #endif .ndo_get_iflink = macvlan_dev_get_iflink, .ndo_features_check = passthru_features_check, + .ndo_change_proto_down = dev_change_proto_down_generic, }; void macvlan_common_setup(struct net_device *dev) |