Re: [PATCH 1/9] add defrag flags

From: Dave Hansen
Date: Mon Sep 26 2005 - 19:25:28 EST


On Mon, 2005-09-26 at 20:16 -0400, Kyle Moffett wrote:
> On Sep 26, 2005, at 16:03:30, Joel Schopp wrote:
> > The flags are:
> > __GFP_USER, which corresponds to easily reclaimable pages
> > __GFP_KERNRCLM, which corresponds to userspace pages
>
> Uhh, call me crazy, but don't those flags look a little backwards to
> you? Maybe it's just me, but wouldn't it make sense to expect
> __GFP_USER to be a userspace allocation and __GFP_KERNRCLM to be an
> easily reclaimable kernel page?

I think Joel simply made an error in his description.

__GFP_KERNRCLM corresponds to pages which are kernel-allocated, but have
some chance of being reclaimed at some point. Basically, they're things
that will get freed back under memory pressure. This can be direct, as
with the dcache and its slab shrinker, or more indirect as for control
structures like buffer_heads that get reclaimed after _other_ things are
freed.

-- Dave

-
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/