]> git.kernelconcepts.de Git - karo-tx-linux.git/commitdiff
nvmet-fc: Remove a set-but-not-used variable
authorBart Van Assche <bart.vanassche@sandisk.com>
Thu, 8 Jun 2017 16:43:29 +0000 (09:43 -0700)
committerChristoph Hellwig <hch@lst.de>
Thu, 15 Jun 2017 12:30:25 +0000 (14:30 +0200)
This was detected by building the nvmet-fc driver with W=1.

Signed-off-by: Bart Van Assche <bart.vanassche@sandisk.com>
Cc: James Smart <james.smart@broadcom.com>
Cc: Christoph Hellwig <hch@lst.de>
Cc: Johannes Thumshirn <jthumshirn@suse.de>
Signed-off-by: Christoph Hellwig <hch@lst.de>
drivers/nvme/target/fcloop.c

index 294a6611fb249164e8d321147823e708cfe8a1d1..1bb9d5b311b195a1772eed30640d1ea5ea978aa3 100644 (file)
@@ -569,7 +569,6 @@ fcloop_tgt_fcp_abort(struct nvmet_fc_target_port *tgtport,
                        struct nvmefc_tgt_fcp_req *tgt_fcpreq)
 {
        struct fcloop_fcpreq *tfcp_req = tgt_fcp_req_to_fcpreq(tgt_fcpreq);
-       int active;
 
        /*
         * mark aborted only in case there were 2 threads in transport
@@ -577,7 +576,6 @@ fcloop_tgt_fcp_abort(struct nvmet_fc_target_port *tgtport,
         * after the abort request
         */
        spin_lock(&tfcp_req->reqlock);
-       active = tfcp_req->active;
        tfcp_req->aborted = true;
        spin_unlock(&tfcp_req->reqlock);