[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-ID: <2f11576a0811162239w58555c6dq8a61ec184b22bd52@mail.gmail.com>
Date: Mon, 17 Nov 2008 15:39:20 +0900
From: "KOSAKI Motohiro" <kosaki.motohiro@...fujitsu.com>
To: "KAMEZAWA Hiroyuki" <kamezawa.hiroyu@...fujitsu.com>
Cc: "Andrew Morton" <akpm@...ux-foundation.org>,
"Rik van Riel" <riel@...hat.com>,
"Linus Torvalds" <torvalds@...ux-foundation.org>,
LKML <linux-kernel@...r.kernel.org>,
linux-mm <linux-mm@...ck.org>,
"Gene Heskett" <gene.heskett@...il.com>
Subject: Re: [PATCH] mm: evict streaming IO cache first
2008/11/17 KAMEZAWA Hiroyuki <kamezawa.hiroyu@...fujitsu.com>:
> On Sun, 16 Nov 2008 20:47:20 -0800
> Andrew Morton <akpm@...ux-foundation.org> wrote:
>
>> On Sun, 16 Nov 2008 16:20:26 -0500 Rik van Riel <riel@...hat.com> wrote:
>> Anyway, we need to do something.
>>
>> Shouldn't get_scan_ratio() be handling this case already?
>>
> Hmm, could I make a question ?
>
> I think
>
> - recent_rolated[LRU_FILE] is incremented when file cache is moved from
> ACTIVE_FILE to INACTIVE_FILE.
> - recent_scanned[LRU_FILE] is sum of scanning numbers on INACTIVE/ACTIVE list
> of file.
> - file caches are added to INACITVE_FILE, at first.
> - get_scan_ratio() calculates %file to be
>
> file recent rotated.
> %file = IO_cost * ------------ / -------------
> anon + file recent scanned.
rewote by div to mul changing.
file recent scanned.
%file = IO_cost * ------------ * -------------
anon + file recent rotated.
> But when "files are used by streaming or some touch once application",
> there is no rotation because they are in INACTIVE FILE at first add_to_lru().
> But recent_rotated will not increase while recent_scanned goes bigger and bigger.
Yup.
> Then %file goes to 0 rapidly.
I think reverse.
The problem is, when streaming access started right after, recent
scanned isn't so much.
then %file don't reach 100%.
then, few anon pages swaped out althouth memory pressure isn't so heavy.
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
Powered by blists - more mailing lists