diff options
| author | Andrew Morton <akpm@zip.com.au> | 2002-06-17 20:18:30 -0700 |
|---|---|---|
| committer | Linus Torvalds <torvalds@home.transmeta.com> | 2002-06-17 20:18:30 -0700 |
| commit | 374cac7a137dfd3212fb729337de479d1a410012 (patch) | |
| tree | a10daa7afc5f10da0604174b89c224c397d6d20f | |
| parent | 7a1a7f5b21d9b3d494f3244ef9d3264dde126525 (diff) | |
[PATCH] go back to 256 requests per queue
The request queue was increased from 256 slots to 512 in 2.5.20. The
throughput of `dbench 128' on Randy's 384 megabyte machine fell 40%.
We do need to understand why that happened, and what we can learn from
it. But in the meanwhile I'd suggest that we go back to 256 slots so
that this known problem doesn't impact people's evaluation and tuning
of 2.5 performance.
| -rw-r--r-- | drivers/block/ll_rw_blk.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/block/ll_rw_blk.c b/drivers/block/ll_rw_blk.c index d53122b1ae46..3527afa3cae7 100644 --- a/drivers/block/ll_rw_blk.c +++ b/drivers/block/ll_rw_blk.c @@ -2002,8 +2002,8 @@ int __init blk_dev_init(void) queue_nr_requests = (total_ram >> 8) & ~15; /* One per quarter-megabyte */ if (queue_nr_requests < 32) queue_nr_requests = 32; - if (queue_nr_requests > 512) - queue_nr_requests = 512; + if (queue_nr_requests > 256) + queue_nr_requests = 256; /* * Batch frees according to queue length |
