l4lx: raise block TX buffer size to 5 MiB

Buffer sizes lower than 5 MiB slow down the Arndale AHCI benchmark
with fast 6 Gbps SSDs and 1MiB blocks.
This commit is contained in:
Martin Stein 2013-06-25 20:31:37 +02:00 committed by Stefan Kalkowski
parent 9d23cdc27f
commit 276dbdab60

View File

@ -84,7 +84,7 @@ namespace {
private:
enum Dimensions {
TX_BUF_SIZE = 1024 * 1024
TX_BUF_SIZE = 5 * 1024 * 1024
};
Req_cache _cache;