]> asedeno.scripts.mit.edu Git - linux.git/commitdiff
net: hns3: stop sending keep alive msg when VF command queue needs reinit
authorHuazhong Tan <tanhuazhong@huawei.com>
Thu, 25 Apr 2019 12:42:48 +0000 (20:42 +0800)
committerDavid S. Miller <davem@davemloft.net>
Fri, 26 Apr 2019 16:13:28 +0000 (12:13 -0400)
HCLGEVF_STATE_CMD_DISABLE is more suitable than
HCLGEVF_STATE_RST_HANDLING to stop sending keep alive msg,
since HCLGEVF_STATE_RST_HANDLING only be set when the reset
task is running.

Fixes: c59a85c07e77 ("net: hns3: stop sending keep alive msg to PF when VF is resetting")
Signed-off-by: Huazhong Tan <tanhuazhong@huawei.com>
Signed-off-by: Peng Li <lipeng321@huawei.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
drivers/net/ethernet/hisilicon/hns3/hns3vf/hclgevf_main.c

index f9d98f8863adcd96e625d30d9e41053ac9dce6c4..7672cab5464307c5dc00da33ca28994301eae045 100644 (file)
@@ -1758,7 +1758,7 @@ static void hclgevf_keep_alive_task(struct work_struct *work)
 
        hdev = container_of(work, struct hclgevf_dev, keep_alive_task);
 
-       if (test_bit(HCLGEVF_STATE_RST_HANDLING, &hdev->state))
+       if (test_bit(HCLGEVF_STATE_CMD_DISABLE, &hdev->state))
                return;
 
        ret = hclgevf_send_mbx_msg(hdev, HCLGE_MBX_KEEP_ALIVE, 0, NULL,