diff options
author | Jens Axboe <axboe@kernel.dk> | 2019-10-08 20:58:57 -0600 |
---|---|---|
committer | Jens Axboe <axboe@kernel.dk> | 2019-10-08 20:58:57 -0600 |
commit | 983a656c11bf35043759de48aa5a85bdb4ffb106 (patch) | |
tree | 83e5946f443904f95967910b21156ca500f982e0 | |
parent | 998baa29f571df9d2e4b626bedd317a2fd28c68a (diff) | |
parent | 43661a66a8c3b9fb5ff28b463c9ab0aac91a0355 (diff) | |
download | fio-983a656c11bf35043759de48aa5a85bdb4ffb106.tar.gz fio-983a656c11bf35043759de48aa5a85bdb4ffb106.tar.bz2 |
Merge branch 'bumpflocks' of https://github.com/earlephilhower/fio
* 'bumpflocks' of https://github.com/earlephilhower/fio:
Increase MAX_FILELOCKS for highly parallel IO test
-rw-r--r-- | filelock.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -22,7 +22,7 @@ struct fio_filelock { unsigned int references; }; -#define MAX_FILELOCKS 128 +#define MAX_FILELOCKS 1024 static struct filelock_data { struct flist_head list; |