Re: 2.5.59-mm5
From: Jens Axboe <hidden>
Date: 2003-01-24 11:14:47
Also in:
lkml
On Fri, Jan 24 2003, Alex Bligh - linux-kernel wrote:
--On 23 January 2003 19:50 -0800 Andrew Morton [off-list ref] wrote:quoted
So what anticipatory scheduling does is very simple: if an application has performed a read, do *nothing at all* for a few milliseconds. Just return to userspace (or to the filesystem) in the expectation that the application or filesystem will quickly submit another read which is closeby.I'm sure this is a really dumb question, as I've never played with this subsystem, in which case I apologize in advance. Why not follow (by default) the old system where you put the reads effectively at the back of the queue. Then rather than doing nothing for a few milliseconds, you carry on with doing the writes. However, promote the reads to the front of the queue when you have a "good lump" of them. If you get further reads while you are processing a lump of them, put them behind the lump. Switch back to the putting reads at the end when we have done "a few lumps worth" of reads, or exhausted the reads at the start of the queue (or perhaps are short of memory).
The whole point of anticipatory disk scheduling is that the one process that submits a read is not going to do anything before that reads completes. However, maybe it will issue a _new_ read right after the first one completes. The anticipation being that the same process will submit a close read immediately. -- Jens Axboe -- To unsubscribe, send a message with 'unsubscribe linux-mm' in the body to majordomo@kvack.org. For more info on Linux MM, see: http://www.linux-mm.org/