/usr/src/linux-headers-5.15.0-181/arch/um/include/asm
NameSizeModeActions
fpu/-0755rm
archrandom.h7350644editdlrm
asm-prototypes.h1290644editdlrm
cache.h4830644editdlrm
cacheflush.h2570644editdlrm
common.lds.S16790644editdlrm
cpufeature.h50110644editdlrm
delay.h6700644editdlrm
dma.h1800644editdlrm
fixmap.h16380644editdlrm
futex.h3530644editdlrm
hardirq.h2010644editdlrm
io.h4780644editdlrm
irq.h8280644editdlrm
irqflags.h8070644editdlrm
Kbuild7290644editdlrm
kvm_para.h340644editdlrm
mmu.h5220644editdlrm
mmu_context.h11740644editdlrm
msi.h290644editdlrm
page.h32390644editdlrm
pci.h8640644editdlrm
pgalloc.h10340644editdlrm
pgtable-2level.h12990644editdlrm
pgtable-3level.h26450644editdlrm
pgtable.h88310644editdlrm
processor-generic.h21930644editdlrm
ptrace-generic.h11870644editdlrm
sections.h2190644editdlrm
setup.h2730644editdlrm
smp.h1210644editdlrm
stacktrace.h10880644editdlrm
syscall-generic.h19740644editdlrm
sysrq.h1820644editdlrm
thread_info.h23320644editdlrm
timex.h1510644editdlrm
tlb.h1920644editdlrm
tlbflush.h9910644editdlrm
uaccess.h14710644editdlrm
unwind.h2130644editdlrm
vmalloc.h840644editdlrm
vmlinux.lds.h660644editdlrm
xor.h6390644editdlrm
Edit: /usr/src/linux-headers-5.15.0-181/arch/um/include/asm/pgalloc.h (1034B)
/* SPDX-License-Identifier: GPL-2.0 */ /* * Copyright (C) 2000, 2001, 2002 Jeff Dike (jdike@karaya.com) * Copyright 2003 PathScale, Inc. * Derived from include/asm-i386/pgalloc.h and include/asm-i386/pgtable.h */ #ifndef __UM_PGALLOC_H #define __UM_PGALLOC_H #include #include #define pmd_populate_kernel(mm, pmd, pte) \ set_pmd(pmd, __pmd(_PAGE_TABLE + (unsigned long) __pa(pte))) #define pmd_populate(mm, pmd, pte) \ set_pmd(pmd, __pmd(_PAGE_TABLE + \ ((unsigned long long)page_to_pfn(pte) << \ (unsigned long long) PAGE_SHIFT))) /* * Allocate and free page tables. */ extern pgd_t *pgd_alloc(struct mm_struct *); #define __pte_free_tlb(tlb,pte, address) \ do { \ pgtable_pte_page_dtor(pte); \ tlb_remove_page((tlb),(pte)); \ } while (0) #ifdef CONFIG_3_LEVEL_PGTABLES #define __pmd_free_tlb(tlb, pmd, address) \ do { \ pgtable_pmd_page_dtor(virt_to_page(pmd)); \ tlb_remove_page((tlb),virt_to_page(pmd)); \ } while (0) \ #endif #endif