[PATCH 3/3] tcm: Add XDWRITEREAD_10 passthrough support

From: Nicholas A. Bellinger
Date: Wed Sep 22 2010 - 02:09:10 EST


From: Nicholas Bellinger <nab@xxxxxxxxxxxxxxx>

This patch adds the simple check for TCM/pSCSI usage with XDWRITE_READ10
to follow commit ba3d8e3f13 and perform the BIDI-COMMAND passthrough.

Signed-off-by: Nicholas A. Bellinger <nab@xxxxxxxxxxxxxxx>
---
drivers/target/target_core_transport.c | 7 +++++++
1 files changed, 7 insertions(+), 0 deletions(-)

diff --git a/drivers/target/target_core_transport.c b/drivers/target/target_core_transport.c
index e514ffc..6976f93 100644
--- a/drivers/target/target_core_transport.c
+++ b/drivers/target/target_core_transport.c
@@ -5566,6 +5566,13 @@ static int transport_generic_cmd_sequencer(
transport_get_maps(cmd);
cmd->transport_split_cdb = &split_cdb_XX_10;
cmd->transport_get_lba = &transport_lba_32;
+ passthrough = (TRANSPORT(dev)->transport_type ==
+ TRANSPORT_PLUGIN_PHBA_PDEV);
+ /*
+ * Skip the remaining assignments for TCM/PSCSI passthrough
+ */
+ if (passthrough)
+ break;
/*
* Setup BIDI XOR callback to be run during transport_generic_complete_ok()
*/
--
1.5.6.5

--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/