diff options
author | Hannes Reinecke <hare@suse.de> | 2016-08-22 04:54:08 -0400 |
---|---|---|
committer | Nicholas Bellinger <nab@linux-iscsi.org> | 2016-10-21 04:19:42 -0400 |
commit | b04bf5833e8a0d6ae4e3f7b35b30c4ab6ff7ea1b (patch) | |
tree | 7ca7337e670df9c48fe55a10525c39e957fdd04b /drivers/target | |
parent | 1b4c59b7a1d0b9d8019254a5f2e35b2663f49a9e (diff) |
target/tcm_fc: print command pointer in debug message
When allocating a new command we should add the pointer to the
debug statements; that allows us to match this with other debug
statements for handling data.
Signed-off-by: Hannes Reinecke <hare@suse.com>
Signed-off-by: Nicholas Bellinger <nab@linux-iscsi.org>
Diffstat (limited to 'drivers/target')
-rw-r--r-- | drivers/target/tcm_fc/tfc_cmd.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/target/tcm_fc/tfc_cmd.c b/drivers/target/tcm_fc/tfc_cmd.c index 216e18cc9133..36f08644250c 100644 --- a/drivers/target/tcm_fc/tfc_cmd.c +++ b/drivers/target/tcm_fc/tfc_cmd.c | |||
@@ -575,7 +575,7 @@ static void ft_send_work(struct work_struct *work) | |||
575 | TARGET_SCF_ACK_KREF)) | 575 | TARGET_SCF_ACK_KREF)) |
576 | goto err; | 576 | goto err; |
577 | 577 | ||
578 | pr_debug("r_ctl %x alloc target_submit_cmd\n", fh->fh_r_ctl); | 578 | pr_debug("r_ctl %x target_submit_cmd %p\n", fh->fh_r_ctl, cmd); |
579 | return; | 579 | return; |
580 | 580 | ||
581 | err: | 581 | err: |