diff options
author | Christoph Hellwig <hch@infradead.org> | 2012-04-24 00:25:09 -0400 |
---|---|---|
committer | Nicholas Bellinger <nab@linux-iscsi.org> | 2012-05-06 15:11:28 -0700 |
commit | d5dc28eb92f2a2305a02cb3a5f1ed36542d47512 (patch) | |
tree | 97f2721b2eaa270a329d4dd556cd254a94bdb41b /drivers/target | |
parent | d43d6aea844e66b847e3a0e5cb2c24b6ba84908a (diff) | |
download | talos-op-linux-d5dc28eb92f2a2305a02cb3a5f1ed36542d47512.tar.gz talos-op-linux-d5dc28eb92f2a2305a02cb3a5f1ed36542d47512.zip |
target: remove the t_se_count field in struct se_cmd
Now that tasks are gone we are guaranteed to only get a single completion
per command, and thus don't need this counter.
Signed-off-by: Christoph Hellwig <hch@lst.de>
Signed-off-by: Nicholas Bellinger <nab@linux-iscsi.org>
Diffstat (limited to 'drivers/target')
-rw-r--r-- | drivers/target/target_core_transport.c | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/drivers/target/target_core_transport.c b/drivers/target/target_core_transport.c index d110ead38721..5c06b87a3114 100644 --- a/drivers/target/target_core_transport.c +++ b/drivers/target/target_core_transport.c @@ -3284,11 +3284,6 @@ static void transport_put_cmd(struct se_cmd *cmd) goto out_busy; } - if (atomic_read(&cmd->t_se_count)) { - if (!atomic_dec_and_test(&cmd->t_se_count)) - goto out_busy; - } - if (cmd->transport_state & CMD_T_DEV_ACTIVE) { cmd->transport_state &= ~CMD_T_DEV_ACTIVE; target_remove_from_state_list(cmd); @@ -3498,7 +3493,6 @@ int transport_generic_new_cmd(struct se_cmd *cmd) } atomic_inc(&cmd->t_fe_count); - atomic_inc(&cmd->t_se_count); /* * For WRITEs, let the fabric know its buffer is ready. |