bool writen_to_tbl = false;
        int ret = 0;
 
-       /* When device is resetting, firmware is unable to handle
-        * mailbox. Just record the vlan id, and remove it after
+       /* When device is resetting or reset failed, firmware is unable to
+        * handle mailbox. Just record the vlan id, and remove it after
         * reset finished.
         */
-       if (test_bit(HCLGE_STATE_RST_HANDLING, &hdev->state) && is_kill) {
+       if ((test_bit(HCLGE_STATE_RST_HANDLING, &hdev->state) ||
+            test_bit(HCLGE_STATE_RST_FAIL, &hdev->state)) && is_kill) {
                set_bit(vlan_id, vport->vlan_del_fail_bmap);
                return -EBUSY;
        }
 
        if (proto != htons(ETH_P_8021Q))
                return -EPROTONOSUPPORT;
 
-       /* When device is resetting, firmware is unable to handle
-        * mailbox. Just record the vlan id, and remove it after
+       /* When device is resetting or reset failed, firmware is unable to
+        * handle mailbox. Just record the vlan id, and remove it after
         * reset finished.
         */
-       if (test_bit(HCLGEVF_STATE_RST_HANDLING, &hdev->state) && is_kill) {
+       if ((test_bit(HCLGEVF_STATE_RST_HANDLING, &hdev->state) ||
+            test_bit(HCLGEVF_STATE_RST_FAIL, &hdev->state)) && is_kill) {
                set_bit(vlan_id, hdev->vlan_del_fail_bmap);
                return -EBUSY;
        }
 
        rtnl_lock();
 
-       if (test_bit(HCLGEVF_STATE_RST_HANDLING, &hdev->state)) {
+       if (test_bit(HCLGEVF_STATE_RST_HANDLING, &hdev->state) ||
+           test_bit(HCLGEVF_STATE_RST_FAIL, &hdev->state)) {
                dev_warn(&hdev->pdev->dev,
                         "is resetting when updating port based vlan info\n");
                rtnl_unlock();