mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/next/linux-next.git
synced 2025-01-11 08:18:47 +00:00
[SCSI] scsi_dh: Do not use scsilun in rdac hardware handler
RDAC storage controller doesn't seem to use the scsilun format. It uses only the last byte for LUN. Signed-off-by: Chandra Seetharaman <sekharan@us.ibm.com> Signed-off-by: James Bottomley <James.Bottomley@HansenPartnership.com>
This commit is contained in:
parent
24541f99ba
commit
8479fca119
@ -376,7 +376,7 @@ static int get_lun(struct scsi_device *sdev, struct rdac_dh_data *h)
|
|||||||
if (inqp->page_id[0] != 'e' || inqp->page_id[1] != 'd' ||
|
if (inqp->page_id[0] != 'e' || inqp->page_id[1] != 'd' ||
|
||||||
inqp->page_id[2] != 'i' || inqp->page_id[3] != 'd')
|
inqp->page_id[2] != 'i' || inqp->page_id[3] != 'd')
|
||||||
return SCSI_DH_NOSYS;
|
return SCSI_DH_NOSYS;
|
||||||
h->lun = scsilun_to_int((struct scsi_lun *)inqp->lun);
|
h->lun = inqp->lun[7]; /* Uses only the last byte */
|
||||||
}
|
}
|
||||||
return err;
|
return err;
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user