Skip to content

Commit

Permalink
[SCSI] Don't attempt to send extended INQUIRY command if skip_vpd_pag…
Browse files Browse the repository at this point in the history
…es is set

If a device has the skip_vpd_pages flag set we should simply fail the
scsi_get_vpd_page() call.

Signed-off-by: Martin K. Petersen <[email protected]>
Acked-by: Alan Stern <[email protected]>
Tested-by: Stuart Foster <[email protected]>
Cc: [email protected]
Signed-off-by: James Bottomley <[email protected]>
  • Loading branch information
martinkpetersen authored and James Bottomley committed Aug 2, 2013
1 parent e09056b commit 7562523
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions drivers/scsi/scsi.c
Original file line number Diff line number Diff line change
Expand Up @@ -1031,6 +1031,9 @@ int scsi_get_vpd_page(struct scsi_device *sdev, u8 page, unsigned char *buf,
{
int i, result;

if (sdev->skip_vpd_pages)
goto fail;

/* Ask for all the pages supported by this device */
result = scsi_vpd_inquiry(sdev, buf, 0, buf_len);
if (result)
Expand Down

0 comments on commit 7562523

Please sign in to comment.