diff options
author | Peter Maydell <peter.maydell@linaro.org> | 2020-01-14 14:11:34 +0000 |
---|---|---|
committer | Peter Maydell <peter.maydell@linaro.org> | 2020-01-14 14:11:34 +0000 |
commit | fee0ec1fd11a6fb960517e18201ed8a686a0d7e8 (patch) | |
tree | 33115c5d35aa4c31bf6c1e73071cc55b5a35dbdb | |
parent | 29234ded1fe2f76e57382876ddeec88793420bec (diff) | |
parent | 2558cb8dd4150512bc8ae6d505cdcd10d0cc46bb (diff) | |
download | qemu-fee0ec1fd11a6fb960517e18201ed8a686a0d7e8.zip qemu-fee0ec1fd11a6fb960517e18201ed8a686a0d7e8.tar.gz qemu-fee0ec1fd11a6fb960517e18201ed8a686a0d7e8.tar.bz2 |
Merge remote-tracking branch 'remotes/stefanha/tags/block-pull-request' into staging
Pull request
# gpg: Signature made Tue 14 Jan 2020 09:30:45 GMT
# gpg: using RSA key 8695A8BFD3F97CDAAC35775A9CA4ABB381AB73C8
# gpg: Good signature from "Stefan Hajnoczi <stefanha@redhat.com>" [full]
# gpg: aka "Stefan Hajnoczi <stefanha@gmail.com>" [full]
# Primary key fingerprint: 8695 A8BF D3F9 7CDA AC35 775A 9CA4 ABB3 81AB 73C8
* remotes/stefanha/tags/block-pull-request:
linux-aio: increasing MAX_EVENTS to a larger hardcoded value
Signed-off-by: Peter Maydell <peter.maydell@linaro.org>
-rw-r--r-- | block/linux-aio.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/block/linux-aio.c b/block/linux-aio.c index c7eca9a..91204a2 100644 --- a/block/linux-aio.c +++ b/block/linux-aio.c @@ -26,7 +26,7 @@ * than this we will get EAGAIN from io_submit which is communicated to * the guest as an I/O error. */ -#define MAX_EVENTS 128 +#define MAX_EVENTS 1024 struct qemu_laiocb { Coroutine *co; |