Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 7562523e authored by Martin K. Petersen's avatar Martin K. Petersen Committed by James Bottomley
Browse files

[SCSI] Don't attempt to send extended INQUIRY command if skip_vpd_pages 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: default avatarMartin K. Petersen <martin.petersen@oracle.com>
Acked-by: default avatarAlan Stern <stern@rowland.harvard.edu>
Tested-by: default avatarStuart Foster <smf.linux@ntlworld.com>
Cc: stable@vger.kernel.org
Signed-off-by: default avatarJames Bottomley <JBottomley@Parallels.com>
parent e09056b2
Loading
Loading
Loading
Loading
+3 −0
Original line number Original line Diff line number Diff line
@@ -1031,6 +1031,9 @@ int scsi_get_vpd_page(struct scsi_device *sdev, u8 page, unsigned char *buf,
{
{
	int i, result;
	int i, result;


	if (sdev->skip_vpd_pages)
		goto fail;

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