-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
sh: Move page table allocation out of line
We also switched away from quicklists and instead moved to slab caches. After benchmarking both implementations the difference is negligible. The slab caches suit us better though because the size of a pgd table is just 4 entries when we're using a 3-level page table layout and quicklists always deal with pages. Signed-off-by: Matt Fleming <matt@console-pimps.org>
- Loading branch information
Matt Fleming
committed
Jan 2, 2010
1 parent
b4c8927
commit 2a5eacc
Showing
6 changed files
with
66 additions
and
78 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,57 @@ | ||
#include <linux/mm.h> | ||
|
||
#define PGALLOC_GFP GFP_KERNEL | __GFP_REPEAT | __GFP_ZERO | ||
|
||
static struct kmem_cache *pgd_cachep; | ||
|
||
#ifdef CONFIG_PGTABLE_LEVELS_3 | ||
static struct kmem_cache *pmd_cachep; | ||
#endif | ||
|
||
void pgd_ctor(void *x) | ||
{ | ||
pgd_t *pgd = x; | ||
|
||
memcpy(pgd + USER_PTRS_PER_PGD, | ||
swapper_pg_dir + USER_PTRS_PER_PGD, | ||
(PTRS_PER_PGD - USER_PTRS_PER_PGD) * sizeof(pgd_t)); | ||
} | ||
|
||
void pgtable_cache_init(void) | ||
{ | ||
pgd_cachep = kmem_cache_create("pgd_cache", | ||
PTRS_PER_PGD * (1<<PTE_MAGNITUDE), | ||
PAGE_SIZE, SLAB_PANIC, pgd_ctor); | ||
#ifdef CONFIG_PGTABLE_LEVELS_3 | ||
pmd_cachep = kmem_cache_create("pmd_cache", | ||
PTRS_PER_PMD * (1<<PTE_MAGNITUDE), | ||
PAGE_SIZE, SLAB_PANIC, NULL); | ||
#endif | ||
} | ||
|
||
pgd_t *pgd_alloc(struct mm_struct *mm) | ||
{ | ||
return kmem_cache_alloc(pgd_cachep, PGALLOC_GFP); | ||
} | ||
|
||
void pgd_free(struct mm_struct *mm, pgd_t *pgd) | ||
{ | ||
kmem_cache_free(pgd_cachep, pgd); | ||
} | ||
|
||
#ifdef CONFIG_PGTABLE_LEVELS_3 | ||
void pud_populate(struct mm_struct *mm, pud_t *pud, pmd_t *pmd) | ||
{ | ||
set_pud(pud, __pud((unsigned long)pmd)); | ||
} | ||
|
||
pmd_t *pmd_alloc_one(struct mm_struct *mm, unsigned long address) | ||
{ | ||
return kmem_cache_alloc(pmd_cachep, PGALLOC_GFP); | ||
} | ||
|
||
void pmd_free(struct mm_struct *mm, pmd_t *pmd) | ||
{ | ||
kmem_cache_free(pmd_cachep, pmd); | ||
} | ||
#endif /* CONFIG_PGTABLE_LEVELS_3 */ |