diff --git a/[refs] b/[refs] index 533302a857d0..2364ea5f46c5 100644 --- a/[refs] +++ b/[refs] @@ -1,2 +1,2 @@ --- -refs/heads/master: be1dd78de5686c062bb3103f9e86d444a10ed783 +refs/heads/master: 3f0bc3b331a371392bb64c5b211b60ec84d5a444 diff --git a/trunk/drivers/scsi/scsi_debug.c b/trunk/drivers/scsi/scsi_debug.c index e4ba924c303d..255570dd7c36 100644 --- a/trunk/drivers/scsi/scsi_debug.c +++ b/trunk/drivers/scsi/scsi_debug.c @@ -780,7 +780,7 @@ static int inquiry_evpd_b1(unsigned char *arr) /* Logical block provisioning VPD page (SBC-3) */ static int inquiry_evpd_b2(unsigned char *arr) { - memset(arr, 0, 0x8); + memset(arr, 0, 0x4); arr[0] = 0; /* threshold exponent */ if (scsi_debug_lbpu) @@ -795,7 +795,7 @@ static int inquiry_evpd_b2(unsigned char *arr) if (scsi_debug_lbprz) arr[1] |= 1 << 2; - return 0x8; + return 0x4; } #define SDEBUG_LONG_INQ_SZ 96