diff options
| author | James Bottomley <jejb@mulgrave.(none)> | 2005-08-09 12:57:11 -0500 | 
|---|---|---|
| committer | James Bottomley <jejb@mulgrave.(none)> | 2005-08-12 11:40:50 -0500 | 
| commit | 507caac75e86bd041c5462e5e988fb7138e21d79 (patch) | |
| tree | f06bcce2cd9230e19fe20bc0c884f03fc0779752 /drivers/scsi/scsi_devinfo.c | |
| parent | a80b3424d9fde3c4b6d62adaf6dda78128dc5c27 (diff) | |
| download | olio-linux-3.10-507caac75e86bd041c5462e5e988fb7138e21d79.tar.xz olio-linux-3.10-507caac75e86bd041c5462e5e988fb7138e21d79.zip  | |
[SCSI] Make the HSG80 a REPORTLUN2 device
From: 	Steve Wilcox <spwilcox@att.com>
In order to properly report LUN's > 7, the DEC HSG80 definition in
scsi_devinfo.c needs to include BLIST_REPORTLUN2 rather than
BLIST_SPARSELUN.  I've tested this change with several HSG firmware
revisions and with both Emulex and Qlogic HBA's.
Signed-off-by: James Bottomley <James.Bottomley@SteelEye.com>
Diffstat (limited to 'drivers/scsi/scsi_devinfo.c')
| -rw-r--r-- | drivers/scsi/scsi_devinfo.c | 2 | 
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/scsi/scsi_devinfo.c b/drivers/scsi/scsi_devinfo.c index d9963a848d9..b444ec2e1c6 100644 --- a/drivers/scsi/scsi_devinfo.c +++ b/drivers/scsi/scsi_devinfo.c @@ -136,7 +136,7 @@ static struct {  	{"COMPAQ", "MSA1000 VOLUME", NULL, BLIST_SPARSELUN | BLIST_NOSTARTONADD},  	{"COMPAQ", "HSV110", NULL, BLIST_REPORTLUN2 | BLIST_NOSTARTONADD},  	{"DDN", "SAN DataDirector", "*", BLIST_SPARSELUN}, -	{"DEC", "HSG80", NULL, BLIST_SPARSELUN | BLIST_NOSTARTONADD}, +	{"DEC", "HSG80", NULL, BLIST_REPORTLUN2 | BLIST_NOSTARTONADD},  	{"DELL", "PV660F", NULL, BLIST_SPARSELUN},  	{"DELL", "PV660F   PSEUDO", NULL, BLIST_SPARSELUN},  	{"DELL", "PSEUDO DEVICE .", NULL, BLIST_SPARSELUN},	/* Dell PV 530F */  |