diff options
author | Christoph Hellwig <hch@infradead.org> | 2012-10-07 10:55:50 -0400 |
---|---|---|
committer | Nicholas Bellinger <nab@linux-iscsi.org> | 2012-11-06 20:55:44 -0800 |
commit | 9e999a6c51fe74a41a76038c64ce038ff9243bfb (patch) | |
tree | eb0f9cde2fe80fb491a9376bd92983ad7f921f43 /include/target | |
parent | 0fd97ccf45be26fb01b3a412f1f6c6b5044b2f16 (diff) | |
download | linux-3.10-9e999a6c51fe74a41a76038c64ce038ff9243bfb.tar.gz linux-3.10-9e999a6c51fe74a41a76038c64ce038ff9243bfb.tar.bz2 linux-3.10-9e999a6c51fe74a41a76038c64ce038ff9243bfb.zip |
target: rename spc_ops
These really are sbc_ops, so name them correctly.
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 | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/target/target_core_backend.h b/include/target/target_core_backend.h index 6c5bfb5ac17..1c43955f4cb 100644 --- a/include/target/target_core_backend.h +++ b/include/target/target_core_backend.h @@ -38,7 +38,7 @@ struct se_subsystem_api { unsigned char *(*get_sense_buffer)(struct se_cmd *); }; -struct spc_ops { +struct sbc_ops { int (*execute_rw)(struct se_cmd *cmd); int (*execute_sync_cache)(struct se_cmd *cmd); int (*execute_write_same)(struct se_cmd *cmd); @@ -50,7 +50,7 @@ void transport_subsystem_release(struct se_subsystem_api *); void target_complete_cmd(struct se_cmd *, u8); -int sbc_parse_cdb(struct se_cmd *cmd, struct spc_ops *ops); +int sbc_parse_cdb(struct se_cmd *cmd, struct sbc_ops *ops); int spc_parse_cdb(struct se_cmd *cmd, unsigned int *size); int spc_get_write_same_sectors(struct se_cmd *cmd); |