diff options
author | Christoph Hellwig <hch@infradead.org> | 2012-05-20 11:59:14 -0400 |
---|---|---|
committer | Nicholas Bellinger <nab@linux-iscsi.org> | 2012-07-16 20:25:56 -0400 |
commit | d6e0175cf3f9737a760482d185bb73566bcc9331 (patch) | |
tree | 99ca8361ebc8c4e83f8335193963faa3f30007b5 /include/target | |
parent | 88455ec4be02c395820b1ff57656b0844ec03ac3 (diff) |
target: add a parse_cdb method to the backend drivers
Instead of trying to handle all SCSI command sets in one function
(transport_generic_cmd_sequencer) call out to the backend driver to perform
this functionality. For pSCSI a copy of the existing code is used, but for
all virtual backends we can use a new parse_sbc_cdb helper is used to
provide a simple SBC emulation.
For now this setups means a fair amount of duplication between pSCSI and the
SBC library, but patches later in this series will sort out that problem.
(nab: Fix up build failure in target_core_pscsi.c)
Signed-off-by: Christoph Hellwig <hch@lst.de>
Signed-off-by: Nicholas Bellinger <nab@linux-iscsi.org>
Diffstat (limited to 'include/target')
-rw-r--r-- | include/target/target_core_backend.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/include/target/target_core_backend.h b/include/target/target_core_backend.h index 2d7db85e93ae..f4f1eef6bf55 100644 --- a/include/target/target_core_backend.h +++ b/include/target/target_core_backend.h | |||
@@ -24,6 +24,8 @@ struct se_subsystem_api { | |||
24 | struct se_subsystem_dev *, void *); | 24 | struct se_subsystem_dev *, void *); |
25 | void (*free_device)(void *); | 25 | void (*free_device)(void *); |
26 | int (*transport_complete)(struct se_cmd *cmd, struct scatterlist *); | 26 | int (*transport_complete)(struct se_cmd *cmd, struct scatterlist *); |
27 | |||
28 | int (*parse_cdb)(struct se_cmd *cmd, unsigned int *size); | ||
27 | int (*execute_cmd)(struct se_cmd *, struct scatterlist *, u32, | 29 | int (*execute_cmd)(struct se_cmd *, struct scatterlist *, u32, |
28 | enum dma_data_direction); | 30 | enum dma_data_direction); |
29 | int (*do_discard)(struct se_device *, sector_t, u32); | 31 | int (*do_discard)(struct se_device *, sector_t, u32); |
@@ -49,6 +51,9 @@ struct se_device *transport_add_device_to_core_hba(struct se_hba *, | |||
49 | 51 | ||
50 | void target_complete_cmd(struct se_cmd *, u8); | 52 | void target_complete_cmd(struct se_cmd *, u8); |
51 | 53 | ||
54 | int sbc_parse_cdb(struct se_cmd *cmd, unsigned int *size); | ||
55 | int spc_parse_cdb(struct se_cmd *cmd, unsigned int *size, bool passthrough); | ||
56 | |||
52 | void transport_set_vpd_proto_id(struct t10_vpd *, unsigned char *); | 57 | void transport_set_vpd_proto_id(struct t10_vpd *, unsigned char *); |
53 | int transport_set_vpd_assoc(struct t10_vpd *, unsigned char *); | 58 | int transport_set_vpd_assoc(struct t10_vpd *, unsigned char *); |
54 | int transport_set_vpd_ident_type(struct t10_vpd *, unsigned char *); | 59 | int transport_set_vpd_ident_type(struct t10_vpd *, unsigned char *); |