From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:50611) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1alFzv-0003Vi-7Q for qemu-devel@nongnu.org; Wed, 30 Mar 2016 09:17:24 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1alFzu-0007cz-9S for qemu-devel@nongnu.org; Wed, 30 Mar 2016 09:17:23 -0400 References: <1458837566-108527-1-git-send-email-pbonzini@redhat.com> <20160330130616.GC6764@stefanha-x1.localdomain> From: Paolo Bonzini Message-ID: <56FBD1D6.4060303@redhat.com> Date: Wed, 30 Mar 2016 15:17:10 +0200 MIME-Version: 1.0 In-Reply-To: <20160330130616.GC6764@stefanha-x1.localdomain> Content-Type: text/plain; charset=windows-1252 Content-Transfer-Encoding: quoted-printable Subject: Re: [Qemu-devel] [PATCH v3 0/7] bdrv_flush_io_queue removal, shared LinuxAioState List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: Stefan Hajnoczi Cc: kwolf@redhat.com, famz@redhat.com, qemu-devel@nongnu.org, qemu-block@nongnu.org On 30/03/2016 15:06, Stefan Hajnoczi wrote: > On Thu, Mar 24, 2016 at 05:39:19PM +0100, Paolo Bonzini wrote: >> Patch 1 comes from Kevin's series to do BlockBackend throttling. >> >> Patches 2-5 are from my bdrv_drain patches. >> >> Patches 6-7 are new but based on Ming Lei's old submission. >> I'm including them here because they apply on top of patches 2-5. >> It would be nice to have them too in 2.6. >> >> Paolo >> >> Kevin Wolf (1): >> block: Don't disable I/O throttling on sync requests >> >> Paolo Bonzini (6): >> block: make bdrv_start_throttled_reqs return void >> block: move restarting of throttled reqs to block/throttle-groups.c >> block: introduce bdrv_no_throttling_begin/end >> block: plug whole tree at once, introduce bdrv_io_unplugged_begin/en= d >> linux-aio: make it more type safe >> linux-aio: share one LinuxAioState within an AioContext >> >> async.c | 23 +++++++ >> block.c | 1 - >> block/block-backend.c | 6 +- >> block/io.c | 128 +++++++++++++++++++---------= ------- >> block/linux-aio.c | 60 +++++++---------- >> block/raw-posix.c | 133 ++++------------------------= --------- >> block/raw-win32.c | 2 +- >> block/throttle-groups.c | 20 ++++++ >> include/block/aio.h | 13 ++++ >> include/block/block.h | 3 +- >> include/block/block_int.h | 14 ++-- >> {block =3D> include/block}/raw-aio.h | 15 +++-- >> include/block/throttle-groups.h | 1 + >> 13 files changed, 189 insertions(+), 230 deletions(-) >> rename {block =3D> include/block}/raw-aio.h (80%) >=20 > Acked-by: Stefan Hajnoczi Great, I'll send v4 as soon as possible for inclusion in the block-next branch. Paolo