aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/net/macvlan.c
diff options
context:
space:
mode:
authorMahesh Bandewar <maheshb@google.com>2017-01-18 15:02:55 -0800
committerDavid S. Miller <davem@davemloft.net>2017-01-20 12:22:26 -0500
commit322dc6e067a15a17e66ce35338ca701f13c6422d (patch)
treec2e4ed1163126ecc3416d9510f98322a8b27f343 /drivers/net/macvlan.c
parentipvlan: use netdev_is_rx_handler_busy instead of checking specific type (diff)
downloadlinux-dev-322dc6e067a15a17e66ce35338ca701f13c6422d.tar.xz
linux-dev-322dc6e067a15a17e66ce35338ca701f13c6422d.zip
macvlan: use netdev_is_rx_handler_busy instead of checking specific type
netdev_is_rx_handler_busy() check is a superset of netif_is_ipvlan_port() check and hence should be preferred. Signed-off-by: Mahesh Bandewar <maheshb@google.com> Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'drivers/net/macvlan.c')
-rw-r--r--drivers/net/macvlan.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/net/macvlan.c b/drivers/net/macvlan.c
index 440ab3d8adf7..cbfc1be23a0e 100644
--- a/drivers/net/macvlan.c
+++ b/drivers/net/macvlan.c
@@ -1110,7 +1110,7 @@ static int macvlan_port_create(struct net_device *dev)
if (dev->type != ARPHRD_ETHER || dev->flags & IFF_LOOPBACK)
return -EINVAL;
- if (netif_is_ipvlan_port(dev))
+ if (netdev_is_rx_handler_busy(dev))
return -EBUSY;
port = kzalloc(sizeof(*port), GFP_KERNEL);