/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/processor-generic.h (2193B)
/* SPDX-License-Identifier: GPL-2.0 */ /* * Copyright (C) 2000 - 2007 Jeff Dike (jdike@{addtoit,linux.intel}.com) */ #ifndef __UM_PROCESSOR_GENERIC_H #define __UM_PROCESSOR_GENERIC_H struct pt_regs; struct task_struct; #include #include #include #include #include struct mm_struct; struct thread_struct { struct pt_regs regs; struct pt_regs *segv_regs; int singlestep_syscall; void *fault_addr; jmp_buf *fault_catcher; struct task_struct *prev_sched; struct arch_thread arch; jmp_buf switch_buf; struct { int op; union { struct { int pid; } fork, exec; struct { int (*proc)(void *); void *arg; } thread; struct { void (*proc)(void *); void *arg; } cb; } u; } request; }; #define INIT_THREAD \ { \ .regs = EMPTY_REGS, \ .fault_addr = NULL, \ .prev_sched = NULL, \ .arch = INIT_ARCH_THREAD, \ .request = { 0 } \ } static inline void release_thread(struct task_struct *task) { } static inline void mm_copy_segments(struct mm_struct *from_mm, struct mm_struct *new_mm) { } /* * User space process size: 3GB (default). */ extern unsigned long task_size; #define TASK_SIZE (task_size) #undef STACK_TOP #undef STACK_TOP_MAX extern unsigned long stacksizelim; #define STACK_ROOM (stacksizelim) #define STACK_TOP (TASK_SIZE - 2 * PAGE_SIZE) #define STACK_TOP_MAX STACK_TOP /* This decides where the kernel will search for a free chunk of vm * space during mmap's. */ #define TASK_UNMAPPED_BASE (0x40000000) extern void start_thread(struct pt_regs *regs, unsigned long entry, unsigned long stack); struct cpuinfo_um { unsigned long loops_per_jiffy; int ipi_pipe[2]; int cache_alignment; union { __u32 x86_capability[NCAPINTS + NBUGINTS]; unsigned long x86_capability_alignment; }; }; extern struct cpuinfo_um boot_cpu_data; #define cpu_data (&boot_cpu_data) #define current_cpu_data boot_cpu_data #define cache_line_size() (boot_cpu_data.cache_alignment) #define KSTK_REG(tsk, reg) get_thread_reg(reg, &tsk->thread.switch_buf) extern unsigned long __get_wchan(struct task_struct *p); #endif