/usr/src/linux-headers-5.15.0-190/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-190/arch/um/include/asm/mmu_context.h (1174B)
/* SPDX-License-Identifier: GPL-2.0 */ /* * Copyright (C) 2002 - 2007 Jeff Dike (jdike@{addtoit,linux.intel}.com) */ #ifndef __UM_MMU_CONTEXT_H #define __UM_MMU_CONTEXT_H #include #include #include #include #include extern void force_flush_all(void); #define activate_mm activate_mm static inline void activate_mm(struct mm_struct *old, struct mm_struct *new) { /* * This is called by fs/exec.c and sys_unshare() * when the new ->mm is used for the first time. */ __switch_mm(&new->context.id); } static inline void switch_mm(struct mm_struct *prev, struct mm_struct *next, struct task_struct *tsk) { unsigned cpu = smp_processor_id(); if(prev != next){ cpumask_clear_cpu(cpu, mm_cpumask(prev)); cpumask_set_cpu(cpu, mm_cpumask(next)); if(next != &init_mm) __switch_mm(&next->context.id); } } #define init_new_context init_new_context extern int init_new_context(struct task_struct *task, struct mm_struct *mm); #define destroy_context destroy_context extern void destroy_context(struct mm_struct *mm); #include #endif