public inbox for linux-scsi@vger.kernel.org
 help / color / mirror / Atom feed
From: Christoph Hellwig <hch@infradead.org>
To: nab@linux-iscsi.org
Cc: linux-scsi@vger.kernel.org
Subject: [PATCH 4/9] target: remove transport_generic_map_buffers_to_tasks
Date: Mon, 08 Nov 2010 10:56:05 -0500	[thread overview]
Message-ID: <20101108155647.704648200@canuck.infradead.org> (raw)
In-Reply-To: 20101108155601.872926000@canuck.infradead.org

[-- Attachment #1: lio-cleanup-transport_generic_map_buffers_to_tasks --]
[-- Type: text/plain, Size: 3395 bytes --]

transport_generic_map_buffers_to_tasks has three difference cases that all
perform the same loop.  Remove the function and inline that small loop into
the only caller.

Signed-off-by: Christoph Hellwig <hch@lst.de>

Index: lio-core-2.6/drivers/target/target_core_transport.c
===================================================================
--- lio-core-2.6.orig/drivers/target/target_core_transport.c	2010-11-06 20:44:44.378004019 +0100
+++ lio-core-2.6/drivers/target/target_core_transport.c	2010-11-06 20:50:48.133255099 +0100
@@ -7092,75 +7092,6 @@ int transport_generic_map_mem_to_cmd(
 EXPORT_SYMBOL(transport_generic_map_mem_to_cmd);
 	
 
-/*	transport_generic_map_buffers_to_tasks():
- *
- *	Called from transport_generic_new_cmd() in Transport Processing Thread.
- */
-static int transport_generic_map_buffers_to_tasks(struct se_cmd *cmd)
-{
-	struct se_task *task = NULL;
-	int ret;
-
-	/*
-	 * Deal with non [READ,WRITE]_XX CDBs here.
-	 */
-	if (cmd->se_cmd_flags & SCF_SCSI_NON_DATA_CDB)
-		goto non_scsi_data;
-	else if (cmd->se_cmd_flags & SCF_SCSI_CONTROL_NONSG_IO_CDB) {
-		list_for_each_entry(task, &T_TASK(cmd)->t_task_list, t_list) {
-			if (atomic_read(&task->task_sent))
-				continue;
-
-			ret = task->transport_map_task(task, task->task_size);
-			if (ret < 0)
-				return ret;
-
-			DEBUG_CMD_M("Mapping SCF_SCSI_CONTROL_NONSG_IO_CDB"
-				" task_size: %u\n", task->task_size);
-		}
-		return 0;
-	}
-
-	/*
-	 * Determine the scatterlist offset for each struct se_task,
-	 * and segment and set pointers to storage transport buffers
-	 * via task->transport_map_task().
-	 */
-	list_for_each_entry(task, &T_TASK(cmd)->t_task_list, t_list) {
-		if (atomic_read(&task->task_sent))
-			continue;
-
-		ret = task->transport_map_task(task, task->task_size);
-		if (ret < 0)
-			return ret;
-
-		DEBUG_CMD_M("Mapping task[%d]_se_obj_ptr[%p] %s_IO task_lba:"
-			" %llu task_size: %u task_sg_num: %d\n",
-			task->task_no, task->se_obj_ptr,
-			(cmd->se_cmd_flags & SCF_SCSI_CONTROL_SG_IO_CDB) ?
-			"CONTROL" : "DATA", task->task_lba, task->task_size,
-			task->task_sg_num);
-	}
-
-	return 0;
-
-non_scsi_data:
-	list_for_each_entry(task, &T_TASK(cmd)->t_task_list, t_list) {
-		if (atomic_read(&task->task_sent))
-			continue;
-
-		ret = task->transport_map_task(task, task->task_size);
-		if (ret < 0)
-			return ret;
-
-		DEBUG_CMD_M("Mapping SCF_SCSI_NON_DATA_CDB task_size: %u"
-			" task->task_sg_num: %d\n", task->task_size,
-				task->task_sg_num);
-	}
-
-	return 0;
-}
-
 static inline long long transport_dev_end_lba(struct se_device *dev)
 {
 	return dev->dev_sectors_total + 1;
@@ -7993,6 +7924,7 @@ int transport_generic_new_cmd(struct se_
 {
 	struct se_portal_group *se_tpg;
 	struct se_transform_info ti;
+	struct se_task *task;
 	int ret = 0;
 	/*
 	 * Generate struct se_task(s) and/or their payloads for this CDB.
@@ -8055,9 +7987,14 @@ int transport_generic_new_cmd(struct se_
 	 * buffer list in struct se_cmd to the transport task's native
 	 * buffers format.
 	 */
-	ret = transport_generic_map_buffers_to_tasks(cmd);
-	if (ret < 0)
-		goto failure;
+	list_for_each_entry(task, &T_TASK(cmd)->t_task_list, t_list) {
+		if (atomic_read(&task->task_sent))
+			continue;
+
+		ret = task->transport_map_task(task, task->task_size);
+		if (ret < 0)
+			goto failure;
+	}
 
 	/*
 	 * For WRITEs, let the iSCSI Target RX Thread know its buffer is ready..


  parent reply	other threads:[~2010-11-08 15:56 UTC|newest]

Thread overview: 23+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2010-11-08 15:56 [PATCH 0/9] target core review feedback Christoph Hellwig
2010-11-08 15:56 ` [PATCH 1/9] target: remove never changing indirections in se_cmd Christoph Hellwig
2010-11-08 21:57   ` Nicholas A. Bellinger
2010-11-08 15:56 ` [PATCH 2/9] target: remove activate_device/deactivate_device methods Christoph Hellwig
2010-11-08 22:00   ` Nicholas A. Bellinger
2010-11-08 15:56 ` [PATCH 3/9] From: Christoph Hellwig <hch@lst.de> Sujbect: target: remove SHUTDOWN_SIGS Christoph Hellwig
2010-11-08 22:21   ` [PATCH 3/9] " Nicholas A. Bellinger
2010-11-08 22:31     ` Christoph Hellwig
2010-11-08 15:56 ` Christoph Hellwig [this message]
2010-11-08 22:29   ` [PATCH 4/9] target: remove transport_generic_map_buffers_to_tasks Nicholas A. Bellinger
2010-11-08 15:56 ` [PATCH 5/9] target: clean up transport_subsystem_register Christoph Hellwig
2010-11-08 22:32   ` Nicholas A. Bellinger
2010-11-08 15:56 ` [PATCH 6/9] target: remove dead blockdevice claim/release code Christoph Hellwig
2010-11-08 22:35   ` Nicholas A. Bellinger
2010-11-08 15:56 ` [PATCH 7/9] target: remove transport_generic_free_device Christoph Hellwig
2010-11-08 22:40   ` Nicholas A. Bellinger
2010-11-08 15:56 ` [PATCH 8/9] target: remove unused split_cdb_RW_* handlers Christoph Hellwig
2010-11-08 22:41   ` Nicholas A. Bellinger
2010-11-08 15:56 ` [PATCH 9/9] target: remove dead call to transport_emulate_control_cdb in rd driver Christoph Hellwig
2010-11-08 22:44   ` Nicholas A. Bellinger
2010-11-08 17:19 ` [PATCH 10/9] target: split CDB emulation out of target_core_transport.c Christoph Hellwig
2010-11-08 22:48   ` Nicholas A. Bellinger
2010-11-08 22:57     ` Christoph Hellwig

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20101108155647.704648200@canuck.infradead.org \
    --to=hch@infradead.org \
    --cc=linux-scsi@vger.kernel.org \
    --cc=nab@linux-iscsi.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox