[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-Id: <1164912915.6588.153.camel@twins>
Date: Thu, 30 Nov 2006 19:55:15 +0100
From: Peter Zijlstra <a.p.zijlstra@...llo.nl>
To: Christoph Lameter <clameter@....com>
Cc: netdev@...r.kernel.org, linux-mm@...ck.org,
David Miller <davem@...emloft.net>
Subject: Re: [RFC][PATCH 1/6] mm: slab allocation fairness
On Thu, 2006-11-30 at 10:52 -0800, Christoph Lameter wrote:
> On Thu, 30 Nov 2006, Peter Zijlstra wrote:
>
> > The slab has some unfairness wrt gfp flags; when the slab is grown the gfp
> > flags are used to allocate more memory, however when there is slab space
> > available, gfp flags are ignored. Thus it is possible for less critical
> > slab allocations to succeed and gobble up precious memory.
>
> The gfpflags are ignored if there are
>
> 1) objects in the per cpu, shared or alien caches
>
> 2) objects are in partial or free slabs in the per node queues.
Yeah, basically as long as free objects can be found. No matter how
'hard' is was to obtain these objects.
> > This patch avoids this by keeping track of the allocation hardness when
> > growing. This is then compared to the current slab alloc's gfp flags.
>
> The approach is to force the allocation of additional slab to increase the
> number of free slabs? The next free will drop the number of free slabs
> back again to the allowed amount.
No, the forced allocation is to test the allocation hardness at that
point in time. I could not think of another way to test that than to
actually to an allocation.
-
To unsubscribe from this list: send the line "unsubscribe netdev" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Powered by blists - more mailing lists