~ [ source navigation ] ~ [ diff markup ] ~ [ identifier search ] ~

TOMOYO Linux Cross Reference
Linux/arch/loongarch/include/asm/pgalloc.h

Version: ~ [ linux-6.11-rc3 ] ~ [ linux-6.10.4 ] ~ [ linux-6.9.12 ] ~ [ linux-6.8.12 ] ~ [ linux-6.7.12 ] ~ [ linux-6.6.45 ] ~ [ linux-6.5.13 ] ~ [ linux-6.4.16 ] ~ [ linux-6.3.13 ] ~ [ linux-6.2.16 ] ~ [ linux-6.1.104 ] ~ [ linux-6.0.19 ] ~ [ linux-5.19.17 ] ~ [ linux-5.18.19 ] ~ [ linux-5.17.15 ] ~ [ linux-5.16.20 ] ~ [ linux-5.15.164 ] ~ [ linux-5.14.21 ] ~ [ linux-5.13.19 ] ~ [ linux-5.12.19 ] ~ [ linux-5.11.22 ] ~ [ linux-5.10.223 ] ~ [ linux-5.9.16 ] ~ [ linux-5.8.18 ] ~ [ linux-5.7.19 ] ~ [ linux-5.6.19 ] ~ [ linux-5.5.19 ] ~ [ linux-5.4.281 ] ~ [ linux-5.3.18 ] ~ [ linux-5.2.21 ] ~ [ linux-5.1.21 ] ~ [ linux-5.0.21 ] ~ [ linux-4.20.17 ] ~ [ linux-4.19.319 ] ~ [ linux-4.18.20 ] ~ [ linux-4.17.19 ] ~ [ linux-4.16.18 ] ~ [ linux-4.15.18 ] ~ [ linux-4.14.336 ] ~ [ linux-4.13.16 ] ~ [ linux-4.12.14 ] ~ [ linux-4.11.12 ] ~ [ linux-4.10.17 ] ~ [ linux-4.9.337 ] ~ [ linux-4.4.302 ] ~ [ linux-3.10.108 ] ~ [ linux-2.6.32.71 ] ~ [ linux-2.6.0 ] ~ [ linux-2.4.37.11 ] ~ [ unix-v6-master ] ~ [ ccs-tools-1.8.9 ] ~ [ policy-sample ] ~
Architecture: ~ [ i386 ] ~ [ alpha ] ~ [ m68k ] ~ [ mips ] ~ [ ppc ] ~ [ sparc ] ~ [ sparc64 ] ~

  1 /* SPDX-License-Identifier: GPL-2.0 */
  2 /*
  3  * Copyright (C) 2020-2022 Loongson Technology Corporation Limited
  4  */
  5 #ifndef _ASM_PGALLOC_H
  6 #define _ASM_PGALLOC_H
  7 
  8 #include <linux/mm.h>
  9 #include <linux/sched.h>
 10 
 11 #define __HAVE_ARCH_PMD_ALLOC_ONE
 12 #define __HAVE_ARCH_PUD_ALLOC_ONE
 13 #include <asm-generic/pgalloc.h>
 14 
 15 static inline void pmd_populate_kernel(struct mm_struct *mm,
 16                                        pmd_t *pmd, pte_t *pte)
 17 {
 18         set_pmd(pmd, __pmd((unsigned long)pte));
 19 }
 20 
 21 static inline void pmd_populate(struct mm_struct *mm, pmd_t *pmd, pgtable_t pte)
 22 {
 23         set_pmd(pmd, __pmd((unsigned long)page_address(pte)));
 24 }
 25 
 26 #ifndef __PAGETABLE_PMD_FOLDED
 27 
 28 static inline void pud_populate(struct mm_struct *mm, pud_t *pud, pmd_t *pmd)
 29 {
 30         set_pud(pud, __pud((unsigned long)pmd));
 31 }
 32 #endif
 33 
 34 #ifndef __PAGETABLE_PUD_FOLDED
 35 
 36 static inline void p4d_populate(struct mm_struct *mm, p4d_t *p4d, pud_t *pud)
 37 {
 38         set_p4d(p4d, __p4d((unsigned long)pud));
 39 }
 40 
 41 #endif /* __PAGETABLE_PUD_FOLDED */
 42 
 43 extern void pagetable_init(void);
 44 
 45 extern pgd_t *pgd_alloc(struct mm_struct *mm);
 46 
 47 #define __pte_free_tlb(tlb, pte, address)                       \
 48 do {                                                            \
 49         pagetable_pte_dtor(page_ptdesc(pte));                   \
 50         tlb_remove_page_ptdesc((tlb), page_ptdesc(pte));        \
 51 } while (0)
 52 
 53 #ifndef __PAGETABLE_PMD_FOLDED
 54 
 55 static inline pmd_t *pmd_alloc_one(struct mm_struct *mm, unsigned long address)
 56 {
 57         pmd_t *pmd;
 58         struct ptdesc *ptdesc;
 59 
 60         ptdesc = pagetable_alloc(GFP_KERNEL_ACCOUNT, 0);
 61         if (!ptdesc)
 62                 return NULL;
 63 
 64         if (!pagetable_pmd_ctor(ptdesc)) {
 65                 pagetable_free(ptdesc);
 66                 return NULL;
 67         }
 68 
 69         pmd = ptdesc_address(ptdesc);
 70         pmd_init(pmd);
 71         return pmd;
 72 }
 73 
 74 #define __pmd_free_tlb(tlb, x, addr)    pmd_free((tlb)->mm, x)
 75 
 76 #endif
 77 
 78 #ifndef __PAGETABLE_PUD_FOLDED
 79 
 80 static inline pud_t *pud_alloc_one(struct mm_struct *mm, unsigned long address)
 81 {
 82         pud_t *pud;
 83         struct ptdesc *ptdesc = pagetable_alloc(GFP_KERNEL & ~__GFP_HIGHMEM, 0);
 84 
 85         if (!ptdesc)
 86                 return NULL;
 87         pagetable_pud_ctor(ptdesc);
 88         pud = ptdesc_address(ptdesc);
 89 
 90         pud_init(pud);
 91         return pud;
 92 }
 93 
 94 #define __pud_free_tlb(tlb, x, addr)    pud_free((tlb)->mm, x)
 95 
 96 #endif /* __PAGETABLE_PUD_FOLDED */
 97 
 98 extern pte_t * __init populate_kernel_pte(unsigned long addr);
 99 #endif /* _ASM_PGALLOC_H */
100 

~ [ source navigation ] ~ [ diff markup ] ~ [ identifier search ] ~

kernel.org | git.kernel.org | LWN.net | Project Home | SVN repository | Mail admin

Linux® is a registered trademark of Linus Torvalds in the United States and other countries.
TOMOYO® is a registered trademark of NTT DATA CORPORATION.

sflogo.php