diff options
author | Martin Peschke <mpeschke@linux.vnet.ibm.com> | 2013-04-26 18:13:54 +0400 |
---|---|---|
committer | James Bottomley <JBottomley@Parallels.com> | 2013-06-01 03:32:38 +0400 |
commit | 663e0890e31cb85f0cca5ac1faaee0d2d52880b5 (patch) | |
tree | 455fd8bcdec8cc9cff21caad338e983bad074974 /drivers/s390/scsi/zfcp_erp.c | |
parent | bf3ea3aec568a9f10a9fea3f3f0a290a94d5cc12 (diff) | |
download | linux-663e0890e31cb85f0cca5ac1faaee0d2d52880b5.tar.xz |
[SCSI] zfcp: remove access control tables interface
This patch removes an interface that was used to manage access control
tables within the HBA. The patch consequently removes the handling
for conditions related to those access control tables, too.
That initiator-based access control feature was only needed until the
introduction of NPIV and was withdrawn with z10 years ago.
It's time to cleanup the corresponding device driver code.
Signed-off-by: Martin Peschke <mpeschke@linux.vnet.ibm.com>
Signed-off-by: Steffen Maier <maier@linux.vnet.ibm.com>
Signed-off-by: James Bottomley <JBottomley@Parallels.com>
Diffstat (limited to 'drivers/s390/scsi/zfcp_erp.c')
-rw-r--r-- | drivers/s390/scsi/zfcp_erp.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/drivers/s390/scsi/zfcp_erp.c b/drivers/s390/scsi/zfcp_erp.c index 4133ab6e20f1..1d4c8fe72752 100644 --- a/drivers/s390/scsi/zfcp_erp.c +++ b/drivers/s390/scsi/zfcp_erp.c @@ -950,8 +950,7 @@ static void zfcp_erp_lun_strategy_clearstati(struct scsi_device *sdev) { struct zfcp_scsi_dev *zfcp_sdev = sdev_to_zfcp(sdev); - atomic_clear_mask(ZFCP_STATUS_COMMON_ACCESS_DENIED | - ZFCP_STATUS_LUN_SHARED | ZFCP_STATUS_LUN_READONLY, + atomic_clear_mask(ZFCP_STATUS_COMMON_ACCESS_DENIED, &zfcp_sdev->status); } |