From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:41853) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1behqf-0004FT-0U for qemu-devel@nongnu.org; Tue, 30 Aug 2016 08:09:01 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1behqc-0004SW-NJ for qemu-devel@nongnu.org; Tue, 30 Aug 2016 08:08:59 -0400 From: Markus Armbruster References: <1472457138-23386-1-git-send-email-ronyweng@synology.com> <7e0e5c6b-dab7-7b87-2f4d-e07c3b64cef5@redhat.com> Date: Tue, 30 Aug 2016 14:08:55 +0200 In-Reply-To: <7e0e5c6b-dab7-7b87-2f4d-e07c3b64cef5@redhat.com> (Paolo Bonzini's message of "Mon, 29 Aug 2016 10:25:08 +0200") Message-ID: <8737lma27c.fsf@dusky.pond.sub.org> MIME-Version: 1.0 Content-Type: text/plain Subject: Re: [Qemu-devel] [PATCH] Chage disk serial length from 20 to 36 List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: Paolo Bonzini Cc: ronyweng@synology.com, qemu-devel@nongnu.org, qemu-stable@nongnu.org Paolo Bonzini writes: > On 29/08/2016 09:52, ronyweng@synology.com wrote: >> From: ronyweng >> >> Openstack Cinder assigns volume a 36 characters uuid as serial. >> Qemu will shrinks the uuid to 20 characters, >> missmatch with original uuid. >> >> Signed-off-by: Rony Weng >> --- >> hw/scsi/scsi-disk.c | 4 ++-- >> 1 file changed, 2 insertions(+), 2 deletions(-) >> >> diff --git a/hw/scsi/scsi-disk.c b/hw/scsi/scsi-disk.c >> index 836a155..0e1bb68 100644 >> --- a/hw/scsi/scsi-disk.c >> +++ b/hw/scsi/scsi-disk.c >> @@ -599,8 +599,8 @@ static int scsi_disk_emulate_inquiry(SCSIRequest *req, uint8_t *outbuf) >> } >> >> l = strlen(s->serial); >> - if (l > 20) { >> - l = 20; >> + if (l > 36) { >> + l = 36; >> } >> >> DPRINTF("Inquiry EVPD[Serial number] " >> > > Cc: qemu-stable@nongnu.org > > Thanks, queued for 2.8 and 2.7.1 > > Paolo Pointing to the applicable SCSI spec chapter & verse in the commit message would be nice. As is, 36 looks as arbitrary as 20.