lkml.org 
[lkml]   [2009]   [Sep]   [1]   [last100]   RSS Feed
Views: [wrap][no wrap]   [headers]  [forward] 
 
Messages in this thread
Patch in this message
/
From
Subject[patch] cfq: choose a new next_req when a request is dispatched
Date
Hi,

This patch addresses http://bugzilla.kernel.org/show_bug.cgi?id=13401, a
regression introduced in 2.6.30.

From the bug report:

---
I'm writing some files (about 200MB) on a DVD-RW with the pktcdvd driver.

The writing starts with good rate and then it drops down to 16 kB/s, and it can
not go back to better rates until the write operation has finished and the
system has synced.

Switching /dev/sr0 to anticipatory scheduler does restore normal rates (up to
2700 kB/s).

How to reproduce :
- format a DVD-RW for packet-writing
- # pktsetup 0 /dev/sr0
- # mount -o noatime,nodiratime,rw /dev/pktcdvd/pktcdvd0 /media/pkt
- # dd if=/dev/zero of=/media/pkt/flexbackup/test bs=1024K count=8
conv=fdatasync
---

Basically, the blktrace data show that one or more requests get skipped
(usually because requests from the pktcdvd layer are made out of order,
which could be a result of the application writing out of order, I'm not
sure), and when they expire and are serviced, we end up switching back
and forth between issuing a request that is more recent (and further
along the disk) and older requests which are further back (from the
fifo, noting that we only ever service one request from the fifo during
each service window). For pktcdvd, this is pathological behaviour.

This patch chooses a new next_rq in the cfq_dispatch_insert function,
which is not ideal, but gets us much better and more consistent
performance. Assuming we are servicing a request from the FIFO that is
of a lower sector number than the previously dispatched request, the
patched kernel will choose a new next_req for the cfqq based on the
current request by finding the next lower and higher sectored requests
from the current one in the rb tree. The two requests will be compared
against the last recorded head position, and a decision on which request
is better will be made, taking a back seek maximum and back seek penalty
into account.

Now, there is a question of whether it's better to determine the next
best request given the last position of the disk head (recorded in the
activate_request function) or the last request inserted into the
dispatch list. The attached patch leaves things the way they are, and
this works just fine for the pktcdvd case. Given that this is a minimal
patch and addresses the regression, I thought it safest to go with this.

Testing by the reporter shows the following:

Scheduler Kernel Average time (s) Standard Deviation
--------- ---------------- ---------------- -------------------
CFQ 2.6.29 22.92 5.93
CFQ 2.6.31-rc7 patched 27.76 15.78

Running an unpatched 2.6.31-rc7 kernel, the same test could take up to
10 minutes.

Comments are greatly appreciated.

Cheers,
Jeff

Signed-off-by: Jeff Moyer <jmoyer@redhat.com>

diff --git a/block/cfq-iosched.c b/block/cfq-iosched.c
index fd7080e..8d6a72a 100644
--- a/block/cfq-iosched.c
+++ b/block/cfq-iosched.c
@@ -1115,6 +1115,7 @@ static void cfq_dispatch_insert(struct request_queue *q, struct request *rq)

cfq_log_cfqq(cfqd, cfqq, "dispatch_insert");

+ cfqq->next_rq = cfq_find_next_rq(cfqd, cfqq, rq);
cfq_remove_request(rq);
cfqq->dispatched++;
elv_dispatch_sort(q, rq);

\
 
 \ /
  Last update: 2009-09-01 20:09    [W:0.039 / U:0.136 seconds]
©2003-2020 Jasper Spaans|hosted at Digital Ocean and TransIP|Read the blog|Advertise on this site