net: hns3: add interrupts re-initialization while doing VF FLR
authorJie Wang <wangjie125@huawei.com>
Thu, 22 Dec 2022 06:43:41 +0000 (14:43 +0800)
committerJakub Kicinski <kuba@kernel.org>
Fri, 23 Dec 2022 20:00:08 +0000 (12:00 -0800)
Currently keep alive message between PF and VF may be lost and the VF is
unalive in PF. So the VF will not do reset during PF FLR reset process.
This would make the allocated interrupt resources of VF invalid and VF
would't receive or respond to PF any more.

So this patch adds VF interrupts re-initialization during VF FLR for VF
recovery in above cases.

Fixes: 862d969a3a4d ("net: hns3: do VF's pci re-initialization while PF doing FLR")
Signed-off-by: Jie Wang <wangjie125@huawei.com>
Signed-off-by: Hao Lan <lanhao@huawei.com>
Signed-off-by: Jakub Kicinski <kuba@kernel.org>
drivers/net/ethernet/hisilicon/hns3/hns3vf/hclgevf_main.c

index db6f7cdba9587ebc2121aa3ff48b58dcdf0abe5f..081bd2c3f2891951f3e422bfdc227f2066425a3f 100644 (file)
@@ -2767,7 +2767,8 @@ static int hclgevf_pci_reset(struct hclgevf_dev *hdev)
        struct pci_dev *pdev = hdev->pdev;
        int ret = 0;
 
-       if (hdev->reset_type == HNAE3_VF_FULL_RESET &&
+       if ((hdev->reset_type == HNAE3_VF_FULL_RESET ||
+            hdev->reset_type == HNAE3_FLR_RESET) &&
            test_bit(HCLGEVF_STATE_IRQ_INITED, &hdev->state)) {
                hclgevf_misc_irq_uninit(hdev);
                hclgevf_uninit_msi(hdev);