(hba->clk_gating.state != CLKS_ON));
 
        lrbp = &hba->lrb[tag];
+       if (unlikely(lrbp->in_use)) {
+               if (hba->pm_op_in_progress)
+                       set_host_byte(cmd, DID_BAD_TARGET);
+               else
+                       err = SCSI_MLQUEUE_HOST_BUSY;
+               ufshcd_release(hba);
+               goto out;
+       }
 
        WARN_ON(lrbp->cmd);
        lrbp->cmd = cmd;
 
        init_completion(&wait);
        lrbp = &hba->lrb[tag];
+       if (unlikely(lrbp->in_use)) {
+               err = -EBUSY;
+               goto out;
+       }
+
        WARN_ON(lrbp->cmd);
        err = ufshcd_compose_dev_cmd(hba, lrbp, cmd_type, tag);
        if (unlikely(err))
 
        err = ufshcd_wait_for_dev_cmd(hba, lrbp, timeout);
 
+out:
        ufshcd_add_query_upiu_trace(hba, tag,
                        err ? "query_complete_err" : "query_complete");
 
        struct scsi_cmnd *cmd;
        int result;
        int index;
+       bool update_scaling = false;
 
        for_each_set_bit(index, &completed_reqs, hba->nutrs) {
                lrbp = &hba->lrb[index];
+               lrbp->in_use = false;
                lrbp->compl_time_stamp = ktime_get();
                cmd = lrbp->cmd;
                if (cmd) {
                        /* Do not touch lrbp after scsi done */
                        cmd->scsi_done(cmd);
                        __ufshcd_release(hba);
+                       update_scaling = true;
                } else if (lrbp->command_type == UTP_CMD_TYPE_DEV_MANAGE ||
                        lrbp->command_type == UTP_CMD_TYPE_UFS_STORAGE) {
                        if (hba->dev_cmd.complete) {
                                ufshcd_add_command_trace(hba, index,
                                                "dev_complete");
                                complete(hba->dev_cmd.complete);
+                               update_scaling = true;
                        }
                }
-               if (ufshcd_is_clkscaling_supported(hba))
+               if (ufshcd_is_clkscaling_supported(hba) && update_scaling)
                        hba->clk_scaling.active_reqs--;
        }
 
 
        init_completion(&wait);
        lrbp = &hba->lrb[tag];
-       WARN_ON(lrbp->cmd);
+       if (unlikely(lrbp->in_use)) {
+               err = -EBUSY;
+               goto out;
+       }
 
+       WARN_ON(lrbp->cmd);
        lrbp->cmd = NULL;
        lrbp->sense_bufflen = 0;
        lrbp->sense_buffer = NULL;
                }
        }
 
+out:
        blk_put_request(req);
 out_unlock:
        up_read(&hba->clk_scaling_lock);
                BUG();
        }
 
-       /*
-        * Task abort to the device W-LUN is illegal. When this command
-        * will fail, due to spec violation, scsi err handling next step
-        * will be to send LU reset which, again, is a spec violation.
-        * To avoid these unnecessary/illegal step we skip to the last error
-        * handling stage: reset and restore.
-        */
-       if (lrbp->lun == UFS_UPIU_UFS_DEVICE_WLUN) {
-               ufshcd_update_evt_hist(hba, UFS_EVT_ABORT, lrbp->lun);
-               return ufshcd_eh_host_reset_handler(cmd);
-       }
-
        ufshcd_hold(hba, false);
        reg = ufshcd_readl(hba, REG_UTP_TRANSFER_REQ_DOOR_BELL);
        /* If command is already aborted/completed, return SUCCESS */
         * to reduce repeated printouts. For other aborted requests only print
         * basic details.
         */
-       scsi_print_command(hba->lrb[tag].cmd);
+       scsi_print_command(cmd);
        if (!hba->req_abort_count) {
                ufshcd_update_evt_hist(hba, UFS_EVT_ABORT, tag);
                ufshcd_print_evt_hist(hba);
                goto cleanup;
        }
 
+       /*
+        * Task abort to the device W-LUN is illegal. When this command
+        * will fail, due to spec violation, scsi err handling next step
+        * will be to send LU reset which, again, is a spec violation.
+        * To avoid these unnecessary/illegal steps, first we clean up
+        * the lrb taken by this cmd and mark the lrb as in_use, then
+        * queue the eh_work and bail.
+        */
+       if (lrbp->lun == UFS_UPIU_UFS_DEVICE_WLUN) {
+               ufshcd_update_evt_hist(hba, UFS_EVT_ABORT, lrbp->lun);
+               spin_lock_irqsave(host->host_lock, flags);
+               if (lrbp->cmd) {
+                       __ufshcd_transfer_req_compl(hba, (1UL << tag));
+                       __set_bit(tag, &hba->outstanding_reqs);
+                       lrbp->in_use = true;
+                       hba->force_reset = true;
+                       ufshcd_schedule_eh_work(hba);
+               }
+
+               spin_unlock_irqrestore(host->host_lock, flags);
+               goto out;
+       }
+
        /* Skip task abort in case previous aborts failed and report failure */
        if (lrbp->req_abort_skip)
                err = -EIO;