mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2024-11-19 02:04:19 +08:00
fcoe: correct checking for bonding
Check for bonding master and refuse to use that. Signed-off-by: Jiri Pirko <jpirko@redhat.com> Acked-by: Robert Love <robert.w.love@intel.com> Acked-by: James Bottomley <James.Bottomley@suse.de> Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
parent
2ce8c07d63
commit
cc8bdf0623
@ -285,9 +285,7 @@ static int fcoe_interface_setup(struct fcoe_interface *fcoe,
|
||||
}
|
||||
|
||||
/* Do not support for bonding device */
|
||||
if ((netdev->priv_flags & IFF_MASTER_ALB) ||
|
||||
(netdev->priv_flags & IFF_SLAVE_INACTIVE) ||
|
||||
(netdev->priv_flags & IFF_MASTER_8023AD)) {
|
||||
if (netdev->priv_flags & IFF_BONDING && netdev->flags & IFF_MASTER) {
|
||||
FCOE_NETDEV_DBG(netdev, "Bonded interfaces not supported\n");
|
||||
return -EOPNOTSUPP;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user