diff options
author | Bart Van Assche | 2017-05-24 01:48:35 +0200 |
---|---|---|
committer | Nicholas Bellinger | 2017-07-07 07:58:01 +0200 |
commit | 13fdd4458ed1b808946fd7baba657b6a51d3c72b (patch) | |
tree | 6f92ffcadd72d8eceaf82b8462e48961a20589ba /drivers/infiniband/ulp | |
parent | target: Fix a deadlock between the XCOPY code and iSCSI session shutdown (diff) | |
download | kernel-qcow2-linux-13fdd4458ed1b808946fd7baba657b6a51d3c72b.tar.gz kernel-qcow2-linux-13fdd4458ed1b808946fd7baba657b6a51d3c72b.tar.xz kernel-qcow2-linux-13fdd4458ed1b808946fd7baba657b6a51d3c72b.zip |
IB/srpt: Make a debug statement in srpt_abort_cmd() more informative
Do not only report the state of the I/O context before srpt_abort_cmd()
was called but also the new state assigned by srpt_abort_cmd()
Signed-off-by: Bart Van Assche <bart.vanassche@sandisk.com>
Reviewed-by: Hannes Reinecke <hare@suse.com>
Cc: Doug Ledford <dledford@redhat.com>
Cc: Christoph Hellwig <hch@lst.de>
Cc: Andy Grover <agrover@redhat.com>
Cc: David Disseldorp <ddiss@suse.de>
Signed-off-by: Nicholas Bellinger <nab@linux-iscsi.org>
Diffstat (limited to 'drivers/infiniband/ulp')
-rw-r--r-- | drivers/infiniband/ulp/srpt/ib_srpt.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/infiniband/ulp/srpt/ib_srpt.c b/drivers/infiniband/ulp/srpt/ib_srpt.c index 1ced0731c140..402275be0931 100644 --- a/drivers/infiniband/ulp/srpt/ib_srpt.c +++ b/drivers/infiniband/ulp/srpt/ib_srpt.c @@ -1157,8 +1157,8 @@ static int srpt_abort_cmd(struct srpt_send_ioctx *ioctx) } spin_unlock_irqrestore(&ioctx->spinlock, flags); - pr_debug("Aborting cmd with state %d and tag %lld\n", state, - ioctx->cmd.tag); + pr_debug("Aborting cmd with state %d -> %d and tag %lld\n", state, + ioctx->state, ioctx->cmd.tag); switch (state) { case SRPT_STATE_NEW: |