Commit 4ca495e0 authored by Christoph Hellwig's avatar Christoph Hellwig Committed by Nicholas Bellinger

tfm_fc: use transport_handle_cdb_direct

ft_send_work is always called from workqueue context, which means we can
handle the CDB directly instead of doing another context switch.
Signed-off-by: default avatarChristoph Hellwig <hch@lst.de>
Cc: Kiran Patil <kiran.patil@intel.com>
Signed-off-by: default avatarNicholas Bellinger <nab@linux-iscsi.org>
parent c252f003
...@@ -639,7 +639,7 @@ static void ft_send_work(struct work_struct *work) ...@@ -639,7 +639,7 @@ static void ft_send_work(struct work_struct *work)
transport_generic_free_cmd(se_cmd, 0, 0); transport_generic_free_cmd(se_cmd, 0, 0);
return; return;
} }
transport_generic_handle_cdb(se_cmd); transport_handle_cdb_direct(se_cmd);
return; return;
err: err:
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment