/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/syscall-generic.h (1974B)
/* SPDX-License-Identifier: GPL-2.0-only */ /* * Access to user system call parameters and results * * See asm-generic/syscall.h for function descriptions. * * Copyright (C) 2015 Mickaël Salaün */ #ifndef __UM_SYSCALL_GENERIC_H #define __UM_SYSCALL_GENERIC_H #include #include #include #include static inline int syscall_get_nr(struct task_struct *task, struct pt_regs *regs) { return PT_REGS_SYSCALL_NR(regs); } static inline void syscall_rollback(struct task_struct *task, struct pt_regs *regs) { /* do nothing */ } static inline long syscall_get_error(struct task_struct *task, struct pt_regs *regs) { const long error = regs_return_value(regs); return IS_ERR_VALUE(error) ? error : 0; } static inline long syscall_get_return_value(struct task_struct *task, struct pt_regs *regs) { return regs_return_value(regs); } static inline void syscall_set_return_value(struct task_struct *task, struct pt_regs *regs, int error, long val) { PT_REGS_SET_SYSCALL_RETURN(regs, (long) error ?: val); } static inline void syscall_get_arguments(struct task_struct *task, struct pt_regs *regs, unsigned long *args) { const struct uml_pt_regs *r = ®s->regs; *args++ = UPT_SYSCALL_ARG1(r); *args++ = UPT_SYSCALL_ARG2(r); *args++ = UPT_SYSCALL_ARG3(r); *args++ = UPT_SYSCALL_ARG4(r); *args++ = UPT_SYSCALL_ARG5(r); *args = UPT_SYSCALL_ARG6(r); } static inline void syscall_set_arguments(struct task_struct *task, struct pt_regs *regs, const unsigned long *args) { struct uml_pt_regs *r = ®s->regs; UPT_SYSCALL_ARG1(r) = *args++; UPT_SYSCALL_ARG2(r) = *args++; UPT_SYSCALL_ARG3(r) = *args++; UPT_SYSCALL_ARG4(r) = *args++; UPT_SYSCALL_ARG5(r) = *args++; UPT_SYSCALL_ARG6(r) = *args; } /* See arch/x86/um/asm/syscall.h for syscall_get_arch() definition. */ #endif /* __UM_SYSCALL_GENERIC_H */