[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-ID: <20070725102608.GB9045@one.firstfloor.org>
Date: Wed, 25 Jul 2007 12:26:08 +0200
From: Andi Kleen <andi@...stfloor.org>
To: Benjamin Herrenschmidt <benh@...nel.crashing.org>
Cc: Andi Kleen <andi@...stfloor.org>,
Peter Zijlstra <peterz@...radead.org>,
Andrew Morton <akpm@...ux-foundation.org>,
Ingo Molnar <mingo@...e.hu>, linux-kernel@...r.kernel.org,
Hugh Dickins <hugh@...itas.com>
Subject: Re: [patch] mm: reduce pagetable-freeing latencies
> Plan is fixed array or 4 or maybe 8 entries (pointers), that shouldn't
> be -too- bad. The code path I'm a bit worried about is
Yep.
> unmap_mapping_ranges() which goes into zapping page tables from deep
> within filesystems.
Your aim is to conserve stack space?
The worst case has to work without overflow anyways, so using VLAs don't
help you. Just allocate the largest size you can safely afford.
This is also easier to test; if it is too large it is better when
the overflow triggers always.
They are more useful in user space with larger stacks when you don't
know the maximum size.
-Andi
-
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