]> bbs.cooldavid.org Git - net-next-2.6.git/commit
[IA64] Percpu quicklist for combined allocator for pgd/pmd/pte.
authorRobin Holt <holt@sgi.com>
Mon, 25 Apr 2005 20:13:16 +0000 (13:13 -0700)
committerTony Luck <tony.luck@intel.com>
Mon, 25 Apr 2005 20:13:16 +0000 (13:13 -0700)
commitfde740e4dd4a05ca8957490d468fa9b2770f5bd6
tree04bc0221bc6c59379a17f3631fc4bd3c886e1d61
parentff3eb55ed97db3f12964beeffe3d34602d295367
[IA64] Percpu quicklist for combined allocator for pgd/pmd/pte.

This patch introduces using the quicklists for pgd, pmd, and pte levels
by combining the alloc and free functions into a common set of routines.
This greatly simplifies the reading of this header file.

This patch is simple but necessary for large numa configurations.
It simply ensures that only pages from the local node are added to a
cpus quicklist.  This prevents the trapping of pages on a remote nodes
quicklist by starting a process, touching a large number of pages to
fill pmd and pte entries, migrating to another node, and then unmapping
or exiting.  With those conditions, the pages get trapped and if the
machine has more than 100 nodes of the same size, the calculation of
the pgtable high water mark will be larger than any single node so page
table cache flushing will never occur.

I ran lmbench lat_proc fork and lat_proc exec on a zx1 with and without
this patch and did not notice any change.

On an sn2 machine, there was a slight improvement which is possibly
due to pages from other nodes trapped on the test node before starting
the run.  I did not investigate further.

This patch shrinks the quicklist based upon free memory on the node
instead of the high/low water marks.  I have written it to enable
preemption periodically and recalculate the amount to shrink every time
we have freed enough pages that the quicklist size should have grown.
I rescan the nodes zones each pass because other processess may be
draining node memory at the same time as we are adding.

Signed-off-by: Robin Holt <holt@sgi.com>
Signed-off-by: Tony Luck <tony.luck@intel.com>
arch/ia64/mm/contig.c
arch/ia64/mm/discontig.c
arch/ia64/mm/init.c
include/asm-ia64/pgalloc.h
include/asm-ia64/processor.h