diff options
author | Christoph Hellwig <hch@infradead.org> | 2012-04-24 00:25:07 -0400 |
---|---|---|
committer | Nicholas Bellinger <nab@linux-iscsi.org> | 2012-05-06 15:11:27 -0700 |
commit | 226b6faf2e30e272ee5a52c2ed0a8c8a1d7b47d1 (patch) | |
tree | f39c5904c6da5f04a6f5860c646005e21fba4282 /drivers/target/target_core_tmr.c | |
parent | 5787cacd0bd5ee016ad807b244550d34fe2beebe (diff) | |
download | linux-stable-226b6faf2e30e272ee5a52c2ed0a8c8a1d7b47d1.tar.gz linux-stable-226b6faf2e30e272ee5a52c2ed0a8c8a1d7b47d1.tar.bz2 linux-stable-226b6faf2e30e272ee5a52c2ed0a8c8a1d7b47d1.zip |
target: remove the t_task_cdbs_left field in struct se_cmd
Now that tasks are gone we are guaranteed to only get a single completion
per command, and thus don't need this counter.
Signed-off-by: Christoph Hellwig <hch@lst.de>
Signed-off-by: Nicholas Bellinger <nab@linux-iscsi.org>
Diffstat (limited to 'drivers/target/target_core_tmr.c')
-rw-r--r-- | drivers/target/target_core_tmr.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/drivers/target/target_core_tmr.c b/drivers/target/target_core_tmr.c index 6e2378a88bda..bd0b4e62e9c6 100644 --- a/drivers/target/target_core_tmr.c +++ b/drivers/target/target_core_tmr.c @@ -313,11 +313,9 @@ static void core_tmr_drain_state_list( cmd->se_tfo->get_cmd_state(cmd), cmd->t_state, cmd->t_task_cdb[0]); pr_debug("LUN_RESET: ITT[0x%08x] - pr_res_key: 0x%016Lx" - " t_task_cdbs_left: %d" " -- CMD_T_ACTIVE: %d" " CMD_T_STOP: %d CMD_T_SENT: %d\n", cmd->se_tfo->get_task_tag(cmd), cmd->pr_res_key, - atomic_read(&cmd->t_task_cdbs_left), (cmd->transport_state & CMD_T_ACTIVE) != 0, (cmd->transport_state & CMD_T_STOP) != 0, (cmd->transport_state & CMD_T_SENT) != 0); |