diff options
author | Andy Grover <agrover@redhat.com> | 2012-04-03 15:51:01 -0700 |
---|---|---|
committer | Nicholas Bellinger <nab@linux-iscsi.org> | 2012-04-14 17:40:33 -0700 |
commit | 2fbb471e7821e3a12334054cd90aa3f3edb22cc3 (patch) | |
tree | c9937293332a96574b739a9e7cc77a9e13df9ea2 /drivers/target/iscsi/iscsi_target_core.h | |
parent | 957525a2424aad367d6e0efb64e440b2b37fa5cd (diff) | |
download | linux-2fbb471e7821e3a12334054cd90aa3f3edb22cc3.tar.gz linux-2fbb471e7821e3a12334054cd90aa3f3edb22cc3.tar.bz2 linux-2fbb471e7821e3a12334054cd90aa3f3edb22cc3.zip |
target/iscsi: Rename iscsi_cmd.i_list to iscsi_cmd.i_conn_node
The name change makes it clear this list_head is so the cmd can be an
item in the connection's conn_cmd_list.
Signed-off-by: Andy Grover <agrover@redhat.com>
Signed-off-by: Nicholas Bellinger <nab@linux-iscsi.org>
Diffstat (limited to 'drivers/target/iscsi/iscsi_target_core.h')
-rw-r--r-- | drivers/target/iscsi/iscsi_target_core.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/target/iscsi/iscsi_target_core.h b/drivers/target/iscsi/iscsi_target_core.h index 2aaee7efa683..cf784ccbd52f 100644 --- a/drivers/target/iscsi/iscsi_target_core.h +++ b/drivers/target/iscsi/iscsi_target_core.h @@ -464,7 +464,7 @@ struct iscsi_cmd { /* Session the command is part of, used for connection recovery */ struct iscsi_session *sess; /* list_head for connection list */ - struct list_head i_list; + struct list_head i_conn_node; /* The TCM I/O descriptor that is accessed via container_of() */ struct se_cmd se_cmd; /* Sense buffer that will be mapped into outgoing status */ |