diff options
Diffstat (limited to 'block-raw-posix.c')
-rw-r--r-- | block-raw-posix.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/block-raw-posix.c b/block-raw-posix.c index b50da1f7bf..6b0009e564 100644 --- a/block-raw-posix.c +++ b/block-raw-posix.c @@ -276,8 +276,8 @@ void qemu_aio_init(void) seems to fix the problem. */ struct aioinit ai; memset(&ai, 0, sizeof(ai)); - ai.aio_threads = 16; - ai.aio_num = 16; + ai.aio_threads = 1; + ai.aio_num = 1; ai.aio_idle_time = 365 * 100000; aio_init(&ai); } |