mirror of
https://github.com/torvalds/linux.git
synced 2024-10-31 17:21:49 +00:00
3a2cba993b
I ported this to sparc64 as per the patch below, tested on UP SunBlade1500 and 24 cpu Niagara T1000. Signed-off-by: David S. Miller <davem@davemloft.net> Signed-off-by: Christoph Lameter <clameter@sgi.com> Cc: "David S. Miller" <davem@davemloft.net> Cc: Andi Kleen <ak@suse.de> Cc: "Luck, Tony" <tony.luck@intel.com> Cc: William Lee Irwin III <wli@holomorphy.com> Signed-off-by: Andrew Morton <akpm@linux-foundation.org> Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
74 lines
1.6 KiB
C
74 lines
1.6 KiB
C
/* $Id: pgalloc.h,v 1.30 2001/12/21 04:56:17 davem Exp $ */
|
|
#ifndef _SPARC64_PGALLOC_H
|
|
#define _SPARC64_PGALLOC_H
|
|
|
|
#include <linux/kernel.h>
|
|
#include <linux/sched.h>
|
|
#include <linux/mm.h>
|
|
#include <linux/slab.h>
|
|
#include <linux/quicklist.h>
|
|
|
|
#include <asm/spitfire.h>
|
|
#include <asm/cpudata.h>
|
|
#include <asm/cacheflush.h>
|
|
#include <asm/page.h>
|
|
|
|
/* Page table allocation/freeing. */
|
|
|
|
static inline pgd_t *pgd_alloc(struct mm_struct *mm)
|
|
{
|
|
return quicklist_alloc(0, GFP_KERNEL, NULL);
|
|
}
|
|
|
|
static inline void pgd_free(pgd_t *pgd)
|
|
{
|
|
quicklist_free(0, NULL, pgd);
|
|
}
|
|
|
|
#define pud_populate(MM, PUD, PMD) pud_set(PUD, PMD)
|
|
|
|
static inline pmd_t *pmd_alloc_one(struct mm_struct *mm, unsigned long addr)
|
|
{
|
|
return quicklist_alloc(0, GFP_KERNEL, NULL);
|
|
}
|
|
|
|
static inline void pmd_free(pmd_t *pmd)
|
|
{
|
|
quicklist_free(0, NULL, pmd);
|
|
}
|
|
|
|
static inline pte_t *pte_alloc_one_kernel(struct mm_struct *mm,
|
|
unsigned long address)
|
|
{
|
|
return quicklist_alloc(0, GFP_KERNEL, NULL);
|
|
}
|
|
|
|
static inline struct page *pte_alloc_one(struct mm_struct *mm,
|
|
unsigned long address)
|
|
{
|
|
void *pg = quicklist_alloc(0, GFP_KERNEL, NULL);
|
|
return pg ? virt_to_page(pg) : NULL;
|
|
}
|
|
|
|
static inline void pte_free_kernel(pte_t *pte)
|
|
{
|
|
quicklist_free(0, NULL, pte);
|
|
}
|
|
|
|
static inline void pte_free(struct page *ptepage)
|
|
{
|
|
quicklist_free_page(0, NULL, ptepage);
|
|
}
|
|
|
|
|
|
#define pmd_populate_kernel(MM, PMD, PTE) pmd_set(PMD, PTE)
|
|
#define pmd_populate(MM,PMD,PTE_PAGE) \
|
|
pmd_populate_kernel(MM,PMD,page_address(PTE_PAGE))
|
|
|
|
static inline void check_pgt_cache(void)
|
|
{
|
|
quicklist_trim(0, NULL, 25, 16);
|
|
}
|
|
|
|
#endif /* _SPARC64_PGALLOC_H */
|