diff options
author | Andy Grover <agrover@redhat.com> | 2011-07-19 04:55:10 -0400 |
---|---|---|
committer | Nicholas Bellinger <nab@linux-iscsi.org> | 2011-07-22 05:37:43 -0400 |
commit | e3d6f909ed803d92a5ac9b4a2c087e0eae9b90d0 (patch) | |
tree | 2eb65e958a2cc35c896a0e184ec09edcb9076b3b /drivers/target/loopback | |
parent | a8c6da90b823fb94ca76ca0df6bb44e6e205dc87 (diff) |
target: Core cleanups from AGrover (round 1)
This patch contains the squashed version of a number of cleanups and
minor fixes from Andy's initial series (round 1) for target core this
past spring. The condensed log looks like:
target: use errno values instead of returning -1 for everything
target: Rename transport_calc_sg_num to transport_init_task_sg
target: Fix leak in error path in transport_init_task_sg
target/pscsi: Remove pscsi_get_sh() usage
target: Make two runtime checks into WARN_ONs
target: Remove hba queue depth and convert to spin_lock_irq usage
target: dev->dev_status_queue_obj is unused
target: Make struct se_queue_req.cmd type struct se_cmd *
target: Remove __transport_get_qr_from_queue()
target: Rename se_dev->g_se_dev_list to se_dev_node
target: Remove struct se_global
target: Simplify scsi mib index table code
target: Make dev_queue_obj a member of se_device instead of a pointer
target: remove extraneous returns at end of void functions
target: Ensure transport_dump_vpd_ident_type returns null-terminated str
target: Function pointers don't need to use '&' to be assigned
target: Fix comment in __transport_execute_tasks()
target: Misc style cleanups
target: rename struct pr_reservation_template to pr_reservation
target: Remove #defines that just perform indirection
target: Inline transport_get_task_from_execute_queue()
target: Minor header comment fixes
Signed-off-by: Andy Grover <agrover@redhat.com>
Signed-off-by: Nicholas Bellinger <nab@linux-iscsi.org>
Diffstat (limited to 'drivers/target/loopback')
-rw-r--r-- | drivers/target/loopback/tcm_loop.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/drivers/target/loopback/tcm_loop.c b/drivers/target/loopback/tcm_loop.c index 2d0f22a91f67..2f19e1926493 100644 --- a/drivers/target/loopback/tcm_loop.c +++ b/drivers/target/loopback/tcm_loop.c | |||
@@ -118,7 +118,7 @@ static struct se_cmd *tcm_loop_allocate_core_cmd( | |||
118 | * Signal BIDI usage with T_TASK(cmd)->t_tasks_bidi | 118 | * Signal BIDI usage with T_TASK(cmd)->t_tasks_bidi |
119 | */ | 119 | */ |
120 | if (scsi_bidi_cmnd(sc)) | 120 | if (scsi_bidi_cmnd(sc)) |
121 | T_TASK(se_cmd)->t_tasks_bidi = 1; | 121 | se_cmd->t_task->t_tasks_bidi = 1; |
122 | /* | 122 | /* |
123 | * Locate the struct se_lun pointer and attach it to struct se_cmd | 123 | * Locate the struct se_lun pointer and attach it to struct se_cmd |
124 | */ | 124 | */ |
@@ -176,7 +176,7 @@ static int tcm_loop_new_cmd_map(struct se_cmd *se_cmd) | |||
176 | * For BIDI commands, pass in the extra READ buffer | 176 | * For BIDI commands, pass in the extra READ buffer |
177 | * to transport_generic_map_mem_to_cmd() below.. | 177 | * to transport_generic_map_mem_to_cmd() below.. |
178 | */ | 178 | */ |
179 | if (T_TASK(se_cmd)->t_tasks_bidi) { | 179 | if (se_cmd->t_task->t_tasks_bidi) { |
180 | struct scsi_data_buffer *sdb = scsi_in(sc); | 180 | struct scsi_data_buffer *sdb = scsi_in(sc); |
181 | 181 | ||
182 | mem_bidi_ptr = (void *)sdb->table.sgl; | 182 | mem_bidi_ptr = (void *)sdb->table.sgl; |
@@ -1402,9 +1402,9 @@ static int tcm_loop_register_configfs(void) | |||
1402 | * Register the top level struct config_item_type with TCM core | 1402 | * Register the top level struct config_item_type with TCM core |
1403 | */ | 1403 | */ |
1404 | fabric = target_fabric_configfs_init(THIS_MODULE, "loopback"); | 1404 | fabric = target_fabric_configfs_init(THIS_MODULE, "loopback"); |
1405 | if (!fabric) { | 1405 | if (IS_ERR(fabric)) { |
1406 | printk(KERN_ERR "tcm_loop_register_configfs() failed!\n"); | 1406 | printk(KERN_ERR "tcm_loop_register_configfs() failed!\n"); |
1407 | return -1; | 1407 | return PTR_ERR(fabric); |
1408 | } | 1408 | } |
1409 | /* | 1409 | /* |
1410 | * Setup the fabric API of function pointers used by target_core_mod | 1410 | * Setup the fabric API of function pointers used by target_core_mod |