Home
last modified time | relevance | path

Searched defs:mm (Results 1 – 25 of 656) sorted by relevance

12345678910>>...27

/Linux-v5.4/arch/powerpc/include/asm/
Dmmu_context.h50 static inline bool mm_iommu_is_devmem(struct mm_struct *mm, unsigned long hpa, in mm_iommu_is_devmem()
55 static inline void mm_iommu_init(struct mm_struct *mm) { } in mm_iommu_init()
77 static inline int alloc_extended_context(struct mm_struct *mm, in alloc_extended_context()
93 static inline bool need_extra_context(struct mm_struct *mm, unsigned long ea) in need_extra_context()
109 static inline int alloc_extended_context(struct mm_struct *mm, in alloc_extended_context()
117 static inline bool need_extra_context(struct mm_struct *mm, unsigned long ea) in need_extra_context()
126 static inline void radix_kvm_prefetch_workaround(struct mm_struct *mm) { } in radix_kvm_prefetch_workaround()
134 static inline void inc_mm_active_cpus(struct mm_struct *mm) in inc_mm_active_cpus()
139 static inline void dec_mm_active_cpus(struct mm_struct *mm) in dec_mm_active_cpus()
144 static inline void mm_context_add_copro(struct mm_struct *mm) in mm_context_add_copro()
[all …]
/Linux-v5.4/arch/s390/include/asm/
Dpgalloc.h37 static inline unsigned long pgd_entry_type(struct mm_struct *mm) in pgd_entry_type()
51 static inline p4d_t *p4d_alloc_one(struct mm_struct *mm, unsigned long address) in p4d_alloc_one()
59 #define p4d_free(mm, p4d) crst_table_free(mm, (unsigned long *) p4d) argument
61 static inline pud_t *pud_alloc_one(struct mm_struct *mm, unsigned long address) in pud_alloc_one()
68 #define pud_free(mm, pud) crst_table_free(mm, (unsigned long *) pud) argument
70 static inline pmd_t *pmd_alloc_one(struct mm_struct *mm, unsigned long vmaddr) in pmd_alloc_one()
84 static inline void pmd_free(struct mm_struct *mm, pmd_t *pmd) in pmd_free()
90 static inline void pgd_populate(struct mm_struct *mm, pgd_t *pgd, p4d_t *p4d) in pgd_populate()
95 static inline void p4d_populate(struct mm_struct *mm, p4d_t *p4d, pud_t *pud) in p4d_populate()
100 static inline void pud_populate(struct mm_struct *mm, pud_t *pud, pmd_t *pmd) in pud_populate()
[all …]
/Linux-v5.4/arch/x86/include/asm/
Dmmu_context.h31 static inline void load_mm_cr4_irqsoff(struct mm_struct *mm) in load_mm_cr4_irqsoff()
40 static inline void load_mm_cr4_irqsoff(struct mm_struct *mm) {} in load_mm_cr4_irqsoff()
81 static inline void init_new_context_ldt(struct mm_struct *mm) in init_new_context_ldt()
90 static inline void init_new_context_ldt(struct mm_struct *mm) { } in init_new_context_ldt()
92 struct mm_struct *mm) in ldt_dup_context()
96 static inline void destroy_context_ldt(struct mm_struct *mm) { } in destroy_context_ldt()
97 static inline void ldt_arch_exit_mmap(struct mm_struct *mm) { } in ldt_arch_exit_mmap()
100 static inline void load_mm_ldt(struct mm_struct *mm) in load_mm_ldt()
187 struct mm_struct *mm) in init_new_context()
205 static inline void destroy_context(struct mm_struct *mm) in destroy_context()
[all …]
Dpgalloc.h12 static inline int __paravirt_pgd_alloc(struct mm_struct *mm) { return 0; } in __paravirt_pgd_alloc()
17 #define paravirt_pgd_alloc(mm) __paravirt_pgd_alloc(mm) argument
18 static inline void paravirt_pgd_free(struct mm_struct *mm, pgd_t *pgd) {} in paravirt_pgd_free()
19 static inline void paravirt_alloc_pte(struct mm_struct *mm, unsigned long pfn) {} in paravirt_alloc_pte()
20 static inline void paravirt_alloc_pmd(struct mm_struct *mm, unsigned long pfn) {} in paravirt_alloc_pmd()
23 static inline void paravirt_alloc_pud(struct mm_struct *mm, unsigned long pfn) {} in paravirt_alloc_pud()
24 static inline void paravirt_alloc_p4d(struct mm_struct *mm, unsigned long pfn) {} in paravirt_alloc_p4d()
63 static inline void pmd_populate_kernel(struct mm_struct *mm, in pmd_populate_kernel()
70 static inline void pmd_populate_kernel_safe(struct mm_struct *mm, in pmd_populate_kernel_safe()
77 static inline void pmd_populate(struct mm_struct *mm, pmd_t *pmd, in pmd_populate()
[all …]
/Linux-v5.4/arch/m68k/include/asm/
Dmmu_context.h8 static inline void enter_lazy_tlb(struct mm_struct *mm, struct task_struct *tsk) in enter_lazy_tlb()
32 static inline void get_mmu_context(struct mm_struct *mm) in get_mmu_context()
56 #define init_new_context(tsk, mm) (((mm)->context = NO_CONTEXT), 0) argument
61 static inline void destroy_context(struct mm_struct *mm) in destroy_context()
87 struct mm_struct *mm) in activate_mm()
93 #define deactivate_mm(tsk, mm) do { } while (0) argument
100 struct mm_struct *mm; in load_ksp_mmu() local
170 struct mm_struct *mm) in init_new_context()
178 static inline void get_mmu_context(struct mm_struct *mm) in get_mmu_context()
185 static inline void destroy_context(struct mm_struct *mm) in destroy_context()
[all …]
Dmcf_pgalloc.h8 extern inline void pte_free_kernel(struct mm_struct *mm, pte_t *pte) in pte_free_kernel()
15 extern inline pte_t *pte_alloc_one_kernel(struct mm_struct *mm) in pte_alloc_one_kernel()
31 #define pmd_alloc_one_fast(mm, address) ({ BUG(); ((pmd_t *)1); }) argument
32 #define pmd_alloc_one(mm, address) ({ BUG(); ((pmd_t *)2); }) argument
34 #define pmd_populate(mm, pmd, page) (pmd_val(*pmd) = \ argument
37 #define pmd_populate_kernel(mm, pmd, pte) (pmd_val(*pmd) = (unsigned long)(pte)) argument
50 static inline struct page *pte_alloc_one(struct mm_struct *mm) in pte_alloc_one()
74 static inline void pte_free(struct mm_struct *mm, struct page *page) in pte_free()
84 #define pmd_free(mm, pmd) BUG() argument
86 static inline void pgd_free(struct mm_struct *mm, pgd_t *pgd) in pgd_free()
[all …]
Dmotorola_pgalloc.h11 static inline pte_t *pte_alloc_one_kernel(struct mm_struct *mm) in pte_alloc_one_kernel()
25 static inline void pte_free_kernel(struct mm_struct *mm, pte_t *pte) in pte_free_kernel()
31 static inline pgtable_t pte_alloc_one(struct mm_struct *mm) in pte_alloc_one()
52 static inline void pte_free(struct mm_struct *mm, pgtable_t page) in pte_free()
70 static inline pmd_t *pmd_alloc_one(struct mm_struct *mm, unsigned long address) in pmd_alloc_one()
75 static inline int pmd_free(struct mm_struct *mm, pmd_t *pmd) in pmd_free()
87 static inline void pgd_free(struct mm_struct *mm, pgd_t *pgd) in pgd_free()
92 static inline pgd_t *pgd_alloc(struct mm_struct *mm) in pgd_alloc()
98 static inline void pmd_populate_kernel(struct mm_struct *mm, pmd_t *pmd, pte_t *pte) in pmd_populate_kernel()
103 static inline void pmd_populate(struct mm_struct *mm, pmd_t *pmd, pgtable_t page) in pmd_populate()
[all …]
/Linux-v5.4/arch/s390/mm/
Dpgtable.c29 static inline void ptep_ipte_local(struct mm_struct *mm, unsigned long addr, in ptep_ipte_local()
49 static inline void ptep_ipte_global(struct mm_struct *mm, unsigned long addr, in ptep_ipte_global()
69 static inline pte_t ptep_flush_direct(struct mm_struct *mm, in ptep_flush_direct()
88 static inline pte_t ptep_flush_lazy(struct mm_struct *mm, in ptep_flush_lazy()
156 struct mm_struct *mm) in pgste_update_all()
177 struct mm_struct *mm) in pgste_set_key()
221 static inline pgste_t pgste_pte_notify(struct mm_struct *mm, in pgste_pte_notify()
237 static inline pgste_t ptep_xchg_start(struct mm_struct *mm, in ptep_xchg_start()
249 static inline pte_t ptep_xchg_commit(struct mm_struct *mm, in ptep_xchg_commit()
270 pte_t ptep_xchg_direct(struct mm_struct *mm, unsigned long addr, in ptep_xchg_direct()
[all …]
/Linux-v5.4/arch/parisc/include/asm/
Dpgalloc.h24 static inline pgd_t *pgd_alloc(struct mm_struct *mm) in pgd_alloc()
50 static inline void pgd_free(struct mm_struct *mm, pgd_t *pgd) in pgd_free()
62 static inline void pgd_populate(struct mm_struct *mm, pgd_t *pgd, pmd_t *pmd) in pgd_populate()
68 static inline pmd_t *pmd_alloc_one(struct mm_struct *mm, unsigned long address) in pmd_alloc_one()
76 static inline void pmd_free(struct mm_struct *mm, pmd_t *pmd) in pmd_free()
100 #define pmd_alloc_one(mm, addr) ({ BUG(); ((pmd_t *)2); }) argument
101 #define pmd_free(mm, x) do { } while (0) argument
102 #define pgd_populate(mm, pmd, pte) BUG() argument
107 pmd_populate_kernel(struct mm_struct *mm, pmd_t *pmd, pte_t *pte) in pmd_populate_kernel()
123 #define pmd_populate(mm, pmd, pte_page) \ argument
/Linux-v5.4/arch/powerpc/include/asm/book3s/64/
Dpgalloc.h27 static inline pgd_t *radix__pgd_alloc(struct mm_struct *mm) in radix__pgd_alloc()
41 static inline void radix__pgd_free(struct mm_struct *mm, pgd_t *pgd) in radix__pgd_free()
50 static inline pgd_t *pgd_alloc(struct mm_struct *mm) in pgd_alloc()
83 static inline void pgd_free(struct mm_struct *mm, pgd_t *pgd) in pgd_free()
90 static inline void pgd_populate(struct mm_struct *mm, pgd_t *pgd, pud_t *pud) in pgd_populate()
95 static inline pud_t *pud_alloc_one(struct mm_struct *mm, unsigned long addr) in pud_alloc_one()
112 static inline void pud_free(struct mm_struct *mm, pud_t *pud) in pud_free()
117 static inline void pud_populate(struct mm_struct *mm, pud_t *pud, pmd_t *pmd) in pud_populate()
133 static inline pmd_t *pmd_alloc_one(struct mm_struct *mm, unsigned long addr) in pmd_alloc_one()
138 static inline void pmd_free(struct mm_struct *mm, pmd_t *pmd) in pmd_free()
[all …]
/Linux-v5.4/mm/
Dmmu_notifier.c42 void __mmu_notifier_release(struct mm_struct *mm) in __mmu_notifier_release()
95 int __mmu_notifier_clear_flush_young(struct mm_struct *mm, in __mmu_notifier_clear_flush_young()
112 int __mmu_notifier_clear_young(struct mm_struct *mm, in __mmu_notifier_clear_young()
129 int __mmu_notifier_test_young(struct mm_struct *mm, in __mmu_notifier_test_young()
148 void __mmu_notifier_change_pte(struct mm_struct *mm, unsigned long address, in __mmu_notifier_change_pte()
231 void __mmu_notifier_invalidate_range(struct mm_struct *mm, in __mmu_notifier_invalidate_range()
249 int __mmu_notifier_register(struct mmu_notifier *mn, struct mm_struct *mm) in __mmu_notifier_register()
333 int mmu_notifier_register(struct mmu_notifier *mn, struct mm_struct *mm) in mmu_notifier_register()
345 find_get_mmu_notifier(struct mm_struct *mm, const struct mmu_notifier_ops *ops) in find_get_mmu_notifier()
383 struct mm_struct *mm) in mmu_notifier_get_locked()
[all …]
/Linux-v5.4/arch/ia64/include/asm/
Dpgalloc.h27 static inline pgd_t *pgd_alloc(struct mm_struct *mm) in pgd_alloc()
32 static inline void pgd_free(struct mm_struct *mm, pgd_t *pgd) in pgd_free()
39 pgd_populate(struct mm_struct *mm, pgd_t * pgd_entry, pud_t * pud) in pgd_populate()
44 static inline pud_t *pud_alloc_one(struct mm_struct *mm, unsigned long addr) in pud_alloc_one()
49 static inline void pud_free(struct mm_struct *mm, pud_t *pud) in pud_free()
57 pud_populate(struct mm_struct *mm, pud_t * pud_entry, pmd_t * pmd) in pud_populate()
62 static inline pmd_t *pmd_alloc_one(struct mm_struct *mm, unsigned long addr) in pmd_alloc_one()
67 static inline void pmd_free(struct mm_struct *mm, pmd_t *pmd) in pmd_free()
75 pmd_populate(struct mm_struct *mm, pmd_t * pmd_entry, pgtable_t pte) in pmd_populate()
82 pmd_populate_kernel(struct mm_struct *mm, pmd_t * pmd_entry, pte_t * pte) in pmd_populate_kernel()
/Linux-v5.4/arch/x86/mm/
Dmpx.c26 static inline unsigned long mpx_bd_size_bytes(struct mm_struct *mm) in mpx_bd_size_bytes()
34 static inline unsigned long mpx_bt_size_bytes(struct mm_struct *mm) in mpx_bt_size_bytes()
48 struct mm_struct *mm = current->mm; in mpx_mmap() local
215 struct mm_struct *mm = current->mm; in mpx_enable_management() local
250 struct mm_struct *mm = current->mm; in mpx_disable_management() local
261 static int mpx_cmpxchg_bd_entry(struct mm_struct *mm, in mpx_cmpxchg_bd_entry()
295 static int allocate_bt(struct mm_struct *mm, long __user *bd_entry) in allocate_bt()
377 struct mm_struct *mm = current->mm; in do_mpx_bt_fault() local
439 static unsigned long mpx_bd_entry_to_bt_addr(struct mm_struct *mm, in mpx_bd_entry_to_bt_addr()
467 static int get_user_bd_entry(struct mm_struct *mm, unsigned long *bd_entry_ret, in get_user_bd_entry()
[all …]
/Linux-v5.4/arch/arm/include/asm/
Dpgalloc.h25 static inline pmd_t *pmd_alloc_one(struct mm_struct *mm, unsigned long addr) in pmd_alloc_one()
30 static inline void pmd_free(struct mm_struct *mm, pmd_t *pmd) in pmd_free()
36 static inline void pud_populate(struct mm_struct *mm, pud_t *pud, pmd_t *pmd) in pud_populate()
46 #define pmd_alloc_one(mm,addr) ({ BUG(); ((pmd_t *)2); }) argument
47 #define pmd_free(mm, pmd) do { } while (0) argument
48 #define pud_populate(mm,pmd,pte) BUG() argument
82 pte_alloc_one_kernel(struct mm_struct *mm) in pte_alloc_one_kernel()
99 pte_alloc_one(struct mm_struct *mm) in pte_alloc_one()
129 pmd_populate_kernel(struct mm_struct *mm, pmd_t *pmdp, pte_t *ptep) in pmd_populate_kernel()
138 pmd_populate(struct mm_struct *mm, pmd_t *pmdp, pgtable_t ptep) in pmd_populate()
Dmmu_context.h30 init_new_context(struct task_struct *tsk, struct mm_struct *mm) in init_new_context()
40 static inline void a15_erratum_get_cpumask(int this_cpu, struct mm_struct *mm, in a15_erratum_get_cpumask()
50 static inline void check_and_switch_context(struct mm_struct *mm, in check_and_switch_context()
74 struct mm_struct *mm = current->mm; in finish_arch_post_lock_switch() local
96 init_new_context(struct task_struct *tsk, struct mm_struct *mm) in init_new_context()
104 #define destroy_context(mm) do { } while(0) argument
117 enter_lazy_tlb(struct mm_struct *mm, struct task_struct *tsk) in enter_lazy_tlb()
152 #define deactivate_mm(tsk,mm) do { } while (0) argument
/Linux-v5.4/arch/xtensa/include/asm/
Dpgalloc.h19 #define pmd_populate_kernel(mm, pmdp, ptep) \ argument
21 #define pmd_populate(mm, pmdp, page) \ argument
26 pgd_alloc(struct mm_struct *mm) in pgd_alloc()
31 static inline void pgd_free(struct mm_struct *mm, pgd_t *pgd) in pgd_free()
36 static inline pte_t *pte_alloc_one_kernel(struct mm_struct *mm) in pte_alloc_one_kernel()
49 static inline pgtable_t pte_alloc_one(struct mm_struct *mm) in pte_alloc_one()
65 static inline void pte_free_kernel(struct mm_struct *mm, pte_t *pte) in pte_free_kernel()
70 static inline void pte_free(struct mm_struct *mm, pgtable_t pte) in pte_free()
/Linux-v5.4/arch/x86/kernel/
Dldt.c54 struct mm_struct *mm = __mm; in flush_ldt() local
105 static void do_sanity_check(struct mm_struct *mm, in do_sanity_check()
150 static void map_ldt_struct_to_user(struct mm_struct *mm) in map_ldt_struct_to_user()
163 static void sanity_check_ldt_mapping(struct mm_struct *mm) in sanity_check_ldt_mapping()
180 static void map_ldt_struct_to_user(struct mm_struct *mm) in map_ldt_struct_to_user()
188 static void sanity_check_ldt_mapping(struct mm_struct *mm) in sanity_check_ldt_mapping()
204 map_ldt_struct(struct mm_struct *mm, struct ldt_struct *ldt, int slot) in map_ldt_struct()
265 static void unmap_ldt_struct(struct mm_struct *mm, struct ldt_struct *ldt) in unmap_ldt_struct()
297 map_ldt_struct(struct mm_struct *mm, struct ldt_struct *ldt, int slot) in map_ldt_struct()
302 static void unmap_ldt_struct(struct mm_struct *mm, struct ldt_struct *ldt) in unmap_ldt_struct()
[all …]
/Linux-v5.4/arch/microblaze/include/asm/
Dpgalloc.h39 #define pgd_free(mm, pgd) free_pgd(pgd) argument
40 #define pgd_alloc(mm) get_pgd() argument
48 #define pmd_alloc_one_fast(mm, address) ({ BUG(); ((pmd_t *)1); }) argument
49 #define pmd_alloc_one(mm, address) ({ BUG(); ((pmd_t *)2); }) argument
55 #define pmd_populate(mm, pmd, pte) \ argument
58 #define pmd_populate_kernel(mm, pmd, pte) \ argument
65 #define pmd_alloc_one(mm, address) ({ BUG(); ((pmd_t *)2); }) argument
66 #define pmd_free(mm, x) do { } while (0) argument
68 #define pgd_populate(mm, pmd, pte) BUG() argument
/Linux-v5.4/drivers/gpu/drm/amd/amdkfd/
Dkfd_mqd_manager_vi.c47 static void update_cu_mask(struct mqd_manager *mm, void *mqd, in update_cu_mask()
90 static void init_mqd(struct mqd_manager *mm, void **mqd, in init_mqd()
156 static int load_mqd(struct mqd_manager *mm, void *mqd, in load_mqd()
169 static void __update_mqd(struct mqd_manager *mm, void *mqd, in __update_mqd()
240 static void update_mqd(struct mqd_manager *mm, void *mqd, in update_mqd()
246 static void update_mqd_tonga(struct mqd_manager *mm, void *mqd, in update_mqd_tonga()
252 static int destroy_mqd(struct mqd_manager *mm, void *mqd, in destroy_mqd()
262 static void free_mqd(struct mqd_manager *mm, void *mqd, in free_mqd()
268 static bool is_occupied(struct mqd_manager *mm, void *mqd, in is_occupied()
277 static int get_wave_state(struct mqd_manager *mm, void *mqd, in get_wave_state()
[all …]
Dkfd_mqd_manager_cik.c44 static void update_cu_mask(struct mqd_manager *mm, void *mqd, in update_cu_mask()
87 static void init_mqd(struct mqd_manager *mm, void **mqd, in init_mqd()
141 static void init_mqd_sdma(struct mqd_manager *mm, void **mqd, in init_mqd_sdma()
158 static void free_mqd(struct mqd_manager *mm, void *mqd, in free_mqd()
165 static int load_mqd(struct mqd_manager *mm, void *mqd, uint32_t pipe_id, in load_mqd()
178 static int load_mqd_sdma(struct mqd_manager *mm, void *mqd, in load_mqd_sdma()
187 static void __update_mqd(struct mqd_manager *mm, void *mqd, in __update_mqd()
223 static void update_mqd(struct mqd_manager *mm, void *mqd, in update_mqd()
229 static void update_mqd_hawaii(struct mqd_manager *mm, void *mqd, in update_mqd_hawaii()
235 static void update_mqd_sdma(struct mqd_manager *mm, void *mqd, in update_mqd_sdma()
[all …]
Dkfd_mqd_manager_v10.c44 static void update_cu_mask(struct mqd_manager *mm, void *mqd, in update_cu_mask()
103 static void init_mqd(struct mqd_manager *mm, void **mqd, in init_mqd()
161 static int load_mqd(struct mqd_manager *mm, void *mqd, in load_mqd()
175 static void update_mqd(struct mqd_manager *mm, void *mqd, in update_mqd()
240 static int destroy_mqd(struct mqd_manager *mm, void *mqd, in destroy_mqd()
250 static void free_mqd(struct mqd_manager *mm, void *mqd, in free_mqd()
263 static bool is_occupied(struct mqd_manager *mm, void *mqd, in is_occupied()
272 static int get_wave_state(struct mqd_manager *mm, void *mqd, in get_wave_state()
295 static void init_mqd_hiq(struct mqd_manager *mm, void **mqd, in init_mqd_hiq()
309 static void update_mqd_hiq(struct mqd_manager *mm, void *mqd, in update_mqd_hiq()
[all …]
/Linux-v5.4/arch/unicore32/include/asm/
Dmmu_context.h21 #define init_new_context(tsk, mm) 0 argument
23 #define destroy_context(mm) do { } while (0) argument
35 enter_lazy_tlb(struct mm_struct *mm, struct task_struct *tsk) in enter_lazy_tlb()
55 #define deactivate_mm(tsk, mm) do { } while (0) argument
65 #define arch_exit_mmap(mm) \ argument
82 struct mm_struct *mm) in arch_dup_mmap()
87 static inline void arch_unmap(struct mm_struct *mm, in arch_unmap()
92 static inline void arch_bprm_mm_init(struct mm_struct *mm, in arch_bprm_mm_init()
/Linux-v5.4/arch/mips/include/asm/
Dpgalloc.h18 static inline void pmd_populate_kernel(struct mm_struct *mm, pmd_t *pmd, in pmd_populate_kernel()
24 static inline void pmd_populate(struct mm_struct *mm, pmd_t *pmd, in pmd_populate()
38 static inline void pud_populate(struct mm_struct *mm, pud_t *pud, pmd_t *pmd) in pud_populate()
50 static inline void pgd_free(struct mm_struct *mm, pgd_t *pgd) in pgd_free()
63 static inline pmd_t *pmd_alloc_one(struct mm_struct *mm, unsigned long address) in pmd_alloc_one()
73 static inline void pmd_free(struct mm_struct *mm, pmd_t *pmd) in pmd_free()
84 static inline pud_t *pud_alloc_one(struct mm_struct *mm, unsigned long address) in pud_alloc_one()
94 static inline void pud_free(struct mm_struct *mm, pud_t *pud) in pud_free()
99 static inline void pgd_populate(struct mm_struct *mm, pgd_t *pgd, pud_t *pud) in pgd_populate()
/Linux-v5.4/arch/arc/include/asm/
Dpgalloc.h36 pmd_populate_kernel(struct mm_struct *mm, pmd_t *pmd, pte_t *pte) in pmd_populate_kernel()
42 pmd_populate(struct mm_struct *mm, pmd_t *pmd, pgtable_t ptep) in pmd_populate()
52 static inline pgd_t *pgd_alloc(struct mm_struct *mm) in pgd_alloc()
71 static inline void pgd_free(struct mm_struct *mm, pgd_t *pgd) in pgd_free()
90 static inline pte_t *pte_alloc_one_kernel(struct mm_struct *mm) in pte_alloc_one_kernel()
101 pte_alloc_one(struct mm_struct *mm) in pte_alloc_one()
119 static inline void pte_free_kernel(struct mm_struct *mm, pte_t *pte) in pte_free_kernel()
124 static inline void pte_free(struct mm_struct *mm, pgtable_t ptep) in pte_free()
/Linux-v5.4/include/asm-generic/
Dpgalloc.h19 static inline pte_t *__pte_alloc_one_kernel(struct mm_struct *mm) in __pte_alloc_one_kernel()
31 static inline pte_t *pte_alloc_one_kernel(struct mm_struct *mm) in pte_alloc_one_kernel()
42 static inline void pte_free_kernel(struct mm_struct *mm, pte_t *pte) in pte_free_kernel()
59 static inline pgtable_t __pte_alloc_one(struct mm_struct *mm, gfp_t gfp) in __pte_alloc_one()
83 static inline pgtable_t pte_alloc_one(struct mm_struct *mm) in pte_alloc_one()
99 static inline void pte_free(struct mm_struct *mm, struct page *pte_page) in pte_free()

12345678910>>...27