pgalloc.h 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657
  1. /* MN10300 Page and page table/directory allocation
  2. *
  3. * Copyright (C) 2007 Red Hat, Inc. All Rights Reserved.
  4. * Written by David Howells (dhowells@redhat.com)
  5. *
  6. * This program is free software; you can redistribute it and/or
  7. * modify it under the terms of the GNU General Public Licence
  8. * as published by the Free Software Foundation; either version
  9. * 2 of the Licence, or (at your option) any later version.
  10. */
  11. #ifndef _ASM_PGALLOC_H
  12. #define _ASM_PGALLOC_H
  13. #include <asm/page.h>
  14. #include <linux/threads.h>
  15. #include <linux/mm.h> /* for struct page */
  16. struct mm_struct;
  17. struct page;
  18. /* attach a page table to a PMD entry */
  19. #define pmd_populate_kernel(mm, pmd, pte) \
  20. set_pmd(pmd, __pmd(__pa(pte) | _PAGE_TABLE))
  21. static inline
  22. void pmd_populate(struct mm_struct *mm, pmd_t *pmd, struct page *pte)
  23. {
  24. set_pmd(pmd, __pmd((page_to_pfn(pte) << PAGE_SHIFT) | _PAGE_TABLE));
  25. }
  26. #define pmd_pgtable(pmd) pmd_page(pmd)
  27. /*
  28. * Allocate and free page tables.
  29. */
  30. extern pgd_t *pgd_alloc(struct mm_struct *);
  31. extern void pgd_free(struct mm_struct *, pgd_t *);
  32. extern pte_t *pte_alloc_one_kernel(struct mm_struct *, unsigned long);
  33. extern struct page *pte_alloc_one(struct mm_struct *, unsigned long);
  34. static inline void pte_free_kernel(struct mm_struct *mm, pte_t *pte)
  35. {
  36. free_page((unsigned long) pte);
  37. }
  38. static inline void pte_free(struct mm_struct *mm, struct page *pte)
  39. {
  40. pgtable_page_dtor(pte);
  41. __free_page(pte);
  42. }
  43. #define __pte_free_tlb(tlb, pte, addr) tlb_remove_page((tlb), (pte))
  44. #endif /* _ASM_PGALLOC_H */