diff options
author | Christoph Hellwig <hch@infradead.org> | 2012-07-08 23:58:39 +0400 |
---|---|---|
committer | Nicholas Bellinger <nab@linux-iscsi.org> | 2012-07-17 04:35:16 +0400 |
commit | 70baf0ab3b2608727515086bee4c484a93e22880 (patch) | |
tree | 9cb6a054b5b83c44629e3e1408839b570a228658 /drivers/target/loopback | |
parent | f7113a47e2c3880ed5f8a05ff9c54ead4ee7351c (diff) | |
download | linux-70baf0ab3b2608727515086bee4c484a93e22880.tar.xz |
target: remove transport_generic_process_write
Just call target_execute_cmd directly. Also, convert loopback, sbp,
usb-gadget to use the newly exported target_execute_cmd().
Signed-off-by: Christoph Hellwig <hch@lst.de>
Signed-off-by: Nicholas Bellinger <nab@linux-iscsi.org>
Diffstat (limited to 'drivers/target/loopback')
-rw-r--r-- | drivers/target/loopback/tcm_loop.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/target/loopback/tcm_loop.c b/drivers/target/loopback/tcm_loop.c index f65dc9db8596..5491c632a15e 100644 --- a/drivers/target/loopback/tcm_loop.c +++ b/drivers/target/loopback/tcm_loop.c @@ -778,7 +778,7 @@ static int tcm_loop_write_pending(struct se_cmd *se_cmd) * We now tell TCM to add this WRITE CDB directly into the TCM storage * object execution queue. */ - transport_generic_process_write(se_cmd); + target_execute_cmd(se_cmd); return 0; } |