Re: [RFC] kernel facilities for cache prefetching

From: Wu Fengguang
Date: Tue May 02 2006 - 04:20:06 EST


On Tue, May 02, 2006 at 10:09:36AM +0200, Jens Axboe wrote:
> I tried something very similar to this years ago, except I made it
> explicit instead of hiding it in the blk_run_backing_dev() which we
> didn't have at that time. My initial results showed that you would get a
> load of requests for different pages so would end up doing io randomly
> instead again.

Yes, the hard one would be _not_ to impact normal I/Os in any way.
A simple solution for the case of deadline scheduler would be:

- static const int read_expire = HZ / 2; /* max time before a read is submitted. */
+ static const int read_expire = HZ / 2; /* max time before a impending read is submitted. */
+ static const int reada_expire = HZ * 30; /* max time before a read-ahead is submitted. */

Wu
-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/