RDMA/cma: Use existing netif_is_bond_master function
authorParav Pandit <parav@mellanox.com>
Sun, 28 Jan 2018 09:25:32 +0000 (11:25 +0200)
committerJason Gunthorpe <jgg@mellanox.com>
Sun, 28 Jan 2018 21:07:16 +0000 (14:07 -0700)
When checking whatever the current netdev is the bond master interface,
use kernel API netif_is_bond_master() instead of hardcoding the check.
No functionality is changed.

Reviewed-by: Mark Bloch <markb@mellanox.com>
Signed-off-by: Parav Pandit <parav@mellanox.com>
Signed-off-by: Leon Romanovsky <leon@kernel.org>
Reviewed-by: Yuval Shaia <yuval.shaia@oracle.com>
Signed-off-by: Jason Gunthorpe <jgg@mellanox.com>
drivers/infiniband/core/cma.c

index 84812b9..e66963c 100644 (file)
@@ -4294,7 +4294,7 @@ static int cma_netdev_callback(struct notifier_block *self, unsigned long event,
        if (event != NETDEV_BONDING_FAILOVER)
                return NOTIFY_DONE;
 
-       if (!(ndev->flags & IFF_MASTER) || !(ndev->priv_flags & IFF_BONDING))
+       if (!netif_is_bond_master(ndev))
                return NOTIFY_DONE;
 
        mutex_lock(&lock);