diff options
author | Christoph Hellwig <hch@lst.de> | 2011-09-12 15:50:56 -0400 |
---|---|---|
committer | Nicholas Bellinger <nab@linux-iscsi.org> | 2011-10-23 23:20:26 -0400 |
commit | acf3ecc4a1c7460662757c07ee1ec625760d3ae6 (patch) | |
tree | 02f67afb285d5b42e12b723d2d3fc6bb190598fa | |
parent | 4ca495e0630b6fd960f94f89a9f13ad32b91bc96 (diff) |
iscsi-target: always call transport_handle_cdb_direct
iscsit_task_reassign_complete is always called from the TX thread, so
handle the CDB directly instead of offloading it.
Signed-off-by: Christoph Hellwig <hch@lst.de>
Signed-off-by: Nicholas Bellinger <nab@linux-iscsi.org>
-rw-r--r-- | drivers/target/iscsi/iscsi_target_tmr.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/target/iscsi/iscsi_target_tmr.c b/drivers/target/iscsi/iscsi_target_tmr.c index db1fe1ec84df..c3617d8ff3ea 100644 --- a/drivers/target/iscsi/iscsi_target_tmr.c +++ b/drivers/target/iscsi/iscsi_target_tmr.c | |||
@@ -318,7 +318,7 @@ static int iscsit_task_reassign_complete_read( | |||
318 | pr_debug("READ ITT: 0x%08x: t_state: %d never sent to" | 318 | pr_debug("READ ITT: 0x%08x: t_state: %d never sent to" |
319 | " transport\n", cmd->init_task_tag, | 319 | " transport\n", cmd->init_task_tag, |
320 | cmd->se_cmd.t_state); | 320 | cmd->se_cmd.t_state); |
321 | transport_generic_handle_cdb(se_cmd); | 321 | transport_handle_cdb_direct(se_cmd); |
322 | return 0; | 322 | return 0; |
323 | } | 323 | } |
324 | 324 | ||