提交 b6461fe5 编写于 作者: G gaoxingwang 提交者: Zheng Zengkai

ipvlan: Add handling of NETDEV_UP events

mainline inclusion
from mainline-v5.16-rc5
category: bugfix
commit 57fb346c
bugzilla: https://gitee.com/openeuler/kernel/issues/I4NDLN
CVE: NA

----------------------

When an ipvlan device is created on a bond device, the link state
of the ipvlan device may be abnormal. This is because bonding device
allows to add physical network card device in the down state and so
NETDEV_CHANGE event will not be notified to other listeners, so ipvlan
has no chance to update its link status.

The following steps can cause such problems:
	1) bond0 is down
	2) ip link add link bond0 name ipvlan type ipvlan mode l2
	3) echo +enp2s7 >/sys/class/net/bond0/bonding/slaves
	4) ip link set bond0 up

After these steps, use ip link command, we found ipvlan has NO-CARRIER:
  ipvlan@bond0: <NO-CARRIER, BROADCAST,MULTICAST,UP,M-DOWN> mtu ...>

We can deal with this problem like VLAN: Add handling of NETDEV_UP
events. If we receive NETDEV_UP event, we will update the link status
of the ipvlan.
Signed-off-by: Ngaoxingwang <gaoxingwang@huawei.com>
Reviewed-by: Nwuchangye <wuchangye@huawei.com>
Reviewed-by: Nwuchangye <wuchangye@huawei.com>
Signed-off-by: Ngaoxingwang <gaoxingwang@huawei.com>
Reviewed-by: Nwuchangye <wuchangye@huawei.com>
Reviewed-by: NWei Yongjun <weiyongjun1@huawei.com>
Signed-off-by: NZheng Zengkai <zhengzengkai@huawei.com>
上级 9c5a512a
...@@ -805,6 +805,7 @@ static int ipvlan_device_event(struct notifier_block *unused, ...@@ -805,6 +805,7 @@ static int ipvlan_device_event(struct notifier_block *unused,
port = ipvlan_port_get_rtnl(dev); port = ipvlan_port_get_rtnl(dev);
switch (event) { switch (event) {
case NETDEV_UP:
case NETDEV_CHANGE: case NETDEV_CHANGE:
list_for_each_entry(ipvlan, &port->ipvlans, pnode) list_for_each_entry(ipvlan, &port->ipvlans, pnode)
netif_stacked_transfer_operstate(ipvlan->phy_dev, netif_stacked_transfer_operstate(ipvlan->phy_dev,
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册