Commit 0bbe3cb0 authored by Changpeng Liu's avatar Changpeng Liu Committed by Tomasz Zawadzki
Browse files

scsi: use notice log for unsupported VPD page



Very new Linux kernel sends VPD 0xb9 (concurrent positioning ranges)
even SPDK doesn't report this page is supported, we can see this
error log in iSCSI and vhost-scsi target, here use a notice log
instead.

Change-Id: I26fd2afaee2152ffbfea6ef4e0f254538360b626
Signed-off-by: default avatarChangpeng Liu <changpeng.liu@intel.com>
Reviewed-on: https://review.spdk.io/gerrit/c/spdk/spdk/+/19714


Tested-by: default avatarSPDK CI Jenkins <sys_sgci@intel.com>
Community-CI: Mellanox Build Bot
Reviewed-by: default avatarJim Harris <jim.harris@gmail.com>
Reviewed-by: default avatarTomasz Zawadzki <tomasz.zawadzki@intel.com>
parent 9943e42a
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -615,7 +615,7 @@ bdev_scsi_inquiry(struct spdk_bdev *bdev, struct spdk_scsi_task *task,
			if (pc >= 0xc0 && pc <= 0xff) {
				SPDK_DEBUGLOG(scsi, "Vendor specific INQUIRY VPD page 0x%x\n", pc);
			} else {
				SPDK_ERRLOG("unsupported INQUIRY VPD page 0x%x\n", pc);
				SPDK_NOTICELOG("unsupported INQUIRY VPD page 0x%x\n", pc);
			}
			goto inq_error;
		}