MU_STATE_STARTED                        = 2,
        MU_STATE_RESETTING                      = 3,
        MU_STATE_FAILED                         = 4,
+       MU_STATE_STOP                           = 5,
+       MU_STATE_NOCONNECT                      = 6,
 
        MU_MAX_DELAY                            = 120,
        MU_HANDSHAKE_SIGNATURE                  = 0x55aaaa55,
        readl(hba->mmio_base + YH2I_REQ); /* flush */
 }
 
+static void return_abnormal_state(struct st_hba *hba, int status)
+{
+       struct st_ccb *ccb;
+       unsigned long flags;
+       u16 tag;
+
+       spin_lock_irqsave(hba->host->host_lock, flags);
+       for (tag = 0; tag < hba->host->can_queue; tag++) {
+               ccb = &hba->ccb[tag];
+               if (ccb->req == NULL)
+                       continue;
+               ccb->req = NULL;
+               if (ccb->cmd) {
+                       scsi_dma_unmap(ccb->cmd);
+                       ccb->cmd->result = status << 16;
+                       ccb->cmd->scsi_done(ccb->cmd);
+                       ccb->cmd = NULL;
+               }
+       }
+       spin_unlock_irqrestore(hba->host->host_lock, flags);
+}
 static int
 stex_slave_config(struct scsi_device *sdev)
 {
        id = cmd->device->id;
        lun = cmd->device->lun;
        hba = (struct st_hba *) &host->hostdata[0];
-
-       if (unlikely(hba->mu_status == MU_STATE_RESETTING))
+       if (hba->mu_status == MU_STATE_NOCONNECT) {
+               cmd->result = DID_NO_CONNECT;
+               done(cmd);
+               return 0;
+       }
+       if (unlikely(hba->mu_status != MU_STATE_STARTED))
                return SCSI_MLQUEUE_HOST_BUSY;
 
        switch (cmd->cmnd[0]) {
 
 static int stex_do_reset(struct st_hba *hba)
 {
-       struct st_ccb *ccb;
        unsigned long flags;
        unsigned int mu_status = MU_STATE_RESETTING;
-       u16 tag;
 
        spin_lock_irqsave(hba->host->host_lock, flags);
        if (hba->mu_status == MU_STATE_STARTING) {
        else if (hba->cardtype == st_yel)
                stex_ss_reset(hba);
 
-       spin_lock_irqsave(hba->host->host_lock, flags);
-       for (tag = 0; tag < hba->host->can_queue; tag++) {
-               ccb = &hba->ccb[tag];
-               if (ccb->req == NULL)
-                       continue;
-               ccb->req = NULL;
-               if (ccb->cmd) {
-                       scsi_dma_unmap(ccb->cmd);
-                       ccb->cmd->result = DID_RESET << 16;
-                       ccb->cmd->scsi_done(ccb->cmd);
-                       ccb->cmd = NULL;
-               }
-       }
-       spin_unlock_irqrestore(hba->host->host_lock, flags);
+
+       return_abnormal_state(hba, DID_RESET);
 
        if (stex_handshake(hba) == 0)
                return 0;
 {
        struct st_hba *hba = pci_get_drvdata(pdev);
 
+       hba->mu_status = MU_STATE_NOCONNECT;
+       return_abnormal_state(hba, DID_NO_CONNECT);
        scsi_remove_host(hba->host);
 
-       stex_hba_stop(hba);
+       scsi_block_requests(hba->host);
 
        stex_hba_free(hba);