case SNIC_STAT_IO_SUCCESS:
        case SNIC_STAT_IO_NOT_FOUND:
                ret = SUCCESS;
+               /*
+                * If abort path doesn't call scsi_done(),
+                * the # IO timeouts == 2, will cause the LUN offline.
+                * Call scsi_done to complete the IO.
+                */
+               sc->result = (DID_ERROR << 16);
+               sc->scsi_done(sc);
                break;
 
        default:
                /* Firmware completed abort with error */
                ret = FAILED;
+               rqi = NULL;
                break;
        }
 
 
        snic_release_req_buf(snic, rqi, sc);
 
+       sc->result = (DID_ERROR << 16);
+       sc->scsi_done(sc);
+
        ret = 0;
 
        return ret;
                      "Completing Pending TM Req sc %p, state %s flags 0x%llx\n",
                      sc, snic_io_status_to_str(CMD_STATE(sc)), CMD_FLAGS(sc));
 
+       /*
+        * CASE : FW didn't post itmf completion due to PCIe Errors.
+        * Marking the abort status as Success to call scsi completion
+        * in snic_abort_finish()
+        */
+       CMD_ABTS_STATUS(sc) = SNIC_STAT_IO_SUCCESS;
+
        rqi = (struct snic_req_info *) CMD_SP(sc);
        if (!rqi)
                return;