| 
									
										
											  
											
												[SCSI] target: Add LIO target core v4.0.0-rc6
LIO target is a full featured in-kernel target framework with the
following feature set:
High-performance, non-blocking, multithreaded architecture with SIMD
support.
Advanced SCSI feature set:
    * Persistent Reservations (PRs)
    * Asymmetric Logical Unit Assignment (ALUA)
    * Protocol and intra-nexus multiplexing, load-balancing and failover (MC/S)
    * Full Error Recovery (ERL=0,1,2)
    * Active/active task migration and session continuation (ERL=2)
    * Thin LUN provisioning (UNMAP and WRITE_SAMExx)
Multiprotocol target plugins
Storage media independence:
    * Virtualization of all storage media; transparent mapping of IO to LUNs
    * No hard limits on number of LUNs per Target; maximum LUN size ~750 TB
    * Backstores: SATA, SAS, SCSI, BluRay, DVD, FLASH, USB, ramdisk, etc.
Standards compliance:
    * Full compliance with IETF (RFC 3720)
    * Full implementation of SPC-4 PRs and ALUA
Significant code cleanups done by Christoph Hellwig.
[jejb: fix up for new block bdev exclusive interface. Minor fixes from
 Randy Dunlap and Dan Carpenter.]
Signed-off-by: Nicholas A. Bellinger <nab@linux-iscsi.org>
Signed-off-by: James Bottomley <James.Bottomley@suse.de>
											
										 
											2010-12-17 11:11:26 -08:00
										 |  |  | /*******************************************************************************
 | 
					
						
							|  |  |  |  * Filename: target_core_ua.c | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * This file contains logic for SPC-3 Unit Attention emulation | 
					
						
							|  |  |  |  * | 
					
						
							| 
									
										
										
										
											2013-09-05 15:29:12 -07:00
										 |  |  |  * (c) Copyright 2009-2013 Datera, Inc. | 
					
						
							| 
									
										
											  
											
												[SCSI] target: Add LIO target core v4.0.0-rc6
LIO target is a full featured in-kernel target framework with the
following feature set:
High-performance, non-blocking, multithreaded architecture with SIMD
support.
Advanced SCSI feature set:
    * Persistent Reservations (PRs)
    * Asymmetric Logical Unit Assignment (ALUA)
    * Protocol and intra-nexus multiplexing, load-balancing and failover (MC/S)
    * Full Error Recovery (ERL=0,1,2)
    * Active/active task migration and session continuation (ERL=2)
    * Thin LUN provisioning (UNMAP and WRITE_SAMExx)
Multiprotocol target plugins
Storage media independence:
    * Virtualization of all storage media; transparent mapping of IO to LUNs
    * No hard limits on number of LUNs per Target; maximum LUN size ~750 TB
    * Backstores: SATA, SAS, SCSI, BluRay, DVD, FLASH, USB, ramdisk, etc.
Standards compliance:
    * Full compliance with IETF (RFC 3720)
    * Full implementation of SPC-4 PRs and ALUA
Significant code cleanups done by Christoph Hellwig.
[jejb: fix up for new block bdev exclusive interface. Minor fixes from
 Randy Dunlap and Dan Carpenter.]
Signed-off-by: Nicholas A. Bellinger <nab@linux-iscsi.org>
Signed-off-by: James Bottomley <James.Bottomley@suse.de>
											
										 
											2010-12-17 11:11:26 -08:00
										 |  |  |  * | 
					
						
							|  |  |  |  * Nicholas A. Bellinger <nab@kernel.org> | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * This program is free software; you can redistribute it and/or modify | 
					
						
							|  |  |  |  * it under the terms of the GNU General Public License as published by | 
					
						
							|  |  |  |  * the Free Software Foundation; either version 2 of the License, or | 
					
						
							|  |  |  |  * (at your option) any later version. | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * This program is distributed in the hope that it will be useful, | 
					
						
							|  |  |  |  * but WITHOUT ANY WARRANTY; without even the implied warranty of | 
					
						
							|  |  |  |  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the | 
					
						
							|  |  |  |  * GNU General Public License for more details. | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * You should have received a copy of the GNU General Public License | 
					
						
							|  |  |  |  * along with this program; if not, write to the Free Software | 
					
						
							|  |  |  |  * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  ******************************************************************************/ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #include <linux/slab.h>
 | 
					
						
							|  |  |  | #include <linux/spinlock.h>
 | 
					
						
							|  |  |  | #include <scsi/scsi.h>
 | 
					
						
							|  |  |  | #include <scsi/scsi_cmnd.h>
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #include <target/target_core_base.h>
 | 
					
						
							| 
									
										
										
										
											2011-11-16 09:46:48 -05:00
										 |  |  | #include <target/target_core_fabric.h>
 | 
					
						
							| 
									
										
											  
											
												[SCSI] target: Add LIO target core v4.0.0-rc6
LIO target is a full featured in-kernel target framework with the
following feature set:
High-performance, non-blocking, multithreaded architecture with SIMD
support.
Advanced SCSI feature set:
    * Persistent Reservations (PRs)
    * Asymmetric Logical Unit Assignment (ALUA)
    * Protocol and intra-nexus multiplexing, load-balancing and failover (MC/S)
    * Full Error Recovery (ERL=0,1,2)
    * Active/active task migration and session continuation (ERL=2)
    * Thin LUN provisioning (UNMAP and WRITE_SAMExx)
Multiprotocol target plugins
Storage media independence:
    * Virtualization of all storage media; transparent mapping of IO to LUNs
    * No hard limits on number of LUNs per Target; maximum LUN size ~750 TB
    * Backstores: SATA, SAS, SCSI, BluRay, DVD, FLASH, USB, ramdisk, etc.
Standards compliance:
    * Full compliance with IETF (RFC 3720)
    * Full implementation of SPC-4 PRs and ALUA
Significant code cleanups done by Christoph Hellwig.
[jejb: fix up for new block bdev exclusive interface. Minor fixes from
 Randy Dunlap and Dan Carpenter.]
Signed-off-by: Nicholas A. Bellinger <nab@linux-iscsi.org>
Signed-off-by: James Bottomley <James.Bottomley@suse.de>
											
										 
											2010-12-17 11:11:26 -08:00
										 |  |  | #include <target/target_core_configfs.h>
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-11-14 12:30:30 -05:00
										 |  |  | #include "target_core_internal.h"
 | 
					
						
							| 
									
										
											  
											
												[SCSI] target: Add LIO target core v4.0.0-rc6
LIO target is a full featured in-kernel target framework with the
following feature set:
High-performance, non-blocking, multithreaded architecture with SIMD
support.
Advanced SCSI feature set:
    * Persistent Reservations (PRs)
    * Asymmetric Logical Unit Assignment (ALUA)
    * Protocol and intra-nexus multiplexing, load-balancing and failover (MC/S)
    * Full Error Recovery (ERL=0,1,2)
    * Active/active task migration and session continuation (ERL=2)
    * Thin LUN provisioning (UNMAP and WRITE_SAMExx)
Multiprotocol target plugins
Storage media independence:
    * Virtualization of all storage media; transparent mapping of IO to LUNs
    * No hard limits on number of LUNs per Target; maximum LUN size ~750 TB
    * Backstores: SATA, SAS, SCSI, BluRay, DVD, FLASH, USB, ramdisk, etc.
Standards compliance:
    * Full compliance with IETF (RFC 3720)
    * Full implementation of SPC-4 PRs and ALUA
Significant code cleanups done by Christoph Hellwig.
[jejb: fix up for new block bdev exclusive interface. Minor fixes from
 Randy Dunlap and Dan Carpenter.]
Signed-off-by: Nicholas A. Bellinger <nab@linux-iscsi.org>
Signed-off-by: James Bottomley <James.Bottomley@suse.de>
											
										 
											2010-12-17 11:11:26 -08:00
										 |  |  | #include "target_core_alua.h"
 | 
					
						
							|  |  |  | #include "target_core_pr.h"
 | 
					
						
							|  |  |  | #include "target_core_ua.h"
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-11-06 12:24:09 -08:00
										 |  |  | sense_reason_t | 
					
						
							|  |  |  | target_scsi3_ua_check(struct se_cmd *cmd) | 
					
						
							| 
									
										
											  
											
												[SCSI] target: Add LIO target core v4.0.0-rc6
LIO target is a full featured in-kernel target framework with the
following feature set:
High-performance, non-blocking, multithreaded architecture with SIMD
support.
Advanced SCSI feature set:
    * Persistent Reservations (PRs)
    * Asymmetric Logical Unit Assignment (ALUA)
    * Protocol and intra-nexus multiplexing, load-balancing and failover (MC/S)
    * Full Error Recovery (ERL=0,1,2)
    * Active/active task migration and session continuation (ERL=2)
    * Thin LUN provisioning (UNMAP and WRITE_SAMExx)
Multiprotocol target plugins
Storage media independence:
    * Virtualization of all storage media; transparent mapping of IO to LUNs
    * No hard limits on number of LUNs per Target; maximum LUN size ~750 TB
    * Backstores: SATA, SAS, SCSI, BluRay, DVD, FLASH, USB, ramdisk, etc.
Standards compliance:
    * Full compliance with IETF (RFC 3720)
    * Full implementation of SPC-4 PRs and ALUA
Significant code cleanups done by Christoph Hellwig.
[jejb: fix up for new block bdev exclusive interface. Minor fixes from
 Randy Dunlap and Dan Carpenter.]
Signed-off-by: Nicholas A. Bellinger <nab@linux-iscsi.org>
Signed-off-by: James Bottomley <James.Bottomley@suse.de>
											
										 
											2010-12-17 11:11:26 -08:00
										 |  |  | { | 
					
						
							|  |  |  | 	struct se_dev_entry *deve; | 
					
						
							|  |  |  | 	struct se_session *sess = cmd->se_sess; | 
					
						
							|  |  |  | 	struct se_node_acl *nacl; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-06-08 10:36:43 -07:00
										 |  |  | 	if (!sess) | 
					
						
							| 
									
										
											  
											
												[SCSI] target: Add LIO target core v4.0.0-rc6
LIO target is a full featured in-kernel target framework with the
following feature set:
High-performance, non-blocking, multithreaded architecture with SIMD
support.
Advanced SCSI feature set:
    * Persistent Reservations (PRs)
    * Asymmetric Logical Unit Assignment (ALUA)
    * Protocol and intra-nexus multiplexing, load-balancing and failover (MC/S)
    * Full Error Recovery (ERL=0,1,2)
    * Active/active task migration and session continuation (ERL=2)
    * Thin LUN provisioning (UNMAP and WRITE_SAMExx)
Multiprotocol target plugins
Storage media independence:
    * Virtualization of all storage media; transparent mapping of IO to LUNs
    * No hard limits on number of LUNs per Target; maximum LUN size ~750 TB
    * Backstores: SATA, SAS, SCSI, BluRay, DVD, FLASH, USB, ramdisk, etc.
Standards compliance:
    * Full compliance with IETF (RFC 3720)
    * Full implementation of SPC-4 PRs and ALUA
Significant code cleanups done by Christoph Hellwig.
[jejb: fix up for new block bdev exclusive interface. Minor fixes from
 Randy Dunlap and Dan Carpenter.]
Signed-off-by: Nicholas A. Bellinger <nab@linux-iscsi.org>
Signed-off-by: James Bottomley <James.Bottomley@suse.de>
											
										 
											2010-12-17 11:11:26 -08:00
										 |  |  | 		return 0; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	nacl = sess->se_node_acl; | 
					
						
							| 
									
										
										
										
											2011-06-08 10:36:43 -07:00
										 |  |  | 	if (!nacl) | 
					
						
							| 
									
										
											  
											
												[SCSI] target: Add LIO target core v4.0.0-rc6
LIO target is a full featured in-kernel target framework with the
following feature set:
High-performance, non-blocking, multithreaded architecture with SIMD
support.
Advanced SCSI feature set:
    * Persistent Reservations (PRs)
    * Asymmetric Logical Unit Assignment (ALUA)
    * Protocol and intra-nexus multiplexing, load-balancing and failover (MC/S)
    * Full Error Recovery (ERL=0,1,2)
    * Active/active task migration and session continuation (ERL=2)
    * Thin LUN provisioning (UNMAP and WRITE_SAMExx)
Multiprotocol target plugins
Storage media independence:
    * Virtualization of all storage media; transparent mapping of IO to LUNs
    * No hard limits on number of LUNs per Target; maximum LUN size ~750 TB
    * Backstores: SATA, SAS, SCSI, BluRay, DVD, FLASH, USB, ramdisk, etc.
Standards compliance:
    * Full compliance with IETF (RFC 3720)
    * Full implementation of SPC-4 PRs and ALUA
Significant code cleanups done by Christoph Hellwig.
[jejb: fix up for new block bdev exclusive interface. Minor fixes from
 Randy Dunlap and Dan Carpenter.]
Signed-off-by: Nicholas A. Bellinger <nab@linux-iscsi.org>
Signed-off-by: James Bottomley <James.Bottomley@suse.de>
											
										 
											2010-12-17 11:11:26 -08:00
										 |  |  | 		return 0; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-03-15 15:05:40 -04:00
										 |  |  | 	deve = nacl->device_list[cmd->orig_fe_lun]; | 
					
						
							| 
									
										
										
										
											2011-06-08 10:36:43 -07:00
										 |  |  | 	if (!atomic_read(&deve->ua_count)) | 
					
						
							| 
									
										
											  
											
												[SCSI] target: Add LIO target core v4.0.0-rc6
LIO target is a full featured in-kernel target framework with the
following feature set:
High-performance, non-blocking, multithreaded architecture with SIMD
support.
Advanced SCSI feature set:
    * Persistent Reservations (PRs)
    * Asymmetric Logical Unit Assignment (ALUA)
    * Protocol and intra-nexus multiplexing, load-balancing and failover (MC/S)
    * Full Error Recovery (ERL=0,1,2)
    * Active/active task migration and session continuation (ERL=2)
    * Thin LUN provisioning (UNMAP and WRITE_SAMExx)
Multiprotocol target plugins
Storage media independence:
    * Virtualization of all storage media; transparent mapping of IO to LUNs
    * No hard limits on number of LUNs per Target; maximum LUN size ~750 TB
    * Backstores: SATA, SAS, SCSI, BluRay, DVD, FLASH, USB, ramdisk, etc.
Standards compliance:
    * Full compliance with IETF (RFC 3720)
    * Full implementation of SPC-4 PRs and ALUA
Significant code cleanups done by Christoph Hellwig.
[jejb: fix up for new block bdev exclusive interface. Minor fixes from
 Randy Dunlap and Dan Carpenter.]
Signed-off-by: Nicholas A. Bellinger <nab@linux-iscsi.org>
Signed-off-by: James Bottomley <James.Bottomley@suse.de>
											
										 
											2010-12-17 11:11:26 -08:00
										 |  |  | 		return 0; | 
					
						
							|  |  |  | 	/*
 | 
					
						
							|  |  |  | 	 * From sam4r14, section 5.14 Unit attention condition: | 
					
						
							|  |  |  | 	 * | 
					
						
							|  |  |  | 	 * a) if an INQUIRY command enters the enabled command state, the | 
					
						
							|  |  |  | 	 *    device server shall process the INQUIRY command and shall neither | 
					
						
							|  |  |  | 	 *    report nor clear any unit attention condition; | 
					
						
							|  |  |  | 	 * b) if a REPORT LUNS command enters the enabled command state, the | 
					
						
							|  |  |  | 	 *    device server shall process the REPORT LUNS command and shall not | 
					
						
							|  |  |  | 	 *    report any unit attention condition; | 
					
						
							|  |  |  | 	 * e) if a REQUEST SENSE command enters the enabled command state while | 
					
						
							|  |  |  | 	 *    a unit attention condition exists for the SCSI initiator port | 
					
						
							|  |  |  | 	 *    associated with the I_T nexus on which the REQUEST SENSE command | 
					
						
							|  |  |  | 	 *    was received, then the device server shall process the command | 
					
						
							|  |  |  | 	 *    and either: | 
					
						
							|  |  |  | 	 */ | 
					
						
							| 
									
										
										
										
											2012-11-06 12:24:09 -08:00
										 |  |  | 	switch (cmd->t_task_cdb[0]) { | 
					
						
							| 
									
										
											  
											
												[SCSI] target: Add LIO target core v4.0.0-rc6
LIO target is a full featured in-kernel target framework with the
following feature set:
High-performance, non-blocking, multithreaded architecture with SIMD
support.
Advanced SCSI feature set:
    * Persistent Reservations (PRs)
    * Asymmetric Logical Unit Assignment (ALUA)
    * Protocol and intra-nexus multiplexing, load-balancing and failover (MC/S)
    * Full Error Recovery (ERL=0,1,2)
    * Active/active task migration and session continuation (ERL=2)
    * Thin LUN provisioning (UNMAP and WRITE_SAMExx)
Multiprotocol target plugins
Storage media independence:
    * Virtualization of all storage media; transparent mapping of IO to LUNs
    * No hard limits on number of LUNs per Target; maximum LUN size ~750 TB
    * Backstores: SATA, SAS, SCSI, BluRay, DVD, FLASH, USB, ramdisk, etc.
Standards compliance:
    * Full compliance with IETF (RFC 3720)
    * Full implementation of SPC-4 PRs and ALUA
Significant code cleanups done by Christoph Hellwig.
[jejb: fix up for new block bdev exclusive interface. Minor fixes from
 Randy Dunlap and Dan Carpenter.]
Signed-off-by: Nicholas A. Bellinger <nab@linux-iscsi.org>
Signed-off-by: James Bottomley <James.Bottomley@suse.de>
											
										 
											2010-12-17 11:11:26 -08:00
										 |  |  | 	case INQUIRY: | 
					
						
							|  |  |  | 	case REPORT_LUNS: | 
					
						
							|  |  |  | 	case REQUEST_SENSE: | 
					
						
							|  |  |  | 		return 0; | 
					
						
							|  |  |  | 	default: | 
					
						
							| 
									
										
										
										
											2012-11-06 12:24:09 -08:00
										 |  |  | 		return TCM_CHECK_CONDITION_UNIT_ATTENTION; | 
					
						
							| 
									
										
											  
											
												[SCSI] target: Add LIO target core v4.0.0-rc6
LIO target is a full featured in-kernel target framework with the
following feature set:
High-performance, non-blocking, multithreaded architecture with SIMD
support.
Advanced SCSI feature set:
    * Persistent Reservations (PRs)
    * Asymmetric Logical Unit Assignment (ALUA)
    * Protocol and intra-nexus multiplexing, load-balancing and failover (MC/S)
    * Full Error Recovery (ERL=0,1,2)
    * Active/active task migration and session continuation (ERL=2)
    * Thin LUN provisioning (UNMAP and WRITE_SAMExx)
Multiprotocol target plugins
Storage media independence:
    * Virtualization of all storage media; transparent mapping of IO to LUNs
    * No hard limits on number of LUNs per Target; maximum LUN size ~750 TB
    * Backstores: SATA, SAS, SCSI, BluRay, DVD, FLASH, USB, ramdisk, etc.
Standards compliance:
    * Full compliance with IETF (RFC 3720)
    * Full implementation of SPC-4 PRs and ALUA
Significant code cleanups done by Christoph Hellwig.
[jejb: fix up for new block bdev exclusive interface. Minor fixes from
 Randy Dunlap and Dan Carpenter.]
Signed-off-by: Nicholas A. Bellinger <nab@linux-iscsi.org>
Signed-off-by: James Bottomley <James.Bottomley@suse.de>
											
										 
											2010-12-17 11:11:26 -08:00
										 |  |  | 	} | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | int core_scsi3_ua_allocate( | 
					
						
							|  |  |  | 	struct se_node_acl *nacl, | 
					
						
							|  |  |  | 	u32 unpacked_lun, | 
					
						
							|  |  |  | 	u8 asc, | 
					
						
							|  |  |  | 	u8 ascq) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	struct se_dev_entry *deve; | 
					
						
							|  |  |  | 	struct se_ua *ua, *ua_p, *ua_tmp; | 
					
						
							|  |  |  | 	/*
 | 
					
						
							|  |  |  | 	 * PASSTHROUGH OPS | 
					
						
							|  |  |  | 	 */ | 
					
						
							| 
									
										
										
										
											2011-06-08 10:36:43 -07:00
										 |  |  | 	if (!nacl) | 
					
						
							| 
									
										
										
										
											2011-07-19 08:55:10 +00:00
										 |  |  | 		return -EINVAL; | 
					
						
							| 
									
										
											  
											
												[SCSI] target: Add LIO target core v4.0.0-rc6
LIO target is a full featured in-kernel target framework with the
following feature set:
High-performance, non-blocking, multithreaded architecture with SIMD
support.
Advanced SCSI feature set:
    * Persistent Reservations (PRs)
    * Asymmetric Logical Unit Assignment (ALUA)
    * Protocol and intra-nexus multiplexing, load-balancing and failover (MC/S)
    * Full Error Recovery (ERL=0,1,2)
    * Active/active task migration and session continuation (ERL=2)
    * Thin LUN provisioning (UNMAP and WRITE_SAMExx)
Multiprotocol target plugins
Storage media independence:
    * Virtualization of all storage media; transparent mapping of IO to LUNs
    * No hard limits on number of LUNs per Target; maximum LUN size ~750 TB
    * Backstores: SATA, SAS, SCSI, BluRay, DVD, FLASH, USB, ramdisk, etc.
Standards compliance:
    * Full compliance with IETF (RFC 3720)
    * Full implementation of SPC-4 PRs and ALUA
Significant code cleanups done by Christoph Hellwig.
[jejb: fix up for new block bdev exclusive interface. Minor fixes from
 Randy Dunlap and Dan Carpenter.]
Signed-off-by: Nicholas A. Bellinger <nab@linux-iscsi.org>
Signed-off-by: James Bottomley <James.Bottomley@suse.de>
											
										 
											2010-12-17 11:11:26 -08:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	ua = kmem_cache_zalloc(se_ua_cache, GFP_ATOMIC); | 
					
						
							| 
									
										
										
										
											2011-06-08 10:36:43 -07:00
										 |  |  | 	if (!ua) { | 
					
						
							|  |  |  | 		pr_err("Unable to allocate struct se_ua\n"); | 
					
						
							| 
									
										
										
										
											2011-07-19 08:55:10 +00:00
										 |  |  | 		return -ENOMEM; | 
					
						
							| 
									
										
											  
											
												[SCSI] target: Add LIO target core v4.0.0-rc6
LIO target is a full featured in-kernel target framework with the
following feature set:
High-performance, non-blocking, multithreaded architecture with SIMD
support.
Advanced SCSI feature set:
    * Persistent Reservations (PRs)
    * Asymmetric Logical Unit Assignment (ALUA)
    * Protocol and intra-nexus multiplexing, load-balancing and failover (MC/S)
    * Full Error Recovery (ERL=0,1,2)
    * Active/active task migration and session continuation (ERL=2)
    * Thin LUN provisioning (UNMAP and WRITE_SAMExx)
Multiprotocol target plugins
Storage media independence:
    * Virtualization of all storage media; transparent mapping of IO to LUNs
    * No hard limits on number of LUNs per Target; maximum LUN size ~750 TB
    * Backstores: SATA, SAS, SCSI, BluRay, DVD, FLASH, USB, ramdisk, etc.
Standards compliance:
    * Full compliance with IETF (RFC 3720)
    * Full implementation of SPC-4 PRs and ALUA
Significant code cleanups done by Christoph Hellwig.
[jejb: fix up for new block bdev exclusive interface. Minor fixes from
 Randy Dunlap and Dan Carpenter.]
Signed-off-by: Nicholas A. Bellinger <nab@linux-iscsi.org>
Signed-off-by: James Bottomley <James.Bottomley@suse.de>
											
										 
											2010-12-17 11:11:26 -08:00
										 |  |  | 	} | 
					
						
							|  |  |  | 	INIT_LIST_HEAD(&ua->ua_nacl_list); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	ua->ua_nacl = nacl; | 
					
						
							|  |  |  | 	ua->ua_asc = asc; | 
					
						
							|  |  |  | 	ua->ua_ascq = ascq; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	spin_lock_irq(&nacl->device_list_lock); | 
					
						
							| 
									
										
										
										
											2012-03-15 15:05:40 -04:00
										 |  |  | 	deve = nacl->device_list[unpacked_lun]; | 
					
						
							| 
									
										
											  
											
												[SCSI] target: Add LIO target core v4.0.0-rc6
LIO target is a full featured in-kernel target framework with the
following feature set:
High-performance, non-blocking, multithreaded architecture with SIMD
support.
Advanced SCSI feature set:
    * Persistent Reservations (PRs)
    * Asymmetric Logical Unit Assignment (ALUA)
    * Protocol and intra-nexus multiplexing, load-balancing and failover (MC/S)
    * Full Error Recovery (ERL=0,1,2)
    * Active/active task migration and session continuation (ERL=2)
    * Thin LUN provisioning (UNMAP and WRITE_SAMExx)
Multiprotocol target plugins
Storage media independence:
    * Virtualization of all storage media; transparent mapping of IO to LUNs
    * No hard limits on number of LUNs per Target; maximum LUN size ~750 TB
    * Backstores: SATA, SAS, SCSI, BluRay, DVD, FLASH, USB, ramdisk, etc.
Standards compliance:
    * Full compliance with IETF (RFC 3720)
    * Full implementation of SPC-4 PRs and ALUA
Significant code cleanups done by Christoph Hellwig.
[jejb: fix up for new block bdev exclusive interface. Minor fixes from
 Randy Dunlap and Dan Carpenter.]
Signed-off-by: Nicholas A. Bellinger <nab@linux-iscsi.org>
Signed-off-by: James Bottomley <James.Bottomley@suse.de>
											
										 
											2010-12-17 11:11:26 -08:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	spin_lock(&deve->ua_lock); | 
					
						
							|  |  |  | 	list_for_each_entry_safe(ua_p, ua_tmp, &deve->ua_list, ua_nacl_list) { | 
					
						
							|  |  |  | 		/*
 | 
					
						
							|  |  |  | 		 * Do not report the same UNIT ATTENTION twice.. | 
					
						
							|  |  |  | 		 */ | 
					
						
							|  |  |  | 		if ((ua_p->ua_asc == asc) && (ua_p->ua_ascq == ascq)) { | 
					
						
							|  |  |  | 			spin_unlock(&deve->ua_lock); | 
					
						
							|  |  |  | 			spin_unlock_irq(&nacl->device_list_lock); | 
					
						
							|  |  |  | 			kmem_cache_free(se_ua_cache, ua); | 
					
						
							|  |  |  | 			return 0; | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 		/*
 | 
					
						
							|  |  |  | 		 * Attach the highest priority Unit Attention to | 
					
						
							|  |  |  | 		 * the head of the list following sam4r14, | 
					
						
							|  |  |  | 		 * Section 5.14 Unit Attention Condition: | 
					
						
							|  |  |  | 		 * | 
					
						
							|  |  |  | 		 * POWER ON, RESET, OR BUS DEVICE RESET OCCURRED highest | 
					
						
							|  |  |  | 		 * POWER ON OCCURRED or | 
					
						
							|  |  |  | 		 * DEVICE INTERNAL RESET | 
					
						
							|  |  |  | 		 * SCSI BUS RESET OCCURRED or | 
					
						
							|  |  |  | 		 * MICROCODE HAS BEEN CHANGED or | 
					
						
							|  |  |  | 		 * protocol specific | 
					
						
							|  |  |  | 		 * BUS DEVICE RESET FUNCTION OCCURRED | 
					
						
							|  |  |  | 		 * I_T NEXUS LOSS OCCURRED | 
					
						
							|  |  |  | 		 * COMMANDS CLEARED BY POWER LOSS NOTIFICATION | 
					
						
							|  |  |  | 		 * all others                                    Lowest | 
					
						
							|  |  |  | 		 * | 
					
						
							|  |  |  | 		 * Each of the ASCQ codes listed above are defined in | 
					
						
							|  |  |  | 		 * the 29h ASC family, see spc4r17 Table D.1 | 
					
						
							|  |  |  | 		 */ | 
					
						
							|  |  |  | 		if (ua_p->ua_asc == 0x29) { | 
					
						
							|  |  |  | 			if ((asc == 0x29) && (ascq > ua_p->ua_ascq)) | 
					
						
							|  |  |  | 				list_add(&ua->ua_nacl_list, | 
					
						
							|  |  |  | 						&deve->ua_list); | 
					
						
							|  |  |  | 			else | 
					
						
							|  |  |  | 				list_add_tail(&ua->ua_nacl_list, | 
					
						
							|  |  |  | 						&deve->ua_list); | 
					
						
							|  |  |  | 		} else if (ua_p->ua_asc == 0x2a) { | 
					
						
							|  |  |  | 			/*
 | 
					
						
							|  |  |  | 			 * Incoming Family 29h ASCQ codes will override | 
					
						
							|  |  |  | 			 * Family 2AHh ASCQ codes for Unit Attention condition. | 
					
						
							|  |  |  | 			 */ | 
					
						
							|  |  |  | 			if ((asc == 0x29) || (ascq > ua_p->ua_asc)) | 
					
						
							|  |  |  | 				list_add(&ua->ua_nacl_list, | 
					
						
							|  |  |  | 					&deve->ua_list); | 
					
						
							|  |  |  | 			else | 
					
						
							|  |  |  | 				list_add_tail(&ua->ua_nacl_list, | 
					
						
							|  |  |  | 						&deve->ua_list); | 
					
						
							|  |  |  | 		} else | 
					
						
							|  |  |  | 			list_add_tail(&ua->ua_nacl_list, | 
					
						
							|  |  |  | 				&deve->ua_list); | 
					
						
							|  |  |  | 		spin_unlock(&deve->ua_lock); | 
					
						
							|  |  |  | 		spin_unlock_irq(&nacl->device_list_lock); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		atomic_inc(&deve->ua_count); | 
					
						
							| 
									
										
										
										
											2014-03-17 18:06:10 +01:00
										 |  |  | 		smp_mb__after_atomic(); | 
					
						
							| 
									
										
											  
											
												[SCSI] target: Add LIO target core v4.0.0-rc6
LIO target is a full featured in-kernel target framework with the
following feature set:
High-performance, non-blocking, multithreaded architecture with SIMD
support.
Advanced SCSI feature set:
    * Persistent Reservations (PRs)
    * Asymmetric Logical Unit Assignment (ALUA)
    * Protocol and intra-nexus multiplexing, load-balancing and failover (MC/S)
    * Full Error Recovery (ERL=0,1,2)
    * Active/active task migration and session continuation (ERL=2)
    * Thin LUN provisioning (UNMAP and WRITE_SAMExx)
Multiprotocol target plugins
Storage media independence:
    * Virtualization of all storage media; transparent mapping of IO to LUNs
    * No hard limits on number of LUNs per Target; maximum LUN size ~750 TB
    * Backstores: SATA, SAS, SCSI, BluRay, DVD, FLASH, USB, ramdisk, etc.
Standards compliance:
    * Full compliance with IETF (RFC 3720)
    * Full implementation of SPC-4 PRs and ALUA
Significant code cleanups done by Christoph Hellwig.
[jejb: fix up for new block bdev exclusive interface. Minor fixes from
 Randy Dunlap and Dan Carpenter.]
Signed-off-by: Nicholas A. Bellinger <nab@linux-iscsi.org>
Signed-off-by: James Bottomley <James.Bottomley@suse.de>
											
										 
											2010-12-17 11:11:26 -08:00
										 |  |  | 		return 0; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	list_add_tail(&ua->ua_nacl_list, &deve->ua_list); | 
					
						
							|  |  |  | 	spin_unlock(&deve->ua_lock); | 
					
						
							|  |  |  | 	spin_unlock_irq(&nacl->device_list_lock); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-06-08 10:36:43 -07:00
										 |  |  | 	pr_debug("[%s]: Allocated UNIT ATTENTION, mapped LUN: %u, ASC:" | 
					
						
							| 
									
										
											  
											
												[SCSI] target: Add LIO target core v4.0.0-rc6
LIO target is a full featured in-kernel target framework with the
following feature set:
High-performance, non-blocking, multithreaded architecture with SIMD
support.
Advanced SCSI feature set:
    * Persistent Reservations (PRs)
    * Asymmetric Logical Unit Assignment (ALUA)
    * Protocol and intra-nexus multiplexing, load-balancing and failover (MC/S)
    * Full Error Recovery (ERL=0,1,2)
    * Active/active task migration and session continuation (ERL=2)
    * Thin LUN provisioning (UNMAP and WRITE_SAMExx)
Multiprotocol target plugins
Storage media independence:
    * Virtualization of all storage media; transparent mapping of IO to LUNs
    * No hard limits on number of LUNs per Target; maximum LUN size ~750 TB
    * Backstores: SATA, SAS, SCSI, BluRay, DVD, FLASH, USB, ramdisk, etc.
Standards compliance:
    * Full compliance with IETF (RFC 3720)
    * Full implementation of SPC-4 PRs and ALUA
Significant code cleanups done by Christoph Hellwig.
[jejb: fix up for new block bdev exclusive interface. Minor fixes from
 Randy Dunlap and Dan Carpenter.]
Signed-off-by: Nicholas A. Bellinger <nab@linux-iscsi.org>
Signed-off-by: James Bottomley <James.Bottomley@suse.de>
											
										 
											2010-12-17 11:11:26 -08:00
										 |  |  | 		" 0x%02x, ASCQ: 0x%02x\n", | 
					
						
							| 
									
										
										
										
											2011-07-19 08:55:10 +00:00
										 |  |  | 		nacl->se_tpg->se_tpg_tfo->get_fabric_name(), unpacked_lun, | 
					
						
							| 
									
										
											  
											
												[SCSI] target: Add LIO target core v4.0.0-rc6
LIO target is a full featured in-kernel target framework with the
following feature set:
High-performance, non-blocking, multithreaded architecture with SIMD
support.
Advanced SCSI feature set:
    * Persistent Reservations (PRs)
    * Asymmetric Logical Unit Assignment (ALUA)
    * Protocol and intra-nexus multiplexing, load-balancing and failover (MC/S)
    * Full Error Recovery (ERL=0,1,2)
    * Active/active task migration and session continuation (ERL=2)
    * Thin LUN provisioning (UNMAP and WRITE_SAMExx)
Multiprotocol target plugins
Storage media independence:
    * Virtualization of all storage media; transparent mapping of IO to LUNs
    * No hard limits on number of LUNs per Target; maximum LUN size ~750 TB
    * Backstores: SATA, SAS, SCSI, BluRay, DVD, FLASH, USB, ramdisk, etc.
Standards compliance:
    * Full compliance with IETF (RFC 3720)
    * Full implementation of SPC-4 PRs and ALUA
Significant code cleanups done by Christoph Hellwig.
[jejb: fix up for new block bdev exclusive interface. Minor fixes from
 Randy Dunlap and Dan Carpenter.]
Signed-off-by: Nicholas A. Bellinger <nab@linux-iscsi.org>
Signed-off-by: James Bottomley <James.Bottomley@suse.de>
											
										 
											2010-12-17 11:11:26 -08:00
										 |  |  | 		asc, ascq); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	atomic_inc(&deve->ua_count); | 
					
						
							| 
									
										
										
										
											2014-03-17 18:06:10 +01:00
										 |  |  | 	smp_mb__after_atomic(); | 
					
						
							| 
									
										
											  
											
												[SCSI] target: Add LIO target core v4.0.0-rc6
LIO target is a full featured in-kernel target framework with the
following feature set:
High-performance, non-blocking, multithreaded architecture with SIMD
support.
Advanced SCSI feature set:
    * Persistent Reservations (PRs)
    * Asymmetric Logical Unit Assignment (ALUA)
    * Protocol and intra-nexus multiplexing, load-balancing and failover (MC/S)
    * Full Error Recovery (ERL=0,1,2)
    * Active/active task migration and session continuation (ERL=2)
    * Thin LUN provisioning (UNMAP and WRITE_SAMExx)
Multiprotocol target plugins
Storage media independence:
    * Virtualization of all storage media; transparent mapping of IO to LUNs
    * No hard limits on number of LUNs per Target; maximum LUN size ~750 TB
    * Backstores: SATA, SAS, SCSI, BluRay, DVD, FLASH, USB, ramdisk, etc.
Standards compliance:
    * Full compliance with IETF (RFC 3720)
    * Full implementation of SPC-4 PRs and ALUA
Significant code cleanups done by Christoph Hellwig.
[jejb: fix up for new block bdev exclusive interface. Minor fixes from
 Randy Dunlap and Dan Carpenter.]
Signed-off-by: Nicholas A. Bellinger <nab@linux-iscsi.org>
Signed-off-by: James Bottomley <James.Bottomley@suse.de>
											
										 
											2010-12-17 11:11:26 -08:00
										 |  |  | 	return 0; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | void core_scsi3_ua_release_all( | 
					
						
							|  |  |  | 	struct se_dev_entry *deve) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	struct se_ua *ua, *ua_p; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	spin_lock(&deve->ua_lock); | 
					
						
							|  |  |  | 	list_for_each_entry_safe(ua, ua_p, &deve->ua_list, ua_nacl_list) { | 
					
						
							|  |  |  | 		list_del(&ua->ua_nacl_list); | 
					
						
							|  |  |  | 		kmem_cache_free(se_ua_cache, ua); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		atomic_dec(&deve->ua_count); | 
					
						
							| 
									
										
										
										
											2014-03-17 18:06:10 +01:00
										 |  |  | 		smp_mb__after_atomic(); | 
					
						
							| 
									
										
											  
											
												[SCSI] target: Add LIO target core v4.0.0-rc6
LIO target is a full featured in-kernel target framework with the
following feature set:
High-performance, non-blocking, multithreaded architecture with SIMD
support.
Advanced SCSI feature set:
    * Persistent Reservations (PRs)
    * Asymmetric Logical Unit Assignment (ALUA)
    * Protocol and intra-nexus multiplexing, load-balancing and failover (MC/S)
    * Full Error Recovery (ERL=0,1,2)
    * Active/active task migration and session continuation (ERL=2)
    * Thin LUN provisioning (UNMAP and WRITE_SAMExx)
Multiprotocol target plugins
Storage media independence:
    * Virtualization of all storage media; transparent mapping of IO to LUNs
    * No hard limits on number of LUNs per Target; maximum LUN size ~750 TB
    * Backstores: SATA, SAS, SCSI, BluRay, DVD, FLASH, USB, ramdisk, etc.
Standards compliance:
    * Full compliance with IETF (RFC 3720)
    * Full implementation of SPC-4 PRs and ALUA
Significant code cleanups done by Christoph Hellwig.
[jejb: fix up for new block bdev exclusive interface. Minor fixes from
 Randy Dunlap and Dan Carpenter.]
Signed-off-by: Nicholas A. Bellinger <nab@linux-iscsi.org>
Signed-off-by: James Bottomley <James.Bottomley@suse.de>
											
										 
											2010-12-17 11:11:26 -08:00
										 |  |  | 	} | 
					
						
							|  |  |  | 	spin_unlock(&deve->ua_lock); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | void core_scsi3_ua_for_check_condition( | 
					
						
							|  |  |  | 	struct se_cmd *cmd, | 
					
						
							|  |  |  | 	u8 *asc, | 
					
						
							|  |  |  | 	u8 *ascq) | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2011-07-19 10:26:37 +00:00
										 |  |  | 	struct se_device *dev = cmd->se_dev; | 
					
						
							| 
									
										
											  
											
												[SCSI] target: Add LIO target core v4.0.0-rc6
LIO target is a full featured in-kernel target framework with the
following feature set:
High-performance, non-blocking, multithreaded architecture with SIMD
support.
Advanced SCSI feature set:
    * Persistent Reservations (PRs)
    * Asymmetric Logical Unit Assignment (ALUA)
    * Protocol and intra-nexus multiplexing, load-balancing and failover (MC/S)
    * Full Error Recovery (ERL=0,1,2)
    * Active/active task migration and session continuation (ERL=2)
    * Thin LUN provisioning (UNMAP and WRITE_SAMExx)
Multiprotocol target plugins
Storage media independence:
    * Virtualization of all storage media; transparent mapping of IO to LUNs
    * No hard limits on number of LUNs per Target; maximum LUN size ~750 TB
    * Backstores: SATA, SAS, SCSI, BluRay, DVD, FLASH, USB, ramdisk, etc.
Standards compliance:
    * Full compliance with IETF (RFC 3720)
    * Full implementation of SPC-4 PRs and ALUA
Significant code cleanups done by Christoph Hellwig.
[jejb: fix up for new block bdev exclusive interface. Minor fixes from
 Randy Dunlap and Dan Carpenter.]
Signed-off-by: Nicholas A. Bellinger <nab@linux-iscsi.org>
Signed-off-by: James Bottomley <James.Bottomley@suse.de>
											
										 
											2010-12-17 11:11:26 -08:00
										 |  |  | 	struct se_dev_entry *deve; | 
					
						
							|  |  |  | 	struct se_session *sess = cmd->se_sess; | 
					
						
							|  |  |  | 	struct se_node_acl *nacl; | 
					
						
							|  |  |  | 	struct se_ua *ua = NULL, *ua_p; | 
					
						
							|  |  |  | 	int head = 1; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-06-08 10:36:43 -07:00
										 |  |  | 	if (!sess) | 
					
						
							| 
									
										
											  
											
												[SCSI] target: Add LIO target core v4.0.0-rc6
LIO target is a full featured in-kernel target framework with the
following feature set:
High-performance, non-blocking, multithreaded architecture with SIMD
support.
Advanced SCSI feature set:
    * Persistent Reservations (PRs)
    * Asymmetric Logical Unit Assignment (ALUA)
    * Protocol and intra-nexus multiplexing, load-balancing and failover (MC/S)
    * Full Error Recovery (ERL=0,1,2)
    * Active/active task migration and session continuation (ERL=2)
    * Thin LUN provisioning (UNMAP and WRITE_SAMExx)
Multiprotocol target plugins
Storage media independence:
    * Virtualization of all storage media; transparent mapping of IO to LUNs
    * No hard limits on number of LUNs per Target; maximum LUN size ~750 TB
    * Backstores: SATA, SAS, SCSI, BluRay, DVD, FLASH, USB, ramdisk, etc.
Standards compliance:
    * Full compliance with IETF (RFC 3720)
    * Full implementation of SPC-4 PRs and ALUA
Significant code cleanups done by Christoph Hellwig.
[jejb: fix up for new block bdev exclusive interface. Minor fixes from
 Randy Dunlap and Dan Carpenter.]
Signed-off-by: Nicholas A. Bellinger <nab@linux-iscsi.org>
Signed-off-by: James Bottomley <James.Bottomley@suse.de>
											
										 
											2010-12-17 11:11:26 -08:00
										 |  |  | 		return; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	nacl = sess->se_node_acl; | 
					
						
							| 
									
										
										
										
											2011-06-08 10:36:43 -07:00
										 |  |  | 	if (!nacl) | 
					
						
							| 
									
										
											  
											
												[SCSI] target: Add LIO target core v4.0.0-rc6
LIO target is a full featured in-kernel target framework with the
following feature set:
High-performance, non-blocking, multithreaded architecture with SIMD
support.
Advanced SCSI feature set:
    * Persistent Reservations (PRs)
    * Asymmetric Logical Unit Assignment (ALUA)
    * Protocol and intra-nexus multiplexing, load-balancing and failover (MC/S)
    * Full Error Recovery (ERL=0,1,2)
    * Active/active task migration and session continuation (ERL=2)
    * Thin LUN provisioning (UNMAP and WRITE_SAMExx)
Multiprotocol target plugins
Storage media independence:
    * Virtualization of all storage media; transparent mapping of IO to LUNs
    * No hard limits on number of LUNs per Target; maximum LUN size ~750 TB
    * Backstores: SATA, SAS, SCSI, BluRay, DVD, FLASH, USB, ramdisk, etc.
Standards compliance:
    * Full compliance with IETF (RFC 3720)
    * Full implementation of SPC-4 PRs and ALUA
Significant code cleanups done by Christoph Hellwig.
[jejb: fix up for new block bdev exclusive interface. Minor fixes from
 Randy Dunlap and Dan Carpenter.]
Signed-off-by: Nicholas A. Bellinger <nab@linux-iscsi.org>
Signed-off-by: James Bottomley <James.Bottomley@suse.de>
											
										 
											2010-12-17 11:11:26 -08:00
										 |  |  | 		return; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	spin_lock_irq(&nacl->device_list_lock); | 
					
						
							| 
									
										
										
										
											2012-03-15 15:05:40 -04:00
										 |  |  | 	deve = nacl->device_list[cmd->orig_fe_lun]; | 
					
						
							| 
									
										
										
										
											2011-06-08 10:36:43 -07:00
										 |  |  | 	if (!atomic_read(&deve->ua_count)) { | 
					
						
							| 
									
										
											  
											
												[SCSI] target: Add LIO target core v4.0.0-rc6
LIO target is a full featured in-kernel target framework with the
following feature set:
High-performance, non-blocking, multithreaded architecture with SIMD
support.
Advanced SCSI feature set:
    * Persistent Reservations (PRs)
    * Asymmetric Logical Unit Assignment (ALUA)
    * Protocol and intra-nexus multiplexing, load-balancing and failover (MC/S)
    * Full Error Recovery (ERL=0,1,2)
    * Active/active task migration and session continuation (ERL=2)
    * Thin LUN provisioning (UNMAP and WRITE_SAMExx)
Multiprotocol target plugins
Storage media independence:
    * Virtualization of all storage media; transparent mapping of IO to LUNs
    * No hard limits on number of LUNs per Target; maximum LUN size ~750 TB
    * Backstores: SATA, SAS, SCSI, BluRay, DVD, FLASH, USB, ramdisk, etc.
Standards compliance:
    * Full compliance with IETF (RFC 3720)
    * Full implementation of SPC-4 PRs and ALUA
Significant code cleanups done by Christoph Hellwig.
[jejb: fix up for new block bdev exclusive interface. Minor fixes from
 Randy Dunlap and Dan Carpenter.]
Signed-off-by: Nicholas A. Bellinger <nab@linux-iscsi.org>
Signed-off-by: James Bottomley <James.Bottomley@suse.de>
											
										 
											2010-12-17 11:11:26 -08:00
										 |  |  | 		spin_unlock_irq(&nacl->device_list_lock); | 
					
						
							|  |  |  | 		return; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	/*
 | 
					
						
							|  |  |  | 	 * The highest priority Unit Attentions are placed at the head of the | 
					
						
							|  |  |  | 	 * struct se_dev_entry->ua_list, and will be returned in CHECK_CONDITION + | 
					
						
							|  |  |  | 	 * sense data for the received CDB. | 
					
						
							|  |  |  | 	 */ | 
					
						
							|  |  |  | 	spin_lock(&deve->ua_lock); | 
					
						
							|  |  |  | 	list_for_each_entry_safe(ua, ua_p, &deve->ua_list, ua_nacl_list) { | 
					
						
							|  |  |  | 		/*
 | 
					
						
							|  |  |  | 		 * For ua_intlck_ctrl code not equal to 00b, only report the | 
					
						
							|  |  |  | 		 * highest priority UNIT_ATTENTION and ASC/ASCQ without | 
					
						
							|  |  |  | 		 * clearing it. | 
					
						
							|  |  |  | 		 */ | 
					
						
							| 
									
										
										
										
											2012-10-08 00:03:19 -04:00
										 |  |  | 		if (dev->dev_attrib.emulate_ua_intlck_ctrl != 0) { | 
					
						
							| 
									
										
											  
											
												[SCSI] target: Add LIO target core v4.0.0-rc6
LIO target is a full featured in-kernel target framework with the
following feature set:
High-performance, non-blocking, multithreaded architecture with SIMD
support.
Advanced SCSI feature set:
    * Persistent Reservations (PRs)
    * Asymmetric Logical Unit Assignment (ALUA)
    * Protocol and intra-nexus multiplexing, load-balancing and failover (MC/S)
    * Full Error Recovery (ERL=0,1,2)
    * Active/active task migration and session continuation (ERL=2)
    * Thin LUN provisioning (UNMAP and WRITE_SAMExx)
Multiprotocol target plugins
Storage media independence:
    * Virtualization of all storage media; transparent mapping of IO to LUNs
    * No hard limits on number of LUNs per Target; maximum LUN size ~750 TB
    * Backstores: SATA, SAS, SCSI, BluRay, DVD, FLASH, USB, ramdisk, etc.
Standards compliance:
    * Full compliance with IETF (RFC 3720)
    * Full implementation of SPC-4 PRs and ALUA
Significant code cleanups done by Christoph Hellwig.
[jejb: fix up for new block bdev exclusive interface. Minor fixes from
 Randy Dunlap and Dan Carpenter.]
Signed-off-by: Nicholas A. Bellinger <nab@linux-iscsi.org>
Signed-off-by: James Bottomley <James.Bottomley@suse.de>
											
										 
											2010-12-17 11:11:26 -08:00
										 |  |  | 			*asc = ua->ua_asc; | 
					
						
							|  |  |  | 			*ascq = ua->ua_ascq; | 
					
						
							|  |  |  | 			break; | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 		/*
 | 
					
						
							|  |  |  | 		 * Otherwise for the default 00b, release the UNIT ATTENTION | 
					
						
							| 
									
										
										
										
											2011-03-30 22:57:33 -03:00
										 |  |  | 		 * condition.  Return the ASC/ASCQ of the highest priority UA | 
					
						
							| 
									
										
											  
											
												[SCSI] target: Add LIO target core v4.0.0-rc6
LIO target is a full featured in-kernel target framework with the
following feature set:
High-performance, non-blocking, multithreaded architecture with SIMD
support.
Advanced SCSI feature set:
    * Persistent Reservations (PRs)
    * Asymmetric Logical Unit Assignment (ALUA)
    * Protocol and intra-nexus multiplexing, load-balancing and failover (MC/S)
    * Full Error Recovery (ERL=0,1,2)
    * Active/active task migration and session continuation (ERL=2)
    * Thin LUN provisioning (UNMAP and WRITE_SAMExx)
Multiprotocol target plugins
Storage media independence:
    * Virtualization of all storage media; transparent mapping of IO to LUNs
    * No hard limits on number of LUNs per Target; maximum LUN size ~750 TB
    * Backstores: SATA, SAS, SCSI, BluRay, DVD, FLASH, USB, ramdisk, etc.
Standards compliance:
    * Full compliance with IETF (RFC 3720)
    * Full implementation of SPC-4 PRs and ALUA
Significant code cleanups done by Christoph Hellwig.
[jejb: fix up for new block bdev exclusive interface. Minor fixes from
 Randy Dunlap and Dan Carpenter.]
Signed-off-by: Nicholas A. Bellinger <nab@linux-iscsi.org>
Signed-off-by: James Bottomley <James.Bottomley@suse.de>
											
										 
											2010-12-17 11:11:26 -08:00
										 |  |  | 		 * (head of the list) in the outgoing CHECK_CONDITION + sense. | 
					
						
							|  |  |  | 		 */ | 
					
						
							|  |  |  | 		if (head) { | 
					
						
							|  |  |  | 			*asc = ua->ua_asc; | 
					
						
							|  |  |  | 			*ascq = ua->ua_ascq; | 
					
						
							|  |  |  | 			head = 0; | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 		list_del(&ua->ua_nacl_list); | 
					
						
							|  |  |  | 		kmem_cache_free(se_ua_cache, ua); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		atomic_dec(&deve->ua_count); | 
					
						
							| 
									
										
										
										
											2014-03-17 18:06:10 +01:00
										 |  |  | 		smp_mb__after_atomic(); | 
					
						
							| 
									
										
											  
											
												[SCSI] target: Add LIO target core v4.0.0-rc6
LIO target is a full featured in-kernel target framework with the
following feature set:
High-performance, non-blocking, multithreaded architecture with SIMD
support.
Advanced SCSI feature set:
    * Persistent Reservations (PRs)
    * Asymmetric Logical Unit Assignment (ALUA)
    * Protocol and intra-nexus multiplexing, load-balancing and failover (MC/S)
    * Full Error Recovery (ERL=0,1,2)
    * Active/active task migration and session continuation (ERL=2)
    * Thin LUN provisioning (UNMAP and WRITE_SAMExx)
Multiprotocol target plugins
Storage media independence:
    * Virtualization of all storage media; transparent mapping of IO to LUNs
    * No hard limits on number of LUNs per Target; maximum LUN size ~750 TB
    * Backstores: SATA, SAS, SCSI, BluRay, DVD, FLASH, USB, ramdisk, etc.
Standards compliance:
    * Full compliance with IETF (RFC 3720)
    * Full implementation of SPC-4 PRs and ALUA
Significant code cleanups done by Christoph Hellwig.
[jejb: fix up for new block bdev exclusive interface. Minor fixes from
 Randy Dunlap and Dan Carpenter.]
Signed-off-by: Nicholas A. Bellinger <nab@linux-iscsi.org>
Signed-off-by: James Bottomley <James.Bottomley@suse.de>
											
										 
											2010-12-17 11:11:26 -08:00
										 |  |  | 	} | 
					
						
							|  |  |  | 	spin_unlock(&deve->ua_lock); | 
					
						
							|  |  |  | 	spin_unlock_irq(&nacl->device_list_lock); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-06-08 10:36:43 -07:00
										 |  |  | 	pr_debug("[%s]: %s UNIT ATTENTION condition with" | 
					
						
							| 
									
										
											  
											
												[SCSI] target: Add LIO target core v4.0.0-rc6
LIO target is a full featured in-kernel target framework with the
following feature set:
High-performance, non-blocking, multithreaded architecture with SIMD
support.
Advanced SCSI feature set:
    * Persistent Reservations (PRs)
    * Asymmetric Logical Unit Assignment (ALUA)
    * Protocol and intra-nexus multiplexing, load-balancing and failover (MC/S)
    * Full Error Recovery (ERL=0,1,2)
    * Active/active task migration and session continuation (ERL=2)
    * Thin LUN provisioning (UNMAP and WRITE_SAMExx)
Multiprotocol target plugins
Storage media independence:
    * Virtualization of all storage media; transparent mapping of IO to LUNs
    * No hard limits on number of LUNs per Target; maximum LUN size ~750 TB
    * Backstores: SATA, SAS, SCSI, BluRay, DVD, FLASH, USB, ramdisk, etc.
Standards compliance:
    * Full compliance with IETF (RFC 3720)
    * Full implementation of SPC-4 PRs and ALUA
Significant code cleanups done by Christoph Hellwig.
[jejb: fix up for new block bdev exclusive interface. Minor fixes from
 Randy Dunlap and Dan Carpenter.]
Signed-off-by: Nicholas A. Bellinger <nab@linux-iscsi.org>
Signed-off-by: James Bottomley <James.Bottomley@suse.de>
											
										 
											2010-12-17 11:11:26 -08:00
										 |  |  | 		" INTLCK_CTRL: %d, mapped LUN: %u, got CDB: 0x%02x" | 
					
						
							|  |  |  | 		" reported ASC: 0x%02x, ASCQ: 0x%02x\n", | 
					
						
							| 
									
										
										
										
											2011-07-19 08:55:10 +00:00
										 |  |  | 		nacl->se_tpg->se_tpg_tfo->get_fabric_name(), | 
					
						
							| 
									
										
										
										
											2012-10-08 00:03:19 -04:00
										 |  |  | 		(dev->dev_attrib.emulate_ua_intlck_ctrl != 0) ? "Reporting" : | 
					
						
							|  |  |  | 		"Releasing", dev->dev_attrib.emulate_ua_intlck_ctrl, | 
					
						
							| 
									
										
										
										
											2011-05-02 17:12:10 -07:00
										 |  |  | 		cmd->orig_fe_lun, cmd->t_task_cdb[0], *asc, *ascq); | 
					
						
							| 
									
										
											  
											
												[SCSI] target: Add LIO target core v4.0.0-rc6
LIO target is a full featured in-kernel target framework with the
following feature set:
High-performance, non-blocking, multithreaded architecture with SIMD
support.
Advanced SCSI feature set:
    * Persistent Reservations (PRs)
    * Asymmetric Logical Unit Assignment (ALUA)
    * Protocol and intra-nexus multiplexing, load-balancing and failover (MC/S)
    * Full Error Recovery (ERL=0,1,2)
    * Active/active task migration and session continuation (ERL=2)
    * Thin LUN provisioning (UNMAP and WRITE_SAMExx)
Multiprotocol target plugins
Storage media independence:
    * Virtualization of all storage media; transparent mapping of IO to LUNs
    * No hard limits on number of LUNs per Target; maximum LUN size ~750 TB
    * Backstores: SATA, SAS, SCSI, BluRay, DVD, FLASH, USB, ramdisk, etc.
Standards compliance:
    * Full compliance with IETF (RFC 3720)
    * Full implementation of SPC-4 PRs and ALUA
Significant code cleanups done by Christoph Hellwig.
[jejb: fix up for new block bdev exclusive interface. Minor fixes from
 Randy Dunlap and Dan Carpenter.]
Signed-off-by: Nicholas A. Bellinger <nab@linux-iscsi.org>
Signed-off-by: James Bottomley <James.Bottomley@suse.de>
											
										 
											2010-12-17 11:11:26 -08:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | int core_scsi3_ua_clear_for_request_sense( | 
					
						
							|  |  |  | 	struct se_cmd *cmd, | 
					
						
							|  |  |  | 	u8 *asc, | 
					
						
							|  |  |  | 	u8 *ascq) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	struct se_dev_entry *deve; | 
					
						
							|  |  |  | 	struct se_session *sess = cmd->se_sess; | 
					
						
							|  |  |  | 	struct se_node_acl *nacl; | 
					
						
							|  |  |  | 	struct se_ua *ua = NULL, *ua_p; | 
					
						
							|  |  |  | 	int head = 1; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-06-08 10:36:43 -07:00
										 |  |  | 	if (!sess) | 
					
						
							| 
									
										
										
										
											2011-07-19 08:55:10 +00:00
										 |  |  | 		return -EINVAL; | 
					
						
							| 
									
										
											  
											
												[SCSI] target: Add LIO target core v4.0.0-rc6
LIO target is a full featured in-kernel target framework with the
following feature set:
High-performance, non-blocking, multithreaded architecture with SIMD
support.
Advanced SCSI feature set:
    * Persistent Reservations (PRs)
    * Asymmetric Logical Unit Assignment (ALUA)
    * Protocol and intra-nexus multiplexing, load-balancing and failover (MC/S)
    * Full Error Recovery (ERL=0,1,2)
    * Active/active task migration and session continuation (ERL=2)
    * Thin LUN provisioning (UNMAP and WRITE_SAMExx)
Multiprotocol target plugins
Storage media independence:
    * Virtualization of all storage media; transparent mapping of IO to LUNs
    * No hard limits on number of LUNs per Target; maximum LUN size ~750 TB
    * Backstores: SATA, SAS, SCSI, BluRay, DVD, FLASH, USB, ramdisk, etc.
Standards compliance:
    * Full compliance with IETF (RFC 3720)
    * Full implementation of SPC-4 PRs and ALUA
Significant code cleanups done by Christoph Hellwig.
[jejb: fix up for new block bdev exclusive interface. Minor fixes from
 Randy Dunlap and Dan Carpenter.]
Signed-off-by: Nicholas A. Bellinger <nab@linux-iscsi.org>
Signed-off-by: James Bottomley <James.Bottomley@suse.de>
											
										 
											2010-12-17 11:11:26 -08:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	nacl = sess->se_node_acl; | 
					
						
							| 
									
										
										
										
											2011-06-08 10:36:43 -07:00
										 |  |  | 	if (!nacl) | 
					
						
							| 
									
										
										
										
											2011-07-19 08:55:10 +00:00
										 |  |  | 		return -EINVAL; | 
					
						
							| 
									
										
											  
											
												[SCSI] target: Add LIO target core v4.0.0-rc6
LIO target is a full featured in-kernel target framework with the
following feature set:
High-performance, non-blocking, multithreaded architecture with SIMD
support.
Advanced SCSI feature set:
    * Persistent Reservations (PRs)
    * Asymmetric Logical Unit Assignment (ALUA)
    * Protocol and intra-nexus multiplexing, load-balancing and failover (MC/S)
    * Full Error Recovery (ERL=0,1,2)
    * Active/active task migration and session continuation (ERL=2)
    * Thin LUN provisioning (UNMAP and WRITE_SAMExx)
Multiprotocol target plugins
Storage media independence:
    * Virtualization of all storage media; transparent mapping of IO to LUNs
    * No hard limits on number of LUNs per Target; maximum LUN size ~750 TB
    * Backstores: SATA, SAS, SCSI, BluRay, DVD, FLASH, USB, ramdisk, etc.
Standards compliance:
    * Full compliance with IETF (RFC 3720)
    * Full implementation of SPC-4 PRs and ALUA
Significant code cleanups done by Christoph Hellwig.
[jejb: fix up for new block bdev exclusive interface. Minor fixes from
 Randy Dunlap and Dan Carpenter.]
Signed-off-by: Nicholas A. Bellinger <nab@linux-iscsi.org>
Signed-off-by: James Bottomley <James.Bottomley@suse.de>
											
										 
											2010-12-17 11:11:26 -08:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	spin_lock_irq(&nacl->device_list_lock); | 
					
						
							| 
									
										
										
										
											2012-03-15 15:05:40 -04:00
										 |  |  | 	deve = nacl->device_list[cmd->orig_fe_lun]; | 
					
						
							| 
									
										
										
										
											2011-06-08 10:36:43 -07:00
										 |  |  | 	if (!atomic_read(&deve->ua_count)) { | 
					
						
							| 
									
										
											  
											
												[SCSI] target: Add LIO target core v4.0.0-rc6
LIO target is a full featured in-kernel target framework with the
following feature set:
High-performance, non-blocking, multithreaded architecture with SIMD
support.
Advanced SCSI feature set:
    * Persistent Reservations (PRs)
    * Asymmetric Logical Unit Assignment (ALUA)
    * Protocol and intra-nexus multiplexing, load-balancing and failover (MC/S)
    * Full Error Recovery (ERL=0,1,2)
    * Active/active task migration and session continuation (ERL=2)
    * Thin LUN provisioning (UNMAP and WRITE_SAMExx)
Multiprotocol target plugins
Storage media independence:
    * Virtualization of all storage media; transparent mapping of IO to LUNs
    * No hard limits on number of LUNs per Target; maximum LUN size ~750 TB
    * Backstores: SATA, SAS, SCSI, BluRay, DVD, FLASH, USB, ramdisk, etc.
Standards compliance:
    * Full compliance with IETF (RFC 3720)
    * Full implementation of SPC-4 PRs and ALUA
Significant code cleanups done by Christoph Hellwig.
[jejb: fix up for new block bdev exclusive interface. Minor fixes from
 Randy Dunlap and Dan Carpenter.]
Signed-off-by: Nicholas A. Bellinger <nab@linux-iscsi.org>
Signed-off-by: James Bottomley <James.Bottomley@suse.de>
											
										 
											2010-12-17 11:11:26 -08:00
										 |  |  | 		spin_unlock_irq(&nacl->device_list_lock); | 
					
						
							| 
									
										
										
										
											2011-07-19 08:55:10 +00:00
										 |  |  | 		return -EPERM; | 
					
						
							| 
									
										
											  
											
												[SCSI] target: Add LIO target core v4.0.0-rc6
LIO target is a full featured in-kernel target framework with the
following feature set:
High-performance, non-blocking, multithreaded architecture with SIMD
support.
Advanced SCSI feature set:
    * Persistent Reservations (PRs)
    * Asymmetric Logical Unit Assignment (ALUA)
    * Protocol and intra-nexus multiplexing, load-balancing and failover (MC/S)
    * Full Error Recovery (ERL=0,1,2)
    * Active/active task migration and session continuation (ERL=2)
    * Thin LUN provisioning (UNMAP and WRITE_SAMExx)
Multiprotocol target plugins
Storage media independence:
    * Virtualization of all storage media; transparent mapping of IO to LUNs
    * No hard limits on number of LUNs per Target; maximum LUN size ~750 TB
    * Backstores: SATA, SAS, SCSI, BluRay, DVD, FLASH, USB, ramdisk, etc.
Standards compliance:
    * Full compliance with IETF (RFC 3720)
    * Full implementation of SPC-4 PRs and ALUA
Significant code cleanups done by Christoph Hellwig.
[jejb: fix up for new block bdev exclusive interface. Minor fixes from
 Randy Dunlap and Dan Carpenter.]
Signed-off-by: Nicholas A. Bellinger <nab@linux-iscsi.org>
Signed-off-by: James Bottomley <James.Bottomley@suse.de>
											
										 
											2010-12-17 11:11:26 -08:00
										 |  |  | 	} | 
					
						
							|  |  |  | 	/*
 | 
					
						
							|  |  |  | 	 * The highest priority Unit Attentions are placed at the head of the | 
					
						
							|  |  |  | 	 * struct se_dev_entry->ua_list.  The First (and hence highest priority) | 
					
						
							|  |  |  | 	 * ASC/ASCQ will be returned in REQUEST_SENSE payload data for the | 
					
						
							|  |  |  | 	 * matching struct se_lun. | 
					
						
							|  |  |  | 	 * | 
					
						
							|  |  |  | 	 * Once the returning ASC/ASCQ values are set, we go ahead and | 
					
						
							| 
									
										
										
										
											2011-03-30 22:57:33 -03:00
										 |  |  | 	 * release all of the Unit Attention conditions for the associated | 
					
						
							| 
									
										
											  
											
												[SCSI] target: Add LIO target core v4.0.0-rc6
LIO target is a full featured in-kernel target framework with the
following feature set:
High-performance, non-blocking, multithreaded architecture with SIMD
support.
Advanced SCSI feature set:
    * Persistent Reservations (PRs)
    * Asymmetric Logical Unit Assignment (ALUA)
    * Protocol and intra-nexus multiplexing, load-balancing and failover (MC/S)
    * Full Error Recovery (ERL=0,1,2)
    * Active/active task migration and session continuation (ERL=2)
    * Thin LUN provisioning (UNMAP and WRITE_SAMExx)
Multiprotocol target plugins
Storage media independence:
    * Virtualization of all storage media; transparent mapping of IO to LUNs
    * No hard limits on number of LUNs per Target; maximum LUN size ~750 TB
    * Backstores: SATA, SAS, SCSI, BluRay, DVD, FLASH, USB, ramdisk, etc.
Standards compliance:
    * Full compliance with IETF (RFC 3720)
    * Full implementation of SPC-4 PRs and ALUA
Significant code cleanups done by Christoph Hellwig.
[jejb: fix up for new block bdev exclusive interface. Minor fixes from
 Randy Dunlap and Dan Carpenter.]
Signed-off-by: Nicholas A. Bellinger <nab@linux-iscsi.org>
Signed-off-by: James Bottomley <James.Bottomley@suse.de>
											
										 
											2010-12-17 11:11:26 -08:00
										 |  |  | 	 * struct se_lun. | 
					
						
							|  |  |  | 	 */ | 
					
						
							|  |  |  | 	spin_lock(&deve->ua_lock); | 
					
						
							|  |  |  | 	list_for_each_entry_safe(ua, ua_p, &deve->ua_list, ua_nacl_list) { | 
					
						
							|  |  |  | 		if (head) { | 
					
						
							|  |  |  | 			*asc = ua->ua_asc; | 
					
						
							|  |  |  | 			*ascq = ua->ua_ascq; | 
					
						
							|  |  |  | 			head = 0; | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 		list_del(&ua->ua_nacl_list); | 
					
						
							|  |  |  | 		kmem_cache_free(se_ua_cache, ua); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		atomic_dec(&deve->ua_count); | 
					
						
							| 
									
										
										
										
											2014-03-17 18:06:10 +01:00
										 |  |  | 		smp_mb__after_atomic(); | 
					
						
							| 
									
										
											  
											
												[SCSI] target: Add LIO target core v4.0.0-rc6
LIO target is a full featured in-kernel target framework with the
following feature set:
High-performance, non-blocking, multithreaded architecture with SIMD
support.
Advanced SCSI feature set:
    * Persistent Reservations (PRs)
    * Asymmetric Logical Unit Assignment (ALUA)
    * Protocol and intra-nexus multiplexing, load-balancing and failover (MC/S)
    * Full Error Recovery (ERL=0,1,2)
    * Active/active task migration and session continuation (ERL=2)
    * Thin LUN provisioning (UNMAP and WRITE_SAMExx)
Multiprotocol target plugins
Storage media independence:
    * Virtualization of all storage media; transparent mapping of IO to LUNs
    * No hard limits on number of LUNs per Target; maximum LUN size ~750 TB
    * Backstores: SATA, SAS, SCSI, BluRay, DVD, FLASH, USB, ramdisk, etc.
Standards compliance:
    * Full compliance with IETF (RFC 3720)
    * Full implementation of SPC-4 PRs and ALUA
Significant code cleanups done by Christoph Hellwig.
[jejb: fix up for new block bdev exclusive interface. Minor fixes from
 Randy Dunlap and Dan Carpenter.]
Signed-off-by: Nicholas A. Bellinger <nab@linux-iscsi.org>
Signed-off-by: James Bottomley <James.Bottomley@suse.de>
											
										 
											2010-12-17 11:11:26 -08:00
										 |  |  | 	} | 
					
						
							|  |  |  | 	spin_unlock(&deve->ua_lock); | 
					
						
							|  |  |  | 	spin_unlock_irq(&nacl->device_list_lock); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-06-08 10:36:43 -07:00
										 |  |  | 	pr_debug("[%s]: Released UNIT ATTENTION condition, mapped" | 
					
						
							| 
									
										
											  
											
												[SCSI] target: Add LIO target core v4.0.0-rc6
LIO target is a full featured in-kernel target framework with the
following feature set:
High-performance, non-blocking, multithreaded architecture with SIMD
support.
Advanced SCSI feature set:
    * Persistent Reservations (PRs)
    * Asymmetric Logical Unit Assignment (ALUA)
    * Protocol and intra-nexus multiplexing, load-balancing and failover (MC/S)
    * Full Error Recovery (ERL=0,1,2)
    * Active/active task migration and session continuation (ERL=2)
    * Thin LUN provisioning (UNMAP and WRITE_SAMExx)
Multiprotocol target plugins
Storage media independence:
    * Virtualization of all storage media; transparent mapping of IO to LUNs
    * No hard limits on number of LUNs per Target; maximum LUN size ~750 TB
    * Backstores: SATA, SAS, SCSI, BluRay, DVD, FLASH, USB, ramdisk, etc.
Standards compliance:
    * Full compliance with IETF (RFC 3720)
    * Full implementation of SPC-4 PRs and ALUA
Significant code cleanups done by Christoph Hellwig.
[jejb: fix up for new block bdev exclusive interface. Minor fixes from
 Randy Dunlap and Dan Carpenter.]
Signed-off-by: Nicholas A. Bellinger <nab@linux-iscsi.org>
Signed-off-by: James Bottomley <James.Bottomley@suse.de>
											
										 
											2010-12-17 11:11:26 -08:00
										 |  |  | 		" LUN: %u, got REQUEST_SENSE reported ASC: 0x%02x," | 
					
						
							| 
									
										
										
										
											2011-07-19 08:55:10 +00:00
										 |  |  | 		" ASCQ: 0x%02x\n", nacl->se_tpg->se_tpg_tfo->get_fabric_name(), | 
					
						
							| 
									
										
											  
											
												[SCSI] target: Add LIO target core v4.0.0-rc6
LIO target is a full featured in-kernel target framework with the
following feature set:
High-performance, non-blocking, multithreaded architecture with SIMD
support.
Advanced SCSI feature set:
    * Persistent Reservations (PRs)
    * Asymmetric Logical Unit Assignment (ALUA)
    * Protocol and intra-nexus multiplexing, load-balancing and failover (MC/S)
    * Full Error Recovery (ERL=0,1,2)
    * Active/active task migration and session continuation (ERL=2)
    * Thin LUN provisioning (UNMAP and WRITE_SAMExx)
Multiprotocol target plugins
Storage media independence:
    * Virtualization of all storage media; transparent mapping of IO to LUNs
    * No hard limits on number of LUNs per Target; maximum LUN size ~750 TB
    * Backstores: SATA, SAS, SCSI, BluRay, DVD, FLASH, USB, ramdisk, etc.
Standards compliance:
    * Full compliance with IETF (RFC 3720)
    * Full implementation of SPC-4 PRs and ALUA
Significant code cleanups done by Christoph Hellwig.
[jejb: fix up for new block bdev exclusive interface. Minor fixes from
 Randy Dunlap and Dan Carpenter.]
Signed-off-by: Nicholas A. Bellinger <nab@linux-iscsi.org>
Signed-off-by: James Bottomley <James.Bottomley@suse.de>
											
										 
											2010-12-17 11:11:26 -08:00
										 |  |  | 		cmd->orig_fe_lun, *asc, *ascq); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-07-19 08:55:10 +00:00
										 |  |  | 	return (head) ? -EPERM : 0; | 
					
						
							| 
									
										
											  
											
												[SCSI] target: Add LIO target core v4.0.0-rc6
LIO target is a full featured in-kernel target framework with the
following feature set:
High-performance, non-blocking, multithreaded architecture with SIMD
support.
Advanced SCSI feature set:
    * Persistent Reservations (PRs)
    * Asymmetric Logical Unit Assignment (ALUA)
    * Protocol and intra-nexus multiplexing, load-balancing and failover (MC/S)
    * Full Error Recovery (ERL=0,1,2)
    * Active/active task migration and session continuation (ERL=2)
    * Thin LUN provisioning (UNMAP and WRITE_SAMExx)
Multiprotocol target plugins
Storage media independence:
    * Virtualization of all storage media; transparent mapping of IO to LUNs
    * No hard limits on number of LUNs per Target; maximum LUN size ~750 TB
    * Backstores: SATA, SAS, SCSI, BluRay, DVD, FLASH, USB, ramdisk, etc.
Standards compliance:
    * Full compliance with IETF (RFC 3720)
    * Full implementation of SPC-4 PRs and ALUA
Significant code cleanups done by Christoph Hellwig.
[jejb: fix up for new block bdev exclusive interface. Minor fixes from
 Randy Dunlap and Dan Carpenter.]
Signed-off-by: Nicholas A. Bellinger <nab@linux-iscsi.org>
Signed-off-by: James Bottomley <James.Bottomley@suse.de>
											
										 
											2010-12-17 11:11:26 -08:00
										 |  |  | } |