From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:52840) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1VlFFD-00059G-20 for qemu-devel@nongnu.org; Tue, 26 Nov 2013 04:47:51 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1VlFF8-0008Af-6e for qemu-devel@nongnu.org; Tue, 26 Nov 2013 04:47:46 -0500 Received: from mx1.redhat.com ([209.132.183.28]:6629) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1VlFF7-0008AW-Ur for qemu-devel@nongnu.org; Tue, 26 Nov 2013 04:47:42 -0500 Message-ID: <52946E37.2080109@redhat.com> Date: Tue, 26 Nov 2013 10:47:35 +0100 From: Paolo Bonzini MIME-Version: 1.0 References: <1385456183-24840-1-git-send-email-pl@kamp.de> <1385456183-24840-5-git-send-email-pl@kamp.de> In-Reply-To: <1385456183-24840-5-git-send-email-pl@kamp.de> Content-Type: text/plain; charset=ISO-8859-15 Content-Transfer-Encoding: 7bit Subject: Re: [Qemu-devel] [PATCHv2 1.8 4/9] block: add opt_transfer_length to BlockLimits List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: Peter Lieven Cc: kwolf@redhat.com, qemu-devel@nongnu.org, stefanha@redhat.com Il 26/11/2013 09:56, Peter Lieven ha scritto: > Signed-off-by: Peter Lieven > --- > include/block/block_int.h | 3 +++ > 1 file changed, 3 insertions(+) > > diff --git a/include/block/block_int.h b/include/block/block_int.h > index 95140b6..6499516 100644 > --- a/include/block/block_int.h > +++ b/include/block/block_int.h > @@ -242,6 +242,9 @@ typedef struct BlockLimits { > > /* optimal alignment for write zeroes requests in sectors */ > int64_t write_zeroes_alignment; > + > + /* optimal transfer length in sectors */ > + int opt_transfer_length; > } BlockLimits; > > /* > Reviewed-by: Paolo Bonzini