diff options
author | Christoph Lameter | 2007-05-12 20:15:24 +0200 |
---|---|---|
committer | Linus Torvalds | 2007-05-12 20:26:22 +0200 |
commit | f1d1a842d85acf34dd185027cb2c9b4fd13130ef (patch) | |
tree | 99ec45adca911aeb145a56d75a213ebb900b2175 /include/asm-i386/pgalloc.h | |
parent | compat signalfd and timerfd are cond syscalls (diff) | |
download | kernel-qcow2-linux-f1d1a842d85acf34dd185027cb2c9b4fd13130ef.tar.gz kernel-qcow2-linux-f1d1a842d85acf34dd185027cb2c9b4fd13130ef.tar.xz kernel-qcow2-linux-f1d1a842d85acf34dd185027cb2c9b4fd13130ef.zip |
SLUB: i386 support
SLUB cannot run on i386 at this point because i386 uses the page->private and
page->index field of slab pages for the pgd cache.
Make SLUB run on i386 by replacing the pgd slab cache with a quicklist.
Limit the changes as much as possible. Leave the improvised linked list in place
etc etc. This has been working here for a couple of weeks now.
Acked-by: William Lee Irwin III <wli@holomorphy.com>
Signed-off-by: Christoph Lameter <clameter@sgi.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'include/asm-i386/pgalloc.h')
-rw-r--r-- | include/asm-i386/pgalloc.h | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/include/asm-i386/pgalloc.h b/include/asm-i386/pgalloc.h index 47430175b75f..d07b7afc2692 100644 --- a/include/asm-i386/pgalloc.h +++ b/include/asm-i386/pgalloc.h @@ -65,6 +65,4 @@ do { \ #define pud_populate(mm, pmd, pte) BUG() #endif -#define check_pgt_cache() do { } while (0) - #endif /* _I386_PGALLOC_H */ |