]> git.baikalelectronics.ru Git - kernel.git/commit
net: hns3: fix a not link up issue when fibre port supports autoneg
authorJian Shen <shenjian15@huawei.com>
Thu, 5 Mar 2020 01:47:53 +0000 (09:47 +0800)
committerDavid S. Miller <davem@davemloft.net>
Thu, 5 Mar 2020 20:04:50 +0000 (12:04 -0800)
commit6368875d7f9d53c362b770ef4a82d5038c6b370e
tree838a558d49d77afba85b2c87fb7b9c5f17f14d17
parentc8bc686fcbd234783c63a22eddd7252c20f7842a
net: hns3: fix a not link up issue when fibre port supports autoneg

When fibre port supports auto-negotiation, the IMP(Intelligent
Management Process) processes the speed of auto-negotiation
and the  user's speed separately.
For below case, the port will get a not link up problem.
step 1: disables auto-negotiation and sets speed to A, then
the driver's MAC speed will be updated to A.
step 2: enables auto-negotiation and MAC gets negotiated
speed B, then the driver's MAC speed will be updated to B
through querying in periodical task.
step 3: MAC gets new negotiated speed A.
step 4: disables auto-negotiation and sets speed to B before
periodical task query new MAC speed A, the driver will  ignore
the speed configuration.

This patch fixes it by skipping speed and duplex checking when
fibre port supports auto-negotiation.

Fixes: c8c430832346 ("net: hns3: add autoneg and change speed support for fibre port")
Signed-off-by: Jian Shen <shenjian15@huawei.com>
Signed-off-by: Huazhong Tan <tanhuazhong@huawei.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
drivers/net/ethernet/hisilicon/hns3/hns3pf/hclge_main.c