diff options
| author | DespairFactor <matthewalex@outlook.com> | 2015-06-25 04:26:39 -0400 |
|---|---|---|
| committer | Moyster <oysterized@gmail.com> | 2016-09-10 00:38:12 +0200 |
| commit | 44805bc53dea5d133b008e3f41a8346fdd1757f0 (patch) | |
| tree | 216268cc4becabce19a61e8793af79cbb95e01bc /block | |
| parent | 3e3ace204ecb18e8dea794a5fe69ba52da03efb8 (diff) | |
block: sioplus: set fifo batch to 16 to reduce overload on eMMC and CPU.
Diffstat (limited to 'block')
| -rwxr-xr-x | block/sioplus-iosched.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/block/sioplus-iosched.c b/block/sioplus-iosched.c index 10c8eb94a..edfa7e20e 100755 --- a/block/sioplus-iosched.c +++ b/block/sioplus-iosched.c @@ -33,7 +33,7 @@ static const int async_read_expire = (HZ / 2); /* ditto for async, these limits static const int async_write_expire = (HZ * 2); /* ditto for async, these limits are SOFT! */ static const int writes_starved = 1; /* max times reads can starve a write */ -static const int fifo_batch = 3; /* # of sequential requests treated as one +static const int fifo_batch = 16; /* # of sequential requests treated as one by the above parameters. For throughput. */ /* Elevator data */ |
