Re: [patch 1/3] vmscan: factor out page reference checks

From: Minchan Kim
Date: Tue Feb 23 2010 - 11:04:11 EST


On Wed, Feb 24, 2010 at 12:40 AM, Johannes Weiner <hannes@xxxxxxxxxxx> wrote:
> Hello Minchan,
>
> On Tue, Feb 23, 2010 at 11:44:14PM +0900, Minchan Kim wrote:
>> On Tue, 2010-02-23 at 15:21 +0100, Johannes Weiner wrote:
>> > Hello Minchan,
>> >
>> > On Tue, Feb 23, 2010 at 10:38:23PM +0900, Minchan Kim wrote:
>>
>> <snip>
>>
>> > > >
>> > > > Â Â Â Â Â Â Â Â if (PageDirty(page)) {
>> > > > - Â Â Â Â Â Â Â Â Â Â Â if (sc->order <= PAGE_ALLOC_COSTLY_ORDER && referenced)
>> > > > + Â Â Â Â Â Â Â Â Â Â Â if (references == PAGEREF_RECLAIM_CLEAN)
>> > >
>> > > How equal PAGEREF_RECLAIM_CLEAN and sc->order <= PAGE_ALLOC_COSTLY_ORDER
>> > > && referenced by semantic?
>> >
>> > It is encoded in page_check_references(). ÂWhen
>> > Â Â sc->order <= PAGE_ALLOC_COSTLY_ORDER && referenced
>> > it returns PAGEREF_RECLAIM_CLEAN.
>> >
>> > So
>> >
>> > Â Â - PageDirty() && order < COSTLY && referenced
>> > Â Â + PageDirty() && references == PAGEREF_RECLAIM_CLEAN
>> >
>> > is an equivalent transformation. ÂDoes this answer your question?
>>
>> Hmm. I knew it. My point was PAGEREF_RECLAIM_CLEAN seems to be a little
>> awkward. I thought PAGEREF_RECLAIM_CLEAN means if the page was clean, it
>> can be reclaimed.
>
> But you were thinking right, it is exactly what it means! ÂIf
> the state is PAGEREF_RECLAIM_CLEAN, reclaim the page if it is clean:
>
> Â Â Â Âif (PageDirty(page)) {
> Â Â Â Â Â Â Â Âif (references == PAGEREF_RECLAIM_CLEAN)
> Â Â Â Â Â Â Â Â Â Â Â Âgoto keep_locked; Â Â Â /* do not reclaim */
> Â Â Â Â Â Â Â Â...
> Â Â Â Â}
>
>> I think it would be better to rename it with represent "Although it's
>> referenced page recently, we can reclaim it if VM try to reclaim high
>> order page".
>
> I changed it to PAGEREF_RECLAIM_LUMPY and PAGEREF_RECLAIM, but I felt
> it made it worse. ÂIt's awkward that we have to communicate that state
> at all, maybe it would be better to do
>
> Â Â Â Âif (PageDirty(page) && referenced_page)
> Â Â Â Â Â Â Â Âreturn PAGEREF_KEEP;
>
> in page_check_references()? ÂBut doing PageDirty() twice is also kinda
> lame.
>
> I don't know. ÂCan we leave it like that for now?

I hope as it is if we don't have any better idea and you don't feel it strong.
But let's listen to other's opinion. maybe they have a good idea.

Thanks, Hannes.



--
Kind regards,
Minchan Kim
--
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/