From: Fengguang Wu <wfg@mail.ustc.edu.cn>
To: Andrew Morton <akpm@osdl.org>
Cc: linux-kernel@vger.kernel.org
Subject: [PATCH 03/14] readahead: state based method: cancel lookahead gracefully
Date: Fri, 16 Mar 2007 16:48:59 +0800 [thread overview]
Message-ID: <374035059.29167@ustc.edu.cn> (raw)
Message-ID: <20070316085051.939153000@mail.ustc.edu.cn> (raw)
In-Reply-To: 20070316084856.687942000@mail.ustc.edu.cn
[-- Attachment #1: readahead-state-based-method-cancel-lookahead-gracefully.patch --]
[-- Type: text/plain, Size: 1080 bytes --]
When canceling lookahead, update ra->lookahead_index to the next invoke index.
So that we see a consistent state in the next time.
Signed-off-by: Fengguang Wu <wfg@mail.ustc.edu.cn>
---
mm/readahead.c | 8 ++++++--
1 file changed, 6 insertions(+), 2 deletions(-)
--- linux-2.6.21-rc3-mm2.orig/mm/readahead.c
+++ linux-2.6.21-rc3-mm2/mm/readahead.c
@@ -1094,7 +1094,7 @@ state_based_readahead(struct address_spa
if (page && remain_space <= la_size) {
rescue_pages(page, la_size);
- return 0;
+ goto cancel_lookahead;
}
growth_limit = req_size;
@@ -1104,7 +1104,7 @@ state_based_readahead(struct address_spa
growth_limit = ra_max;
if (!adjust_rala(growth_limit, &ra_size, &la_size))
- return 0;
+ goto cancel_lookahead;
limit_rala(growth_limit, la_old, &ra_size, &la_size);
@@ -1113,6 +1113,10 @@ state_based_readahead(struct address_spa
ra_set_size(ra, ra_size, la_size);
return ra_submit(ra, mapping, filp);
+
+cancel_lookahead:
+ ra->lookahead_index = ra->readahead_index;
+ return 0;
}
#endif /* CONFIG_ADAPTIVE_READAHEAD */
--
next prev parent reply other threads:[~2007-03-16 8:54 UTC|newest]
Thread overview: 15+ messages / expand[flat|nested] mbox.gz Atom feed top
2007-03-16 8:48 [PATCH 00/14] Adaptive readahead update Fengguang Wu
2007-03-16 8:48 ` Fengguang Wu
2007-03-16 8:48 ` [PATCH 01/14] readahead: state based method: check node id Fengguang Wu
2007-03-16 8:48 ` Fengguang Wu
2007-03-16 8:48 ` [PATCH 02/14] readahead: state based method: decouple readahead_ratio from growth_limit Fengguang Wu
2007-03-16 8:48 ` Fengguang Wu
2007-03-16 8:48 ` Fengguang Wu [this message]
2007-03-16 8:48 ` [PATCH 03/14] readahead: state based method: cancel lookahead gracefully Fengguang Wu
2007-03-16 8:49 ` [PATCH 04/14] readahead: thrashing recovery method: check unbalanced aging Fengguang Wu
2007-03-16 8:49 ` Fengguang Wu
2007-03-16 8:49 ` [PATCH 05/14] readahead: thrashing recovery method: refill holes Fengguang Wu
2007-03-16 8:49 ` Fengguang Wu
2007-03-16 8:49 ` [PATCH 06/14] readahead: call scheme: cleanup Fengguang Wu
2007-03-16 8:49 ` Fengguang Wu
2007-03-16 8:49 ` [PATCH 07/14] readahead: call scheme: catch thrashing on lookahead time Fengguang Wu
2007-03-16 8:49 ` Fengguang Wu
2007-03-16 8:49 ` [PATCH 08/14] readahead: remove parameter ra_max from thrashing_recovery_readahead() Fengguang Wu
2007-03-16 8:49 ` Fengguang Wu
2007-03-16 8:49 ` [PATCH 09/14] readahead: remove parameter ra_max from adjust_rala*() Fengguang Wu
2007-03-16 8:49 ` Fengguang Wu
2007-03-16 8:49 ` [PATCH 10/14] readahead: state based method: protect against tiny size Fengguang Wu
2007-03-16 8:49 ` Fengguang Wu
2007-03-16 8:49 ` [PATCH 11/14] readahead: rename state_based_readahead() to clock_based_readahead() Fengguang Wu
2007-03-16 8:49 ` Fengguang Wu
2007-03-16 8:49 ` [PATCH 12/14] readahead: account I/O block times for stock readahead Fengguang Wu
2007-03-16 8:49 ` Fengguang Wu
2007-03-16 8:49 ` [PATCH 13/14] readahead: rescue_pages() updates Fengguang Wu
2007-03-16 8:49 ` Fengguang Wu
2007-03-16 8:49 ` [PATCH 14/14] readahead: remove noaction/shrink events Fengguang Wu
2007-03-16 8:49 ` Fengguang Wu
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=374035059.29167@ustc.edu.cn \
--to=wfg@mail.ustc.edu.cn \
--cc=akpm@osdl.org \
--cc=linux-kernel@vger.kernel.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.