struct se_cmd se_cmd;
 
-       atomic_t tmr_complete;
-       wait_queue_head_t tmr_wait;
+       struct completion tmr_done;
 };
 
 #define VSCSI_DEFAULT_SESSION_TAGS     128
        u64 unpacked_lun = pending_req->v2p->lun;
        int rc, err = FAILED;
 
-       init_waitqueue_head(&pending_req->tmr_wait);
+       init_completion(&pending_req->tmr_done);
 
        rc = target_submit_tmr(&pending_req->se_cmd, nexus->tvn_se_sess,
                               &pending_req->sense_buffer[0],
        if (rc)
                goto err;
 
-       wait_event(pending_req->tmr_wait,
-                  atomic_read(&pending_req->tmr_complete));
+       wait_for_completion(&pending_req->tmr_done);
 
        err = (se_cmd->se_tmr_req->response == TMR_FUNCTION_COMPLETE) ?
                SUCCESS : FAILED;
        struct vscsibk_pend *pending_req = container_of(se_cmd,
                                struct vscsibk_pend, se_cmd);
 
-       atomic_set(&pending_req->tmr_complete, 1);
-       wake_up(&pending_req->tmr_wait);
+       complete(&pending_req->tmr_done);
 }
 
 static void scsiback_aborted_task(struct se_cmd *se_cmd)