Nicholas Bellinger | c66ac9d | 2010-12-17 11:11:26 -0800 | [diff] [blame] | 1 | /******************************************************************************* |
| 2 | * Filename: target_core_ua.c |
| 3 | * |
| 4 | * This file contains logic for SPC-3 Unit Attention emulation |
| 5 | * |
Nicholas Bellinger | 4c76251 | 2013-09-05 15:29:12 -0700 | [diff] [blame] | 6 | * (c) Copyright 2009-2013 Datera, Inc. |
Nicholas Bellinger | c66ac9d | 2010-12-17 11:11:26 -0800 | [diff] [blame] | 7 | * |
| 8 | * Nicholas A. Bellinger <nab@kernel.org> |
| 9 | * |
| 10 | * This program is free software; you can redistribute it and/or modify |
| 11 | * it under the terms of the GNU General Public License as published by |
| 12 | * the Free Software Foundation; either version 2 of the License, or |
| 13 | * (at your option) any later version. |
| 14 | * |
| 15 | * This program is distributed in the hope that it will be useful, |
| 16 | * but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 17 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
| 18 | * GNU General Public License for more details. |
| 19 | * |
| 20 | * You should have received a copy of the GNU General Public License |
| 21 | * along with this program; if not, write to the Free Software |
| 22 | * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. |
| 23 | * |
| 24 | ******************************************************************************/ |
| 25 | |
Nicholas Bellinger | c66ac9d | 2010-12-17 11:11:26 -0800 | [diff] [blame] | 26 | #include <linux/slab.h> |
| 27 | #include <linux/spinlock.h> |
Bart Van Assche | ba92999 | 2015-05-08 10:11:12 +0200 | [diff] [blame] | 28 | #include <scsi/scsi_proto.h> |
Nicholas Bellinger | c66ac9d | 2010-12-17 11:11:26 -0800 | [diff] [blame] | 29 | |
| 30 | #include <target/target_core_base.h> |
Christoph Hellwig | c4795fb | 2011-11-16 09:46:48 -0500 | [diff] [blame] | 31 | #include <target/target_core_fabric.h> |
Nicholas Bellinger | c66ac9d | 2010-12-17 11:11:26 -0800 | [diff] [blame] | 32 | |
Christoph Hellwig | e26d99a | 2011-11-14 12:30:30 -0500 | [diff] [blame] | 33 | #include "target_core_internal.h" |
Nicholas Bellinger | c66ac9d | 2010-12-17 11:11:26 -0800 | [diff] [blame] | 34 | #include "target_core_alua.h" |
Nicholas Bellinger | c66ac9d | 2010-12-17 11:11:26 -0800 | [diff] [blame] | 35 | #include "target_core_pr.h" |
| 36 | #include "target_core_ua.h" |
| 37 | |
Christoph Hellwig | de103c9 | 2012-11-06 12:24:09 -0800 | [diff] [blame] | 38 | sense_reason_t |
| 39 | target_scsi3_ua_check(struct se_cmd *cmd) |
Nicholas Bellinger | c66ac9d | 2010-12-17 11:11:26 -0800 | [diff] [blame] | 40 | { |
| 41 | struct se_dev_entry *deve; |
| 42 | struct se_session *sess = cmd->se_sess; |
| 43 | struct se_node_acl *nacl; |
| 44 | |
Andy Grover | 6708bb2 | 2011-06-08 10:36:43 -0700 | [diff] [blame] | 45 | if (!sess) |
Nicholas Bellinger | c66ac9d | 2010-12-17 11:11:26 -0800 | [diff] [blame] | 46 | return 0; |
| 47 | |
| 48 | nacl = sess->se_node_acl; |
Andy Grover | 6708bb2 | 2011-06-08 10:36:43 -0700 | [diff] [blame] | 49 | if (!nacl) |
Nicholas Bellinger | c66ac9d | 2010-12-17 11:11:26 -0800 | [diff] [blame] | 50 | return 0; |
| 51 | |
Nicholas Bellinger | 29a05de | 2015-03-22 20:42:19 -0700 | [diff] [blame] | 52 | rcu_read_lock(); |
| 53 | deve = target_nacl_find_deve(nacl, cmd->orig_fe_lun); |
| 54 | if (!deve) { |
| 55 | rcu_read_unlock(); |
Nicholas Bellinger | c66ac9d | 2010-12-17 11:11:26 -0800 | [diff] [blame] | 56 | return 0; |
Nicholas Bellinger | 29a05de | 2015-03-22 20:42:19 -0700 | [diff] [blame] | 57 | } |
| 58 | if (!atomic_read(&deve->ua_count)) { |
| 59 | rcu_read_unlock(); |
| 60 | return 0; |
| 61 | } |
| 62 | rcu_read_unlock(); |
Nicholas Bellinger | c66ac9d | 2010-12-17 11:11:26 -0800 | [diff] [blame] | 63 | /* |
| 64 | * From sam4r14, section 5.14 Unit attention condition: |
| 65 | * |
| 66 | * a) if an INQUIRY command enters the enabled command state, the |
| 67 | * device server shall process the INQUIRY command and shall neither |
| 68 | * report nor clear any unit attention condition; |
| 69 | * b) if a REPORT LUNS command enters the enabled command state, the |
| 70 | * device server shall process the REPORT LUNS command and shall not |
| 71 | * report any unit attention condition; |
| 72 | * e) if a REQUEST SENSE command enters the enabled command state while |
| 73 | * a unit attention condition exists for the SCSI initiator port |
| 74 | * associated with the I_T nexus on which the REQUEST SENSE command |
| 75 | * was received, then the device server shall process the command |
| 76 | * and either: |
| 77 | */ |
Christoph Hellwig | de103c9 | 2012-11-06 12:24:09 -0800 | [diff] [blame] | 78 | switch (cmd->t_task_cdb[0]) { |
Nicholas Bellinger | c66ac9d | 2010-12-17 11:11:26 -0800 | [diff] [blame] | 79 | case INQUIRY: |
| 80 | case REPORT_LUNS: |
| 81 | case REQUEST_SENSE: |
| 82 | return 0; |
| 83 | default: |
Christoph Hellwig | de103c9 | 2012-11-06 12:24:09 -0800 | [diff] [blame] | 84 | return TCM_CHECK_CONDITION_UNIT_ATTENTION; |
Nicholas Bellinger | c66ac9d | 2010-12-17 11:11:26 -0800 | [diff] [blame] | 85 | } |
Nicholas Bellinger | c66ac9d | 2010-12-17 11:11:26 -0800 | [diff] [blame] | 86 | } |
| 87 | |
| 88 | int core_scsi3_ua_allocate( |
Hannes Reinecke | c51c8e7 | 2015-06-11 10:01:26 +0200 | [diff] [blame] | 89 | struct se_dev_entry *deve, |
Nicholas Bellinger | c66ac9d | 2010-12-17 11:11:26 -0800 | [diff] [blame] | 90 | u8 asc, |
| 91 | u8 ascq) |
| 92 | { |
Nicholas Bellinger | c66ac9d | 2010-12-17 11:11:26 -0800 | [diff] [blame] | 93 | struct se_ua *ua, *ua_p, *ua_tmp; |
Nicholas Bellinger | c66ac9d | 2010-12-17 11:11:26 -0800 | [diff] [blame] | 94 | |
| 95 | ua = kmem_cache_zalloc(se_ua_cache, GFP_ATOMIC); |
Andy Grover | 6708bb2 | 2011-06-08 10:36:43 -0700 | [diff] [blame] | 96 | if (!ua) { |
| 97 | pr_err("Unable to allocate struct se_ua\n"); |
Andy Grover | e3d6f90 | 2011-07-19 08:55:10 +0000 | [diff] [blame] | 98 | return -ENOMEM; |
Nicholas Bellinger | c66ac9d | 2010-12-17 11:11:26 -0800 | [diff] [blame] | 99 | } |
Nicholas Bellinger | c66ac9d | 2010-12-17 11:11:26 -0800 | [diff] [blame] | 100 | INIT_LIST_HEAD(&ua->ua_nacl_list); |
| 101 | |
Nicholas Bellinger | c66ac9d | 2010-12-17 11:11:26 -0800 | [diff] [blame] | 102 | ua->ua_asc = asc; |
| 103 | ua->ua_ascq = ascq; |
| 104 | |
Nicholas Bellinger | c66ac9d | 2010-12-17 11:11:26 -0800 | [diff] [blame] | 105 | spin_lock(&deve->ua_lock); |
| 106 | list_for_each_entry_safe(ua_p, ua_tmp, &deve->ua_list, ua_nacl_list) { |
| 107 | /* |
| 108 | * Do not report the same UNIT ATTENTION twice.. |
| 109 | */ |
| 110 | if ((ua_p->ua_asc == asc) && (ua_p->ua_ascq == ascq)) { |
| 111 | spin_unlock(&deve->ua_lock); |
Nicholas Bellinger | c66ac9d | 2010-12-17 11:11:26 -0800 | [diff] [blame] | 112 | kmem_cache_free(se_ua_cache, ua); |
| 113 | return 0; |
| 114 | } |
| 115 | /* |
| 116 | * Attach the highest priority Unit Attention to |
| 117 | * the head of the list following sam4r14, |
| 118 | * Section 5.14 Unit Attention Condition: |
| 119 | * |
| 120 | * POWER ON, RESET, OR BUS DEVICE RESET OCCURRED highest |
| 121 | * POWER ON OCCURRED or |
| 122 | * DEVICE INTERNAL RESET |
| 123 | * SCSI BUS RESET OCCURRED or |
| 124 | * MICROCODE HAS BEEN CHANGED or |
| 125 | * protocol specific |
| 126 | * BUS DEVICE RESET FUNCTION OCCURRED |
| 127 | * I_T NEXUS LOSS OCCURRED |
| 128 | * COMMANDS CLEARED BY POWER LOSS NOTIFICATION |
| 129 | * all others Lowest |
| 130 | * |
| 131 | * Each of the ASCQ codes listed above are defined in |
| 132 | * the 29h ASC family, see spc4r17 Table D.1 |
| 133 | */ |
| 134 | if (ua_p->ua_asc == 0x29) { |
| 135 | if ((asc == 0x29) && (ascq > ua_p->ua_ascq)) |
| 136 | list_add(&ua->ua_nacl_list, |
| 137 | &deve->ua_list); |
| 138 | else |
| 139 | list_add_tail(&ua->ua_nacl_list, |
| 140 | &deve->ua_list); |
| 141 | } else if (ua_p->ua_asc == 0x2a) { |
| 142 | /* |
| 143 | * Incoming Family 29h ASCQ codes will override |
| 144 | * Family 2AHh ASCQ codes for Unit Attention condition. |
| 145 | */ |
| 146 | if ((asc == 0x29) || (ascq > ua_p->ua_asc)) |
| 147 | list_add(&ua->ua_nacl_list, |
| 148 | &deve->ua_list); |
| 149 | else |
| 150 | list_add_tail(&ua->ua_nacl_list, |
| 151 | &deve->ua_list); |
| 152 | } else |
| 153 | list_add_tail(&ua->ua_nacl_list, |
| 154 | &deve->ua_list); |
| 155 | spin_unlock(&deve->ua_lock); |
Nicholas Bellinger | c66ac9d | 2010-12-17 11:11:26 -0800 | [diff] [blame] | 156 | |
Joern Engel | 33940d0 | 2014-09-16 16:23:12 -0400 | [diff] [blame] | 157 | atomic_inc_mb(&deve->ua_count); |
Nicholas Bellinger | c66ac9d | 2010-12-17 11:11:26 -0800 | [diff] [blame] | 158 | return 0; |
| 159 | } |
| 160 | list_add_tail(&ua->ua_nacl_list, &deve->ua_list); |
| 161 | spin_unlock(&deve->ua_lock); |
Nicholas Bellinger | c66ac9d | 2010-12-17 11:11:26 -0800 | [diff] [blame] | 162 | |
Hannes Reinecke | c51c8e7 | 2015-06-11 10:01:26 +0200 | [diff] [blame] | 163 | pr_debug("Allocated UNIT ATTENTION, mapped LUN: %llu, ASC:" |
| 164 | " 0x%02x, ASCQ: 0x%02x\n", deve->mapped_lun, |
Nicholas Bellinger | c66ac9d | 2010-12-17 11:11:26 -0800 | [diff] [blame] | 165 | asc, ascq); |
| 166 | |
Joern Engel | 33940d0 | 2014-09-16 16:23:12 -0400 | [diff] [blame] | 167 | atomic_inc_mb(&deve->ua_count); |
Nicholas Bellinger | c66ac9d | 2010-12-17 11:11:26 -0800 | [diff] [blame] | 168 | return 0; |
| 169 | } |
| 170 | |
Hannes Reinecke | c51c8e7 | 2015-06-11 10:01:26 +0200 | [diff] [blame] | 171 | void target_ua_allocate_lun(struct se_node_acl *nacl, |
| 172 | u32 unpacked_lun, u8 asc, u8 ascq) |
| 173 | { |
| 174 | struct se_dev_entry *deve; |
| 175 | |
| 176 | if (!nacl) |
| 177 | return; |
| 178 | |
| 179 | rcu_read_lock(); |
| 180 | deve = target_nacl_find_deve(nacl, unpacked_lun); |
| 181 | if (!deve) { |
| 182 | rcu_read_unlock(); |
| 183 | return; |
| 184 | } |
| 185 | |
| 186 | core_scsi3_ua_allocate(deve, asc, ascq); |
| 187 | rcu_read_unlock(); |
| 188 | } |
| 189 | |
Nicholas Bellinger | c66ac9d | 2010-12-17 11:11:26 -0800 | [diff] [blame] | 190 | void core_scsi3_ua_release_all( |
| 191 | struct se_dev_entry *deve) |
| 192 | { |
| 193 | struct se_ua *ua, *ua_p; |
| 194 | |
| 195 | spin_lock(&deve->ua_lock); |
| 196 | list_for_each_entry_safe(ua, ua_p, &deve->ua_list, ua_nacl_list) { |
| 197 | list_del(&ua->ua_nacl_list); |
| 198 | kmem_cache_free(se_ua_cache, ua); |
| 199 | |
Joern Engel | 33940d0 | 2014-09-16 16:23:12 -0400 | [diff] [blame] | 200 | atomic_dec_mb(&deve->ua_count); |
Nicholas Bellinger | c66ac9d | 2010-12-17 11:11:26 -0800 | [diff] [blame] | 201 | } |
| 202 | spin_unlock(&deve->ua_lock); |
| 203 | } |
| 204 | |
| 205 | void core_scsi3_ua_for_check_condition( |
| 206 | struct se_cmd *cmd, |
| 207 | u8 *asc, |
| 208 | u8 *ascq) |
| 209 | { |
Andy Grover | 5951146d | 2011-07-19 10:26:37 +0000 | [diff] [blame] | 210 | struct se_device *dev = cmd->se_dev; |
Nicholas Bellinger | c66ac9d | 2010-12-17 11:11:26 -0800 | [diff] [blame] | 211 | struct se_dev_entry *deve; |
| 212 | struct se_session *sess = cmd->se_sess; |
| 213 | struct se_node_acl *nacl; |
| 214 | struct se_ua *ua = NULL, *ua_p; |
| 215 | int head = 1; |
| 216 | |
Andy Grover | 6708bb2 | 2011-06-08 10:36:43 -0700 | [diff] [blame] | 217 | if (!sess) |
Nicholas Bellinger | c66ac9d | 2010-12-17 11:11:26 -0800 | [diff] [blame] | 218 | return; |
| 219 | |
| 220 | nacl = sess->se_node_acl; |
Andy Grover | 6708bb2 | 2011-06-08 10:36:43 -0700 | [diff] [blame] | 221 | if (!nacl) |
Nicholas Bellinger | c66ac9d | 2010-12-17 11:11:26 -0800 | [diff] [blame] | 222 | return; |
| 223 | |
Nicholas Bellinger | 29a05de | 2015-03-22 20:42:19 -0700 | [diff] [blame] | 224 | rcu_read_lock(); |
| 225 | deve = target_nacl_find_deve(nacl, cmd->orig_fe_lun); |
| 226 | if (!deve) { |
| 227 | rcu_read_unlock(); |
| 228 | return; |
| 229 | } |
Andy Grover | 6708bb2 | 2011-06-08 10:36:43 -0700 | [diff] [blame] | 230 | if (!atomic_read(&deve->ua_count)) { |
Nicholas Bellinger | 29a05de | 2015-03-22 20:42:19 -0700 | [diff] [blame] | 231 | rcu_read_unlock(); |
Nicholas Bellinger | c66ac9d | 2010-12-17 11:11:26 -0800 | [diff] [blame] | 232 | return; |
| 233 | } |
| 234 | /* |
| 235 | * The highest priority Unit Attentions are placed at the head of the |
| 236 | * struct se_dev_entry->ua_list, and will be returned in CHECK_CONDITION + |
| 237 | * sense data for the received CDB. |
| 238 | */ |
| 239 | spin_lock(&deve->ua_lock); |
| 240 | list_for_each_entry_safe(ua, ua_p, &deve->ua_list, ua_nacl_list) { |
| 241 | /* |
| 242 | * For ua_intlck_ctrl code not equal to 00b, only report the |
| 243 | * highest priority UNIT_ATTENTION and ASC/ASCQ without |
| 244 | * clearing it. |
| 245 | */ |
Christoph Hellwig | 0fd97cc | 2012-10-08 00:03:19 -0400 | [diff] [blame] | 246 | if (dev->dev_attrib.emulate_ua_intlck_ctrl != 0) { |
Nicholas Bellinger | c66ac9d | 2010-12-17 11:11:26 -0800 | [diff] [blame] | 247 | *asc = ua->ua_asc; |
| 248 | *ascq = ua->ua_ascq; |
| 249 | break; |
| 250 | } |
| 251 | /* |
| 252 | * Otherwise for the default 00b, release the UNIT ATTENTION |
Lucas De Marchi | 25985ed | 2011-03-30 22:57:33 -0300 | [diff] [blame] | 253 | * condition. Return the ASC/ASCQ of the highest priority UA |
Nicholas Bellinger | c66ac9d | 2010-12-17 11:11:26 -0800 | [diff] [blame] | 254 | * (head of the list) in the outgoing CHECK_CONDITION + sense. |
| 255 | */ |
| 256 | if (head) { |
| 257 | *asc = ua->ua_asc; |
| 258 | *ascq = ua->ua_ascq; |
| 259 | head = 0; |
| 260 | } |
| 261 | list_del(&ua->ua_nacl_list); |
| 262 | kmem_cache_free(se_ua_cache, ua); |
| 263 | |
Joern Engel | 33940d0 | 2014-09-16 16:23:12 -0400 | [diff] [blame] | 264 | atomic_dec_mb(&deve->ua_count); |
Nicholas Bellinger | c66ac9d | 2010-12-17 11:11:26 -0800 | [diff] [blame] | 265 | } |
| 266 | spin_unlock(&deve->ua_lock); |
Nicholas Bellinger | 29a05de | 2015-03-22 20:42:19 -0700 | [diff] [blame] | 267 | rcu_read_unlock(); |
Nicholas Bellinger | c66ac9d | 2010-12-17 11:11:26 -0800 | [diff] [blame] | 268 | |
Andy Grover | 6708bb2 | 2011-06-08 10:36:43 -0700 | [diff] [blame] | 269 | pr_debug("[%s]: %s UNIT ATTENTION condition with" |
Hannes Reinecke | f2d3068 | 2015-06-10 08:41:22 +0200 | [diff] [blame] | 270 | " INTLCK_CTRL: %d, mapped LUN: %llu, got CDB: 0x%02x" |
Nicholas Bellinger | c66ac9d | 2010-12-17 11:11:26 -0800 | [diff] [blame] | 271 | " reported ASC: 0x%02x, ASCQ: 0x%02x\n", |
Andy Grover | e3d6f90 | 2011-07-19 08:55:10 +0000 | [diff] [blame] | 272 | nacl->se_tpg->se_tpg_tfo->get_fabric_name(), |
Christoph Hellwig | 0fd97cc | 2012-10-08 00:03:19 -0400 | [diff] [blame] | 273 | (dev->dev_attrib.emulate_ua_intlck_ctrl != 0) ? "Reporting" : |
| 274 | "Releasing", dev->dev_attrib.emulate_ua_intlck_ctrl, |
Andy Grover | a1d8b49 | 2011-05-02 17:12:10 -0700 | [diff] [blame] | 275 | cmd->orig_fe_lun, cmd->t_task_cdb[0], *asc, *ascq); |
Nicholas Bellinger | c66ac9d | 2010-12-17 11:11:26 -0800 | [diff] [blame] | 276 | } |
| 277 | |
| 278 | int core_scsi3_ua_clear_for_request_sense( |
| 279 | struct se_cmd *cmd, |
| 280 | u8 *asc, |
| 281 | u8 *ascq) |
| 282 | { |
| 283 | struct se_dev_entry *deve; |
| 284 | struct se_session *sess = cmd->se_sess; |
| 285 | struct se_node_acl *nacl; |
| 286 | struct se_ua *ua = NULL, *ua_p; |
| 287 | int head = 1; |
| 288 | |
Andy Grover | 6708bb2 | 2011-06-08 10:36:43 -0700 | [diff] [blame] | 289 | if (!sess) |
Andy Grover | e3d6f90 | 2011-07-19 08:55:10 +0000 | [diff] [blame] | 290 | return -EINVAL; |
Nicholas Bellinger | c66ac9d | 2010-12-17 11:11:26 -0800 | [diff] [blame] | 291 | |
| 292 | nacl = sess->se_node_acl; |
Andy Grover | 6708bb2 | 2011-06-08 10:36:43 -0700 | [diff] [blame] | 293 | if (!nacl) |
Andy Grover | e3d6f90 | 2011-07-19 08:55:10 +0000 | [diff] [blame] | 294 | return -EINVAL; |
Nicholas Bellinger | c66ac9d | 2010-12-17 11:11:26 -0800 | [diff] [blame] | 295 | |
Nicholas Bellinger | 29a05de | 2015-03-22 20:42:19 -0700 | [diff] [blame] | 296 | rcu_read_lock(); |
| 297 | deve = target_nacl_find_deve(nacl, cmd->orig_fe_lun); |
| 298 | if (!deve) { |
| 299 | rcu_read_unlock(); |
| 300 | return -EINVAL; |
| 301 | } |
Andy Grover | 6708bb2 | 2011-06-08 10:36:43 -0700 | [diff] [blame] | 302 | if (!atomic_read(&deve->ua_count)) { |
Nicholas Bellinger | 29a05de | 2015-03-22 20:42:19 -0700 | [diff] [blame] | 303 | rcu_read_unlock(); |
Andy Grover | e3d6f90 | 2011-07-19 08:55:10 +0000 | [diff] [blame] | 304 | return -EPERM; |
Nicholas Bellinger | c66ac9d | 2010-12-17 11:11:26 -0800 | [diff] [blame] | 305 | } |
| 306 | /* |
| 307 | * The highest priority Unit Attentions are placed at the head of the |
| 308 | * struct se_dev_entry->ua_list. The First (and hence highest priority) |
| 309 | * ASC/ASCQ will be returned in REQUEST_SENSE payload data for the |
| 310 | * matching struct se_lun. |
| 311 | * |
| 312 | * Once the returning ASC/ASCQ values are set, we go ahead and |
Lucas De Marchi | 25985ed | 2011-03-30 22:57:33 -0300 | [diff] [blame] | 313 | * release all of the Unit Attention conditions for the associated |
Nicholas Bellinger | c66ac9d | 2010-12-17 11:11:26 -0800 | [diff] [blame] | 314 | * struct se_lun. |
| 315 | */ |
| 316 | spin_lock(&deve->ua_lock); |
| 317 | list_for_each_entry_safe(ua, ua_p, &deve->ua_list, ua_nacl_list) { |
| 318 | if (head) { |
| 319 | *asc = ua->ua_asc; |
| 320 | *ascq = ua->ua_ascq; |
| 321 | head = 0; |
| 322 | } |
| 323 | list_del(&ua->ua_nacl_list); |
| 324 | kmem_cache_free(se_ua_cache, ua); |
| 325 | |
Joern Engel | 33940d0 | 2014-09-16 16:23:12 -0400 | [diff] [blame] | 326 | atomic_dec_mb(&deve->ua_count); |
Nicholas Bellinger | c66ac9d | 2010-12-17 11:11:26 -0800 | [diff] [blame] | 327 | } |
| 328 | spin_unlock(&deve->ua_lock); |
Nicholas Bellinger | 29a05de | 2015-03-22 20:42:19 -0700 | [diff] [blame] | 329 | rcu_read_unlock(); |
Nicholas Bellinger | c66ac9d | 2010-12-17 11:11:26 -0800 | [diff] [blame] | 330 | |
Andy Grover | 6708bb2 | 2011-06-08 10:36:43 -0700 | [diff] [blame] | 331 | pr_debug("[%s]: Released UNIT ATTENTION condition, mapped" |
Hannes Reinecke | f2d3068 | 2015-06-10 08:41:22 +0200 | [diff] [blame] | 332 | " LUN: %llu, got REQUEST_SENSE reported ASC: 0x%02x," |
Andy Grover | e3d6f90 | 2011-07-19 08:55:10 +0000 | [diff] [blame] | 333 | " ASCQ: 0x%02x\n", nacl->se_tpg->se_tpg_tfo->get_fabric_name(), |
Nicholas Bellinger | c66ac9d | 2010-12-17 11:11:26 -0800 | [diff] [blame] | 334 | cmd->orig_fe_lun, *asc, *ascq); |
| 335 | |
Andy Grover | e3d6f90 | 2011-07-19 08:55:10 +0000 | [diff] [blame] | 336 | return (head) ? -EPERM : 0; |
Nicholas Bellinger | c66ac9d | 2010-12-17 11:11:26 -0800 | [diff] [blame] | 337 | } |