diff options
author | Hannes Reinecke <hare@suse.de> | 2015-06-11 04:01:25 -0400 |
---|---|---|
committer | Nicholas Bellinger <nab@linux-iscsi.org> | 2015-06-16 03:38:29 -0400 |
commit | 316058134ffa0017199b460318e109aa79432cc6 (patch) | |
tree | dd1b36b24993a6ca8701c2ad1742b9d1844f9df8 | |
parent | ee8c07d0c32622b6fa44108b0141434575e43188 (diff) |
target: Remove 'ua_nacl' pointer from se_ua structure
Unused.
Signed-off-by: Hannes Reinecke <hare@suse.de>
Signed-off-by: Nicholas Bellinger <nab@linux-iscsi.org>
-rw-r--r-- | drivers/target/target_core_ua.c | 1 | ||||
-rw-r--r-- | include/target/target_core_base.h | 1 |
2 files changed, 0 insertions, 2 deletions
diff --git a/drivers/target/target_core_ua.c b/drivers/target/target_core_ua.c index e53d4eec2ebc..e5062245171e 100644 --- a/drivers/target/target_core_ua.c +++ b/drivers/target/target_core_ua.c | |||
@@ -107,7 +107,6 @@ int core_scsi3_ua_allocate( | |||
107 | } | 107 | } |
108 | INIT_LIST_HEAD(&ua->ua_nacl_list); | 108 | INIT_LIST_HEAD(&ua->ua_nacl_list); |
109 | 109 | ||
110 | ua->ua_nacl = nacl; | ||
111 | ua->ua_asc = asc; | 110 | ua->ua_asc = asc; |
112 | ua->ua_ascq = ascq; | 111 | ua->ua_ascq = ascq; |
113 | 112 | ||
diff --git a/include/target/target_core_base.h b/include/target/target_core_base.h index 8cb612613c10..8a4f861f12b7 100644 --- a/include/target/target_core_base.h +++ b/include/target/target_core_base.h | |||
@@ -548,7 +548,6 @@ struct se_cmd { | |||
548 | struct se_ua { | 548 | struct se_ua { |
549 | u8 ua_asc; | 549 | u8 ua_asc; |
550 | u8 ua_ascq; | 550 | u8 ua_ascq; |
551 | struct se_node_acl *ua_nacl; | ||
552 | struct list_head ua_nacl_list; | 551 | struct list_head ua_nacl_list; |
553 | }; | 552 | }; |
554 | 553 | ||