From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from [140.186.70.92] (port=35506 helo=eggs.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1OcFpj-0008FP-KT for qemu-devel@nongnu.org; Fri, 23 Jul 2010 06:50:31 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.69) (envelope-from ) id 1OcFpf-0004wx-IA for qemu-devel@nongnu.org; Fri, 23 Jul 2010 06:50:27 -0400 Received: from mx1.redhat.com ([209.132.183.28]:14454) by eggs.gnu.org with esmtp (Exim 4.69) (envelope-from ) id 1OcFpf-0004wf-9y for qemu-devel@nongnu.org; Fri, 23 Jul 2010 06:50:23 -0400 Message-ID: <4C4973E4.5030502@redhat.com> Date: Fri, 23 Jul 2010 12:50:12 +0200 From: Kevin Wolf MIME-Version: 1.0 Subject: Re: [Qemu-devel] [PATCH] block: default to 0 minimal / optiomal I/O size References: <20100723073504.GA28166@lst.de> In-Reply-To: <20100723073504.GA28166@lst.de> Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit List-Id: qemu-devel.nongnu.org List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: Christoph Hellwig Cc: qemu-devel@nongnu.org Am 23.07.2010 09:35, schrieb Christoph Hellwig: > Currently we set them to 512 bytes unless manually specified. Unforuntaly > some brain-dead partitioning tools create unaligned partitions if they > get low enough optiomal I/O size values, so don't report any at all > unless explicitly set. > > Signed-off-by: Christoph Hellwig > > Index: qemu/block_int.h > =================================================================== > --- qemu.orig/block_int.h 2010-07-23 09:26:07.660494681 +0200 > +++ qemu/block_int.h 2010-07-23 09:26:20.323494685 +0200 > @@ -243,7 +243,7 @@ static inline unsigned int get_physical_ > _conf.logical_block_size, 512), \ > DEFINE_PROP_UINT16("physical_block_size", _state, \ > _conf.physical_block_size, 512), \ > - DEFINE_PROP_UINT16("min_io_size", _state, _conf.min_io_size, 512), \ > - DEFINE_PROP_UINT32("opt_io_size", _state, _conf.opt_io_size, 512) > + DEFINE_PROP_UINT16("min_io_size", _state, _conf.min_io_size, 0), \ > + DEFINE_PROP_UINT32("opt_io_size", _state, _conf.opt_io_size, 0) > > #endif /* BLOCK_INT_H */ This isn't reverting to the state before we reported anything, but it reports values of 0 now. Is this defined for both virtio-blk and SCSI to mean the same as no report at all? Or should we rather not advertise VIRTIO_BLK_F_TOPOLOGY (and the SCSI equivalent) in this case? Kevin