summaryrefslogtreecommitdiff
path: root/ltp
diff options
context:
space:
mode:
authorZorro Lang <zlang@redhat.com>2020-09-11 15:15:52 +0800
committerEryu Guan <guaneryu@gmail.com>2020-09-27 17:31:14 +0800
commit4cf0a1e57cdc855d8bdce3a8249fca4b4c8a7904 (patch)
treebfed097ac8c7d0b13fe63b0ccd5fb7fca0f159ba /ltp
parent57a18fcb244cc671764f95eba74ec59c47f5c720 (diff)
fsstress: reduce the number of events when io_setup
The original number(128) of aio events for io_setup too big. When try to run lots of fsstress processes(e.g. -p 1000) always hit io_setup EAGAIN error, due to the nr_events exceeds the limit of available events. Due to each fsstress process only does once libaio read/write operation each time. So reduce the aio events number to 1, to make more fsstress processes can do AIO test. Signed-off-by: Zorro Lang <zlang@redhat.com> Reviewed-by: Brian Foster <bfoster@redhat.com> Signed-off-by: Eryu Guan <guaneryu@gmail.com>
Diffstat (limited to 'ltp')
-rw-r--r--ltp/fsstress.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/ltp/fsstress.c b/ltp/fsstress.c
index d28fcd75..68fbf7a5 100644
--- a/ltp/fsstress.c
+++ b/ltp/fsstress.c
@@ -28,6 +28,7 @@
#endif
#ifdef AIO
#include <libaio.h>
+#define AIO_ENTRIES 1
io_context_t io_ctx;
#endif
#ifdef URING
@@ -699,8 +700,8 @@ int main(int argc, char **argv)
}
procid = i;
#ifdef AIO
- if (io_setup(128, &io_ctx) != 0) {
- fprintf(stderr, "io_setup failed");
+ if (io_setup(AIO_ENTRIES, &io_ctx) != 0) {
+ fprintf(stderr, "io_setup failed\n");
exit(1);
}
#endif