diff options
| author | bellard <bellard@c046a42c-6fe2-441c-8c8c-71466251a162> | 2008-01-06 18:53:07 +0000 |
|---|---|---|
| committer | bellard <bellard@c046a42c-6fe2-441c-8c8c-71466251a162> | 2008-01-06 18:53:07 +0000 |
| commit | 01534fe901b16302e7abb9f279dece6853bbca08 (patch) | |
| tree | bd37d0be0ca08d0085ca213c65455e6eb73d60a4 /block-raw-posix.c | |
| parent | 0c64b9cd4a6174f01549e5005334226fc3152017 (diff) | |
| download | focaccia-qemu-01534fe901b16302e7abb9f279dece6853bbca08.tar.gz focaccia-qemu-01534fe901b16302e7abb9f279dece6853bbca08.zip | |
restore original values for ai.aio_threads and ai.aio_num
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@3896 c046a42c-6fe2-441c-8c8c-71466251a162
Diffstat (limited to '')
| -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); } |