Re: [PATCH 0/2] block-backend: process I/O in the current AioContext

2023-08-21 Thread Stefan Hajnoczi
On Fri, Aug 18, 2023 at 05:24:22PM +0200, Kevin Wolf wrote: > Am 15.08.2023 um 18:05 hat Stefan Hajnoczi geschrieben: > > Switch blk_aio_*() APIs over to multi-queue by using > > qemu_get_current_aio_context() instead of blk_get_aio_context(). This change > > will allow devices to process I/O in

Re: [PATCH 0/2] block-backend: process I/O in the current AioContext

2023-08-18 Thread Kevin Wolf
Am 15.08.2023 um 18:05 hat Stefan Hajnoczi geschrieben: > Switch blk_aio_*() APIs over to multi-queue by using > qemu_get_current_aio_context() instead of blk_get_aio_context(). This change > will allow devices to process I/O in multiple IOThreads in the future. Both code paths still use

[PATCH 0/2] block-backend: process I/O in the current AioContext

2023-08-15 Thread Stefan Hajnoczi
Switch blk_aio_*() APIs over to multi-queue by using qemu_get_current_aio_context() instead of blk_get_aio_context(). This change will allow devices to process I/O in multiple IOThreads in the future. Stefan Hajnoczi (2): block-backend: process I/O in the current AioContext block-backend: