Update to v5.0 kernel headers.
Test: Builds and boots on taimen. Change-Id: I13843bf1ab30ea89a50852adc88f2cba8401bded
This commit is contained in:
parent
ff16c0b89b
commit
d842e43e1d
87 changed files with 2095 additions and 1291 deletions
|
@ -47,4 +47,7 @@
|
|||
#define HWCAP_ILRCPC (1 << 26)
|
||||
#define HWCAP_FLAGM (1 << 27)
|
||||
#define HWCAP_SSBS (1 << 28)
|
||||
#define HWCAP_SB (1 << 29)
|
||||
#define HWCAP_PACA (1 << 30)
|
||||
#define HWCAP_PACG (1UL << 31)
|
||||
#endif
|
||||
|
|
|
@ -20,7 +20,7 @@
|
|||
#define _UAPI__ASM_PTRACE_H
|
||||
#include <linux/types.h>
|
||||
#include <asm/hwcap.h>
|
||||
#include <asm/sigcontext.h>
|
||||
#include <asm/sve_context.h>
|
||||
#define PSR_MODE_EL0t 0x00000000
|
||||
#define PSR_MODE_EL1t 0x00000004
|
||||
#define PSR_MODE_EL1h 0x00000005
|
||||
|
@ -81,26 +81,29 @@ struct user_sve_header {
|
|||
#define SVE_PT_REGS_SVE SVE_PT_REGS_MASK
|
||||
#define SVE_PT_VL_INHERIT (PR_SVE_VL_INHERIT >> 16)
|
||||
#define SVE_PT_VL_ONEXEC (PR_SVE_SET_VL_ONEXEC >> 16)
|
||||
#define SVE_PT_REGS_OFFSET ((sizeof(struct sve_context) + (SVE_VQ_BYTES - 1)) / SVE_VQ_BYTES * SVE_VQ_BYTES)
|
||||
#define SVE_PT_REGS_OFFSET ((sizeof(struct user_sve_header) + (__SVE_VQ_BYTES - 1)) / __SVE_VQ_BYTES * __SVE_VQ_BYTES)
|
||||
#define SVE_PT_FPSIMD_OFFSET SVE_PT_REGS_OFFSET
|
||||
#define SVE_PT_FPSIMD_SIZE(vq,flags) (sizeof(struct user_fpsimd_state))
|
||||
#define SVE_PT_SVE_ZREG_SIZE(vq) SVE_SIG_ZREG_SIZE(vq)
|
||||
#define SVE_PT_SVE_PREG_SIZE(vq) SVE_SIG_PREG_SIZE(vq)
|
||||
#define SVE_PT_SVE_FFR_SIZE(vq) SVE_SIG_FFR_SIZE(vq)
|
||||
#define SVE_PT_SVE_ZREG_SIZE(vq) __SVE_ZREG_SIZE(vq)
|
||||
#define SVE_PT_SVE_PREG_SIZE(vq) __SVE_PREG_SIZE(vq)
|
||||
#define SVE_PT_SVE_FFR_SIZE(vq) __SVE_FFR_SIZE(vq)
|
||||
#define SVE_PT_SVE_FPSR_SIZE sizeof(__u32)
|
||||
#define SVE_PT_SVE_FPCR_SIZE sizeof(__u32)
|
||||
#define __SVE_SIG_TO_PT(offset) ((offset) - SVE_SIG_REGS_OFFSET + SVE_PT_REGS_OFFSET)
|
||||
#define SVE_PT_SVE_OFFSET SVE_PT_REGS_OFFSET
|
||||
#define SVE_PT_SVE_ZREGS_OFFSET __SVE_SIG_TO_PT(SVE_SIG_ZREGS_OFFSET)
|
||||
#define SVE_PT_SVE_ZREG_OFFSET(vq,n) __SVE_SIG_TO_PT(SVE_SIG_ZREG_OFFSET(vq, n))
|
||||
#define SVE_PT_SVE_ZREGS_SIZE(vq) (SVE_PT_SVE_ZREG_OFFSET(vq, SVE_NUM_ZREGS) - SVE_PT_SVE_ZREGS_OFFSET)
|
||||
#define SVE_PT_SVE_PREGS_OFFSET(vq) __SVE_SIG_TO_PT(SVE_SIG_PREGS_OFFSET(vq))
|
||||
#define SVE_PT_SVE_PREG_OFFSET(vq,n) __SVE_SIG_TO_PT(SVE_SIG_PREG_OFFSET(vq, n))
|
||||
#define SVE_PT_SVE_PREGS_SIZE(vq) (SVE_PT_SVE_PREG_OFFSET(vq, SVE_NUM_PREGS) - SVE_PT_SVE_PREGS_OFFSET(vq))
|
||||
#define SVE_PT_SVE_FFR_OFFSET(vq) __SVE_SIG_TO_PT(SVE_SIG_FFR_OFFSET(vq))
|
||||
#define SVE_PT_SVE_FPSR_OFFSET(vq) ((SVE_PT_SVE_FFR_OFFSET(vq) + SVE_PT_SVE_FFR_SIZE(vq) + (SVE_VQ_BYTES - 1)) / SVE_VQ_BYTES * SVE_VQ_BYTES)
|
||||
#define SVE_PT_SVE_ZREGS_OFFSET (SVE_PT_REGS_OFFSET + __SVE_ZREGS_OFFSET)
|
||||
#define SVE_PT_SVE_ZREG_OFFSET(vq,n) (SVE_PT_REGS_OFFSET + __SVE_ZREG_OFFSET(vq, n))
|
||||
#define SVE_PT_SVE_ZREGS_SIZE(vq) (SVE_PT_SVE_ZREG_OFFSET(vq, __SVE_NUM_ZREGS) - SVE_PT_SVE_ZREGS_OFFSET)
|
||||
#define SVE_PT_SVE_PREGS_OFFSET(vq) (SVE_PT_REGS_OFFSET + __SVE_PREGS_OFFSET(vq))
|
||||
#define SVE_PT_SVE_PREG_OFFSET(vq,n) (SVE_PT_REGS_OFFSET + __SVE_PREG_OFFSET(vq, n))
|
||||
#define SVE_PT_SVE_PREGS_SIZE(vq) (SVE_PT_SVE_PREG_OFFSET(vq, __SVE_NUM_PREGS) - SVE_PT_SVE_PREGS_OFFSET(vq))
|
||||
#define SVE_PT_SVE_FFR_OFFSET(vq) (SVE_PT_REGS_OFFSET + __SVE_FFR_OFFSET(vq))
|
||||
#define SVE_PT_SVE_FPSR_OFFSET(vq) ((SVE_PT_SVE_FFR_OFFSET(vq) + SVE_PT_SVE_FFR_SIZE(vq) + (__SVE_VQ_BYTES - 1)) / __SVE_VQ_BYTES * __SVE_VQ_BYTES)
|
||||
#define SVE_PT_SVE_FPCR_OFFSET(vq) (SVE_PT_SVE_FPSR_OFFSET(vq) + SVE_PT_SVE_FPSR_SIZE)
|
||||
#define SVE_PT_SVE_SIZE(vq,flags) ((SVE_PT_SVE_FPCR_OFFSET(vq) + SVE_PT_SVE_FPCR_SIZE - SVE_PT_SVE_OFFSET + (SVE_VQ_BYTES - 1)) / SVE_VQ_BYTES * SVE_VQ_BYTES)
|
||||
#define SVE_PT_SVE_SIZE(vq,flags) ((SVE_PT_SVE_FPCR_OFFSET(vq) + SVE_PT_SVE_FPCR_SIZE - SVE_PT_SVE_OFFSET + (__SVE_VQ_BYTES - 1)) / __SVE_VQ_BYTES * __SVE_VQ_BYTES)
|
||||
#define SVE_PT_SIZE(vq,flags) (((flags) & SVE_PT_REGS_MASK) == SVE_PT_REGS_SVE ? SVE_PT_SVE_OFFSET + SVE_PT_SVE_SIZE(vq, flags) : SVE_PT_FPSIMD_OFFSET + SVE_PT_FPSIMD_SIZE(vq, flags))
|
||||
struct user_pac_mask {
|
||||
__u64 data_mask;
|
||||
__u64 insn_mask;
|
||||
};
|
||||
#endif
|
||||
#endif
|
||||
|
|
|
@ -58,27 +58,28 @@ struct sve_context {
|
|||
__u16 __reserved[3];
|
||||
};
|
||||
#endif
|
||||
#define SVE_VQ_BYTES 16
|
||||
#define SVE_VQ_MIN 1
|
||||
#define SVE_VQ_MAX 512
|
||||
#define SVE_VL_MIN (SVE_VQ_MIN * SVE_VQ_BYTES)
|
||||
#define SVE_VL_MAX (SVE_VQ_MAX * SVE_VQ_BYTES)
|
||||
#define SVE_NUM_ZREGS 32
|
||||
#define SVE_NUM_PREGS 16
|
||||
#define sve_vl_valid(vl) ((vl) % SVE_VQ_BYTES == 0 && (vl) >= SVE_VL_MIN && (vl) <= SVE_VL_MAX)
|
||||
#define sve_vq_from_vl(vl) ((vl) / SVE_VQ_BYTES)
|
||||
#define sve_vl_from_vq(vq) ((vq) * SVE_VQ_BYTES)
|
||||
#define SVE_SIG_ZREG_SIZE(vq) ((__u32) (vq) * SVE_VQ_BYTES)
|
||||
#define SVE_SIG_PREG_SIZE(vq) ((__u32) (vq) * (SVE_VQ_BYTES / 8))
|
||||
#define SVE_SIG_FFR_SIZE(vq) SVE_SIG_PREG_SIZE(vq)
|
||||
#define SVE_SIG_REGS_OFFSET ((sizeof(struct sve_context) + (SVE_VQ_BYTES - 1)) / SVE_VQ_BYTES * SVE_VQ_BYTES)
|
||||
#define SVE_SIG_ZREGS_OFFSET SVE_SIG_REGS_OFFSET
|
||||
#define SVE_SIG_ZREG_OFFSET(vq,n) (SVE_SIG_ZREGS_OFFSET + SVE_SIG_ZREG_SIZE(vq) * (n))
|
||||
#define SVE_SIG_ZREGS_SIZE(vq) (SVE_SIG_ZREG_OFFSET(vq, SVE_NUM_ZREGS) - SVE_SIG_ZREGS_OFFSET)
|
||||
#define SVE_SIG_PREGS_OFFSET(vq) (SVE_SIG_ZREGS_OFFSET + SVE_SIG_ZREGS_SIZE(vq))
|
||||
#define SVE_SIG_PREG_OFFSET(vq,n) (SVE_SIG_PREGS_OFFSET(vq) + SVE_SIG_PREG_SIZE(vq) * (n))
|
||||
#define SVE_SIG_PREGS_SIZE(vq) (SVE_SIG_PREG_OFFSET(vq, SVE_NUM_PREGS) - SVE_SIG_PREGS_OFFSET(vq))
|
||||
#define SVE_SIG_FFR_OFFSET(vq) (SVE_SIG_PREGS_OFFSET(vq) + SVE_SIG_PREGS_SIZE(vq))
|
||||
#define SVE_SIG_REGS_SIZE(vq) (SVE_SIG_FFR_OFFSET(vq) + SVE_SIG_FFR_SIZE(vq) - SVE_SIG_REGS_OFFSET)
|
||||
#include <asm/sve_context.h>
|
||||
#define SVE_VQ_BYTES __SVE_VQ_BYTES
|
||||
#define SVE_VQ_MIN __SVE_VQ_MIN
|
||||
#define SVE_VQ_MAX __SVE_VQ_MAX
|
||||
#define SVE_VL_MIN __SVE_VL_MIN
|
||||
#define SVE_VL_MAX __SVE_VL_MAX
|
||||
#define SVE_NUM_ZREGS __SVE_NUM_ZREGS
|
||||
#define SVE_NUM_PREGS __SVE_NUM_PREGS
|
||||
#define sve_vl_valid(vl) __sve_vl_valid(vl)
|
||||
#define sve_vq_from_vl(vl) __sve_vq_from_vl(vl)
|
||||
#define sve_vl_from_vq(vq) __sve_vl_from_vq(vq)
|
||||
#define SVE_SIG_ZREG_SIZE(vq) __SVE_ZREG_SIZE(vq)
|
||||
#define SVE_SIG_PREG_SIZE(vq) __SVE_PREG_SIZE(vq)
|
||||
#define SVE_SIG_FFR_SIZE(vq) __SVE_FFR_SIZE(vq)
|
||||
#define SVE_SIG_REGS_OFFSET ((sizeof(struct sve_context) + (__SVE_VQ_BYTES - 1)) / __SVE_VQ_BYTES * __SVE_VQ_BYTES)
|
||||
#define SVE_SIG_ZREGS_OFFSET (SVE_SIG_REGS_OFFSET + __SVE_ZREGS_OFFSET)
|
||||
#define SVE_SIG_ZREG_OFFSET(vq,n) (SVE_SIG_REGS_OFFSET + __SVE_ZREG_OFFSET(vq, n))
|
||||
#define SVE_SIG_ZREGS_SIZE(vq) __SVE_ZREGS_SIZE(vq)
|
||||
#define SVE_SIG_PREGS_OFFSET(vq) (SVE_SIG_REGS_OFFSET + __SVE_PREGS_OFFSET(vq))
|
||||
#define SVE_SIG_PREG_OFFSET(vq,n) (SVE_SIG_REGS_OFFSET + __SVE_PREG_OFFSET(vq, n))
|
||||
#define SVE_SIG_PREGS_SIZE(vq) __SVE_PREGS_SIZE(vq)
|
||||
#define SVE_SIG_FFR_OFFSET(vq) (SVE_SIG_REGS_OFFSET + __SVE_FFR_OFFSET(vq))
|
||||
#define SVE_SIG_REGS_SIZE(vq) (__SVE_FFR_OFFSET(vq) + __SVE_FFR_SIZE(vq))
|
||||
#define SVE_SIG_CONTEXT_SIZE(vq) (SVE_SIG_REGS_OFFSET + SVE_SIG_REGS_SIZE(vq))
|
||||
#endif
|
||||
|
|
42
libc/kernel/uapi/asm-arm64/asm/sve_context.h
Normal file
42
libc/kernel/uapi/asm-arm64/asm/sve_context.h
Normal file
|
@ -0,0 +1,42 @@
|
|||
/****************************************************************************
|
||||
****************************************************************************
|
||||
***
|
||||
*** This header was automatically generated from a Linux kernel header
|
||||
*** of the same name, to make information necessary for userspace to
|
||||
*** call into the kernel available to libc. It contains only constants,
|
||||
*** structures, and macros generated from the original header, and thus,
|
||||
*** contains no copyrightable information.
|
||||
***
|
||||
*** To edit the content of this header, modify the corresponding
|
||||
*** source file (e.g. under external/kernel-headers/original/) then
|
||||
*** run bionic/libc/kernel/tools/update_all.py
|
||||
***
|
||||
*** Any manual change here will be lost the next time this script will
|
||||
*** be run. You've been warned!
|
||||
***
|
||||
****************************************************************************
|
||||
****************************************************************************/
|
||||
#ifndef _UAPI__ASM_SVE_CONTEXT_H
|
||||
#define _UAPI__ASM_SVE_CONTEXT_H
|
||||
#include <linux/types.h>
|
||||
#define __SVE_VQ_BYTES 16
|
||||
#define __SVE_VQ_MIN 1
|
||||
#define __SVE_VQ_MAX 512
|
||||
#define __SVE_VL_MIN (__SVE_VQ_MIN * __SVE_VQ_BYTES)
|
||||
#define __SVE_VL_MAX (__SVE_VQ_MAX * __SVE_VQ_BYTES)
|
||||
#define __SVE_NUM_ZREGS 32
|
||||
#define __SVE_NUM_PREGS 16
|
||||
#define __sve_vl_valid(vl) ((vl) % __SVE_VQ_BYTES == 0 && (vl) >= __SVE_VL_MIN && (vl) <= __SVE_VL_MAX)
|
||||
#define __sve_vq_from_vl(vl) ((vl) / __SVE_VQ_BYTES)
|
||||
#define __sve_vl_from_vq(vq) ((vq) * __SVE_VQ_BYTES)
|
||||
#define __SVE_ZREG_SIZE(vq) ((__u32) (vq) * __SVE_VQ_BYTES)
|
||||
#define __SVE_PREG_SIZE(vq) ((__u32) (vq) * (__SVE_VQ_BYTES / 8))
|
||||
#define __SVE_FFR_SIZE(vq) __SVE_PREG_SIZE(vq)
|
||||
#define __SVE_ZREGS_OFFSET 0
|
||||
#define __SVE_ZREG_OFFSET(vq,n) (__SVE_ZREGS_OFFSET + __SVE_ZREG_SIZE(vq) * (n))
|
||||
#define __SVE_ZREGS_SIZE(vq) (__SVE_ZREG_OFFSET(vq, __SVE_NUM_ZREGS) - __SVE_ZREGS_OFFSET)
|
||||
#define __SVE_PREGS_OFFSET(vq) (__SVE_ZREGS_OFFSET + __SVE_ZREGS_SIZE(vq))
|
||||
#define __SVE_PREG_OFFSET(vq,n) (__SVE_PREGS_OFFSET(vq) + __SVE_PREG_SIZE(vq) * (n))
|
||||
#define __SVE_PREGS_SIZE(vq) (__SVE_PREG_OFFSET(vq, __SVE_NUM_PREGS) - __SVE_PREGS_OFFSET(vq))
|
||||
#define __SVE_FFR_OFFSET(vq) (__SVE_PREGS_OFFSET(vq) + __SVE_PREGS_SIZE(vq))
|
||||
#endif
|
|
@ -321,8 +321,9 @@
|
|||
#define __NR_statx 291
|
||||
#define __NR_io_pgetevents 292
|
||||
#define __NR_rseq 293
|
||||
#define __NR_kexec_file_load 294
|
||||
#undef __NR_syscalls
|
||||
#define __NR_syscalls 294
|
||||
#define __NR_syscalls 295
|
||||
#if __BITS_PER_LONG == 64 && !defined(__SYSCALL_COMPAT)
|
||||
#define __NR_fcntl __NR3264_fcntl
|
||||
#define __NR_statfs __NR3264_statfs
|
||||
|
|
|
@ -549,8 +549,9 @@ enum mm_32a_minor_op {
|
|||
mm_ext_op = 0x02c,
|
||||
mm_pool32axf_op = 0x03c,
|
||||
mm_srl32_op = 0x040,
|
||||
mm_srlv32_op = 0x050,
|
||||
mm_sra_op = 0x080,
|
||||
mm_srlv32_op = 0x090,
|
||||
mm_srav_op = 0x090,
|
||||
mm_rotr_op = 0x0c0,
|
||||
mm_lwxs_op = 0x118,
|
||||
mm_addu32_op = 0x150,
|
||||
|
|
|
@ -18,9 +18,6 @@
|
|||
****************************************************************************/
|
||||
#ifndef __ASM_SGIDEFS_H
|
||||
#define __ASM_SGIDEFS_H
|
||||
#ifndef __linux__
|
||||
#error Use a Linux compiler or give up .
|
||||
#endif
|
||||
#define _MIPS_ISA_MIPS1 1
|
||||
#define _MIPS_ISA_MIPS2 2
|
||||
#define _MIPS_ISA_MIPS3 3
|
||||
|
|
File diff suppressed because it is too large
Load diff
353
libc/kernel/uapi/asm-mips/asm/unistd_n32.h
Normal file
353
libc/kernel/uapi/asm-mips/asm/unistd_n32.h
Normal file
|
@ -0,0 +1,353 @@
|
|||
/****************************************************************************
|
||||
****************************************************************************
|
||||
***
|
||||
*** This header was automatically generated from a Linux kernel header
|
||||
*** of the same name, to make information necessary for userspace to
|
||||
*** call into the kernel available to libc. It contains only constants,
|
||||
*** structures, and macros generated from the original header, and thus,
|
||||
*** contains no copyrightable information.
|
||||
***
|
||||
*** To edit the content of this header, modify the corresponding
|
||||
*** source file (e.g. under external/kernel-headers/original/) then
|
||||
*** run bionic/libc/kernel/tools/update_all.py
|
||||
***
|
||||
*** Any manual change here will be lost the next time this script will
|
||||
*** be run. You've been warned!
|
||||
***
|
||||
****************************************************************************
|
||||
****************************************************************************/
|
||||
#ifndef _UAPI_ASM_MIPS_UNISTD_N32_H
|
||||
#define _UAPI_ASM_MIPS_UNISTD_N32_H
|
||||
#define __NR_read (__NR_Linux + 0)
|
||||
#define __NR_write (__NR_Linux + 1)
|
||||
#define __NR_open (__NR_Linux + 2)
|
||||
#define __NR_close (__NR_Linux + 3)
|
||||
#define __NR_stat (__NR_Linux + 4)
|
||||
#define __NR_fstat (__NR_Linux + 5)
|
||||
#define __NR_lstat (__NR_Linux + 6)
|
||||
#define __NR_poll (__NR_Linux + 7)
|
||||
#define __NR_lseek (__NR_Linux + 8)
|
||||
#define __NR_mmap (__NR_Linux + 9)
|
||||
#define __NR_mprotect (__NR_Linux + 10)
|
||||
#define __NR_munmap (__NR_Linux + 11)
|
||||
#define __NR_brk (__NR_Linux + 12)
|
||||
#define __NR_rt_sigaction (__NR_Linux + 13)
|
||||
#define __NR_rt_sigprocmask (__NR_Linux + 14)
|
||||
#define __NR_ioctl (__NR_Linux + 15)
|
||||
#define __NR_pread64 (__NR_Linux + 16)
|
||||
#define __NR_pwrite64 (__NR_Linux + 17)
|
||||
#define __NR_readv (__NR_Linux + 18)
|
||||
#define __NR_writev (__NR_Linux + 19)
|
||||
#define __NR_access (__NR_Linux + 20)
|
||||
#define __NR_pipe (__NR_Linux + 21)
|
||||
#define __NR__newselect (__NR_Linux + 22)
|
||||
#define __NR_sched_yield (__NR_Linux + 23)
|
||||
#define __NR_mremap (__NR_Linux + 24)
|
||||
#define __NR_msync (__NR_Linux + 25)
|
||||
#define __NR_mincore (__NR_Linux + 26)
|
||||
#define __NR_madvise (__NR_Linux + 27)
|
||||
#define __NR_shmget (__NR_Linux + 28)
|
||||
#define __NR_shmat (__NR_Linux + 29)
|
||||
#define __NR_shmctl (__NR_Linux + 30)
|
||||
#define __NR_dup (__NR_Linux + 31)
|
||||
#define __NR_dup2 (__NR_Linux + 32)
|
||||
#define __NR_pause (__NR_Linux + 33)
|
||||
#define __NR_nanosleep (__NR_Linux + 34)
|
||||
#define __NR_getitimer (__NR_Linux + 35)
|
||||
#define __NR_setitimer (__NR_Linux + 36)
|
||||
#define __NR_alarm (__NR_Linux + 37)
|
||||
#define __NR_getpid (__NR_Linux + 38)
|
||||
#define __NR_sendfile (__NR_Linux + 39)
|
||||
#define __NR_socket (__NR_Linux + 40)
|
||||
#define __NR_connect (__NR_Linux + 41)
|
||||
#define __NR_accept (__NR_Linux + 42)
|
||||
#define __NR_sendto (__NR_Linux + 43)
|
||||
#define __NR_recvfrom (__NR_Linux + 44)
|
||||
#define __NR_sendmsg (__NR_Linux + 45)
|
||||
#define __NR_recvmsg (__NR_Linux + 46)
|
||||
#define __NR_shutdown (__NR_Linux + 47)
|
||||
#define __NR_bind (__NR_Linux + 48)
|
||||
#define __NR_listen (__NR_Linux + 49)
|
||||
#define __NR_getsockname (__NR_Linux + 50)
|
||||
#define __NR_getpeername (__NR_Linux + 51)
|
||||
#define __NR_socketpair (__NR_Linux + 52)
|
||||
#define __NR_setsockopt (__NR_Linux + 53)
|
||||
#define __NR_getsockopt (__NR_Linux + 54)
|
||||
#define __NR_clone (__NR_Linux + 55)
|
||||
#define __NR_fork (__NR_Linux + 56)
|
||||
#define __NR_execve (__NR_Linux + 57)
|
||||
#define __NR_exit (__NR_Linux + 58)
|
||||
#define __NR_wait4 (__NR_Linux + 59)
|
||||
#define __NR_kill (__NR_Linux + 60)
|
||||
#define __NR_uname (__NR_Linux + 61)
|
||||
#define __NR_semget (__NR_Linux + 62)
|
||||
#define __NR_semop (__NR_Linux + 63)
|
||||
#define __NR_semctl (__NR_Linux + 64)
|
||||
#define __NR_shmdt (__NR_Linux + 65)
|
||||
#define __NR_msgget (__NR_Linux + 66)
|
||||
#define __NR_msgsnd (__NR_Linux + 67)
|
||||
#define __NR_msgrcv (__NR_Linux + 68)
|
||||
#define __NR_msgctl (__NR_Linux + 69)
|
||||
#define __NR_fcntl (__NR_Linux + 70)
|
||||
#define __NR_flock (__NR_Linux + 71)
|
||||
#define __NR_fsync (__NR_Linux + 72)
|
||||
#define __NR_fdatasync (__NR_Linux + 73)
|
||||
#define __NR_truncate (__NR_Linux + 74)
|
||||
#define __NR_ftruncate (__NR_Linux + 75)
|
||||
#define __NR_getdents (__NR_Linux + 76)
|
||||
#define __NR_getcwd (__NR_Linux + 77)
|
||||
#define __NR_chdir (__NR_Linux + 78)
|
||||
#define __NR_fchdir (__NR_Linux + 79)
|
||||
#define __NR_rename (__NR_Linux + 80)
|
||||
#define __NR_mkdir (__NR_Linux + 81)
|
||||
#define __NR_rmdir (__NR_Linux + 82)
|
||||
#define __NR_creat (__NR_Linux + 83)
|
||||
#define __NR_link (__NR_Linux + 84)
|
||||
#define __NR_unlink (__NR_Linux + 85)
|
||||
#define __NR_symlink (__NR_Linux + 86)
|
||||
#define __NR_readlink (__NR_Linux + 87)
|
||||
#define __NR_chmod (__NR_Linux + 88)
|
||||
#define __NR_fchmod (__NR_Linux + 89)
|
||||
#define __NR_chown (__NR_Linux + 90)
|
||||
#define __NR_fchown (__NR_Linux + 91)
|
||||
#define __NR_lchown (__NR_Linux + 92)
|
||||
#define __NR_umask (__NR_Linux + 93)
|
||||
#define __NR_gettimeofday (__NR_Linux + 94)
|
||||
#define __NR_getrlimit (__NR_Linux + 95)
|
||||
#define __NR_getrusage (__NR_Linux + 96)
|
||||
#define __NR_sysinfo (__NR_Linux + 97)
|
||||
#define __NR_times (__NR_Linux + 98)
|
||||
#define __NR_ptrace (__NR_Linux + 99)
|
||||
#define __NR_getuid (__NR_Linux + 100)
|
||||
#define __NR_syslog (__NR_Linux + 101)
|
||||
#define __NR_getgid (__NR_Linux + 102)
|
||||
#define __NR_setuid (__NR_Linux + 103)
|
||||
#define __NR_setgid (__NR_Linux + 104)
|
||||
#define __NR_geteuid (__NR_Linux + 105)
|
||||
#define __NR_getegid (__NR_Linux + 106)
|
||||
#define __NR_setpgid (__NR_Linux + 107)
|
||||
#define __NR_getppid (__NR_Linux + 108)
|
||||
#define __NR_getpgrp (__NR_Linux + 109)
|
||||
#define __NR_setsid (__NR_Linux + 110)
|
||||
#define __NR_setreuid (__NR_Linux + 111)
|
||||
#define __NR_setregid (__NR_Linux + 112)
|
||||
#define __NR_getgroups (__NR_Linux + 113)
|
||||
#define __NR_setgroups (__NR_Linux + 114)
|
||||
#define __NR_setresuid (__NR_Linux + 115)
|
||||
#define __NR_getresuid (__NR_Linux + 116)
|
||||
#define __NR_setresgid (__NR_Linux + 117)
|
||||
#define __NR_getresgid (__NR_Linux + 118)
|
||||
#define __NR_getpgid (__NR_Linux + 119)
|
||||
#define __NR_setfsuid (__NR_Linux + 120)
|
||||
#define __NR_setfsgid (__NR_Linux + 121)
|
||||
#define __NR_getsid (__NR_Linux + 122)
|
||||
#define __NR_capget (__NR_Linux + 123)
|
||||
#define __NR_capset (__NR_Linux + 124)
|
||||
#define __NR_rt_sigpending (__NR_Linux + 125)
|
||||
#define __NR_rt_sigtimedwait (__NR_Linux + 126)
|
||||
#define __NR_rt_sigqueueinfo (__NR_Linux + 127)
|
||||
#define __NR_rt_sigsuspend (__NR_Linux + 128)
|
||||
#define __NR_sigaltstack (__NR_Linux + 129)
|
||||
#define __NR_utime (__NR_Linux + 130)
|
||||
#define __NR_mknod (__NR_Linux + 131)
|
||||
#define __NR_personality (__NR_Linux + 132)
|
||||
#define __NR_ustat (__NR_Linux + 133)
|
||||
#define __NR_statfs (__NR_Linux + 134)
|
||||
#define __NR_fstatfs (__NR_Linux + 135)
|
||||
#define __NR_sysfs (__NR_Linux + 136)
|
||||
#define __NR_getpriority (__NR_Linux + 137)
|
||||
#define __NR_setpriority (__NR_Linux + 138)
|
||||
#define __NR_sched_setparam (__NR_Linux + 139)
|
||||
#define __NR_sched_getparam (__NR_Linux + 140)
|
||||
#define __NR_sched_setscheduler (__NR_Linux + 141)
|
||||
#define __NR_sched_getscheduler (__NR_Linux + 142)
|
||||
#define __NR_sched_get_priority_max (__NR_Linux + 143)
|
||||
#define __NR_sched_get_priority_min (__NR_Linux + 144)
|
||||
#define __NR_sched_rr_get_interval (__NR_Linux + 145)
|
||||
#define __NR_mlock (__NR_Linux + 146)
|
||||
#define __NR_munlock (__NR_Linux + 147)
|
||||
#define __NR_mlockall (__NR_Linux + 148)
|
||||
#define __NR_munlockall (__NR_Linux + 149)
|
||||
#define __NR_vhangup (__NR_Linux + 150)
|
||||
#define __NR_pivot_root (__NR_Linux + 151)
|
||||
#define __NR__sysctl (__NR_Linux + 152)
|
||||
#define __NR_prctl (__NR_Linux + 153)
|
||||
#define __NR_adjtimex (__NR_Linux + 154)
|
||||
#define __NR_setrlimit (__NR_Linux + 155)
|
||||
#define __NR_chroot (__NR_Linux + 156)
|
||||
#define __NR_sync (__NR_Linux + 157)
|
||||
#define __NR_acct (__NR_Linux + 158)
|
||||
#define __NR_settimeofday (__NR_Linux + 159)
|
||||
#define __NR_mount (__NR_Linux + 160)
|
||||
#define __NR_umount2 (__NR_Linux + 161)
|
||||
#define __NR_swapon (__NR_Linux + 162)
|
||||
#define __NR_swapoff (__NR_Linux + 163)
|
||||
#define __NR_reboot (__NR_Linux + 164)
|
||||
#define __NR_sethostname (__NR_Linux + 165)
|
||||
#define __NR_setdomainname (__NR_Linux + 166)
|
||||
#define __NR_create_module (__NR_Linux + 167)
|
||||
#define __NR_init_module (__NR_Linux + 168)
|
||||
#define __NR_delete_module (__NR_Linux + 169)
|
||||
#define __NR_get_kernel_syms (__NR_Linux + 170)
|
||||
#define __NR_query_module (__NR_Linux + 171)
|
||||
#define __NR_quotactl (__NR_Linux + 172)
|
||||
#define __NR_nfsservctl (__NR_Linux + 173)
|
||||
#define __NR_getpmsg (__NR_Linux + 174)
|
||||
#define __NR_putpmsg (__NR_Linux + 175)
|
||||
#define __NR_afs_syscall (__NR_Linux + 176)
|
||||
#define __NR_reserved177 (__NR_Linux + 177)
|
||||
#define __NR_gettid (__NR_Linux + 178)
|
||||
#define __NR_readahead (__NR_Linux + 179)
|
||||
#define __NR_setxattr (__NR_Linux + 180)
|
||||
#define __NR_lsetxattr (__NR_Linux + 181)
|
||||
#define __NR_fsetxattr (__NR_Linux + 182)
|
||||
#define __NR_getxattr (__NR_Linux + 183)
|
||||
#define __NR_lgetxattr (__NR_Linux + 184)
|
||||
#define __NR_fgetxattr (__NR_Linux + 185)
|
||||
#define __NR_listxattr (__NR_Linux + 186)
|
||||
#define __NR_llistxattr (__NR_Linux + 187)
|
||||
#define __NR_flistxattr (__NR_Linux + 188)
|
||||
#define __NR_removexattr (__NR_Linux + 189)
|
||||
#define __NR_lremovexattr (__NR_Linux + 190)
|
||||
#define __NR_fremovexattr (__NR_Linux + 191)
|
||||
#define __NR_tkill (__NR_Linux + 192)
|
||||
#define __NR_reserved193 (__NR_Linux + 193)
|
||||
#define __NR_futex (__NR_Linux + 194)
|
||||
#define __NR_sched_setaffinity (__NR_Linux + 195)
|
||||
#define __NR_sched_getaffinity (__NR_Linux + 196)
|
||||
#define __NR_cacheflush (__NR_Linux + 197)
|
||||
#define __NR_cachectl (__NR_Linux + 198)
|
||||
#define __NR_sysmips (__NR_Linux + 199)
|
||||
#define __NR_io_setup (__NR_Linux + 200)
|
||||
#define __NR_io_destroy (__NR_Linux + 201)
|
||||
#define __NR_io_getevents (__NR_Linux + 202)
|
||||
#define __NR_io_submit (__NR_Linux + 203)
|
||||
#define __NR_io_cancel (__NR_Linux + 204)
|
||||
#define __NR_exit_group (__NR_Linux + 205)
|
||||
#define __NR_lookup_dcookie (__NR_Linux + 206)
|
||||
#define __NR_epoll_create (__NR_Linux + 207)
|
||||
#define __NR_epoll_ctl (__NR_Linux + 208)
|
||||
#define __NR_epoll_wait (__NR_Linux + 209)
|
||||
#define __NR_remap_file_pages (__NR_Linux + 210)
|
||||
#define __NR_rt_sigreturn (__NR_Linux + 211)
|
||||
#define __NR_fcntl64 (__NR_Linux + 212)
|
||||
#define __NR_set_tid_address (__NR_Linux + 213)
|
||||
#define __NR_restart_syscall (__NR_Linux + 214)
|
||||
#define __NR_semtimedop (__NR_Linux + 215)
|
||||
#define __NR_fadvise64 (__NR_Linux + 216)
|
||||
#define __NR_statfs64 (__NR_Linux + 217)
|
||||
#define __NR_fstatfs64 (__NR_Linux + 218)
|
||||
#define __NR_sendfile64 (__NR_Linux + 219)
|
||||
#define __NR_timer_create (__NR_Linux + 220)
|
||||
#define __NR_timer_settime (__NR_Linux + 221)
|
||||
#define __NR_timer_gettime (__NR_Linux + 222)
|
||||
#define __NR_timer_getoverrun (__NR_Linux + 223)
|
||||
#define __NR_timer_delete (__NR_Linux + 224)
|
||||
#define __NR_clock_settime (__NR_Linux + 225)
|
||||
#define __NR_clock_gettime (__NR_Linux + 226)
|
||||
#define __NR_clock_getres (__NR_Linux + 227)
|
||||
#define __NR_clock_nanosleep (__NR_Linux + 228)
|
||||
#define __NR_tgkill (__NR_Linux + 229)
|
||||
#define __NR_utimes (__NR_Linux + 230)
|
||||
#define __NR_mbind (__NR_Linux + 231)
|
||||
#define __NR_get_mempolicy (__NR_Linux + 232)
|
||||
#define __NR_set_mempolicy (__NR_Linux + 233)
|
||||
#define __NR_mq_open (__NR_Linux + 234)
|
||||
#define __NR_mq_unlink (__NR_Linux + 235)
|
||||
#define __NR_mq_timedsend (__NR_Linux + 236)
|
||||
#define __NR_mq_timedreceive (__NR_Linux + 237)
|
||||
#define __NR_mq_notify (__NR_Linux + 238)
|
||||
#define __NR_mq_getsetattr (__NR_Linux + 239)
|
||||
#define __NR_vserver (__NR_Linux + 240)
|
||||
#define __NR_waitid (__NR_Linux + 241)
|
||||
#define __NR_add_key (__NR_Linux + 243)
|
||||
#define __NR_request_key (__NR_Linux + 244)
|
||||
#define __NR_keyctl (__NR_Linux + 245)
|
||||
#define __NR_set_thread_area (__NR_Linux + 246)
|
||||
#define __NR_inotify_init (__NR_Linux + 247)
|
||||
#define __NR_inotify_add_watch (__NR_Linux + 248)
|
||||
#define __NR_inotify_rm_watch (__NR_Linux + 249)
|
||||
#define __NR_migrate_pages (__NR_Linux + 250)
|
||||
#define __NR_openat (__NR_Linux + 251)
|
||||
#define __NR_mkdirat (__NR_Linux + 252)
|
||||
#define __NR_mknodat (__NR_Linux + 253)
|
||||
#define __NR_fchownat (__NR_Linux + 254)
|
||||
#define __NR_futimesat (__NR_Linux + 255)
|
||||
#define __NR_newfstatat (__NR_Linux + 256)
|
||||
#define __NR_unlinkat (__NR_Linux + 257)
|
||||
#define __NR_renameat (__NR_Linux + 258)
|
||||
#define __NR_linkat (__NR_Linux + 259)
|
||||
#define __NR_symlinkat (__NR_Linux + 260)
|
||||
#define __NR_readlinkat (__NR_Linux + 261)
|
||||
#define __NR_fchmodat (__NR_Linux + 262)
|
||||
#define __NR_faccessat (__NR_Linux + 263)
|
||||
#define __NR_pselect6 (__NR_Linux + 264)
|
||||
#define __NR_ppoll (__NR_Linux + 265)
|
||||
#define __NR_unshare (__NR_Linux + 266)
|
||||
#define __NR_splice (__NR_Linux + 267)
|
||||
#define __NR_sync_file_range (__NR_Linux + 268)
|
||||
#define __NR_tee (__NR_Linux + 269)
|
||||
#define __NR_vmsplice (__NR_Linux + 270)
|
||||
#define __NR_move_pages (__NR_Linux + 271)
|
||||
#define __NR_set_robust_list (__NR_Linux + 272)
|
||||
#define __NR_get_robust_list (__NR_Linux + 273)
|
||||
#define __NR_kexec_load (__NR_Linux + 274)
|
||||
#define __NR_getcpu (__NR_Linux + 275)
|
||||
#define __NR_epoll_pwait (__NR_Linux + 276)
|
||||
#define __NR_ioprio_set (__NR_Linux + 277)
|
||||
#define __NR_ioprio_get (__NR_Linux + 278)
|
||||
#define __NR_utimensat (__NR_Linux + 279)
|
||||
#define __NR_signalfd (__NR_Linux + 280)
|
||||
#define __NR_timerfd (__NR_Linux + 281)
|
||||
#define __NR_eventfd (__NR_Linux + 282)
|
||||
#define __NR_fallocate (__NR_Linux + 283)
|
||||
#define __NR_timerfd_create (__NR_Linux + 284)
|
||||
#define __NR_timerfd_gettime (__NR_Linux + 285)
|
||||
#define __NR_timerfd_settime (__NR_Linux + 286)
|
||||
#define __NR_signalfd4 (__NR_Linux + 287)
|
||||
#define __NR_eventfd2 (__NR_Linux + 288)
|
||||
#define __NR_epoll_create1 (__NR_Linux + 289)
|
||||
#define __NR_dup3 (__NR_Linux + 290)
|
||||
#define __NR_pipe2 (__NR_Linux + 291)
|
||||
#define __NR_inotify_init1 (__NR_Linux + 292)
|
||||
#define __NR_preadv (__NR_Linux + 293)
|
||||
#define __NR_pwritev (__NR_Linux + 294)
|
||||
#define __NR_rt_tgsigqueueinfo (__NR_Linux + 295)
|
||||
#define __NR_perf_event_open (__NR_Linux + 296)
|
||||
#define __NR_accept4 (__NR_Linux + 297)
|
||||
#define __NR_recvmmsg (__NR_Linux + 298)
|
||||
#define __NR_getdents64 (__NR_Linux + 299)
|
||||
#define __NR_fanotify_init (__NR_Linux + 300)
|
||||
#define __NR_fanotify_mark (__NR_Linux + 301)
|
||||
#define __NR_prlimit64 (__NR_Linux + 302)
|
||||
#define __NR_name_to_handle_at (__NR_Linux + 303)
|
||||
#define __NR_open_by_handle_at (__NR_Linux + 304)
|
||||
#define __NR_clock_adjtime (__NR_Linux + 305)
|
||||
#define __NR_syncfs (__NR_Linux + 306)
|
||||
#define __NR_sendmmsg (__NR_Linux + 307)
|
||||
#define __NR_setns (__NR_Linux + 308)
|
||||
#define __NR_process_vm_readv (__NR_Linux + 309)
|
||||
#define __NR_process_vm_writev (__NR_Linux + 310)
|
||||
#define __NR_kcmp (__NR_Linux + 311)
|
||||
#define __NR_finit_module (__NR_Linux + 312)
|
||||
#define __NR_sched_setattr (__NR_Linux + 313)
|
||||
#define __NR_sched_getattr (__NR_Linux + 314)
|
||||
#define __NR_renameat2 (__NR_Linux + 315)
|
||||
#define __NR_seccomp (__NR_Linux + 316)
|
||||
#define __NR_getrandom (__NR_Linux + 317)
|
||||
#define __NR_memfd_create (__NR_Linux + 318)
|
||||
#define __NR_bpf (__NR_Linux + 319)
|
||||
#define __NR_execveat (__NR_Linux + 320)
|
||||
#define __NR_userfaultfd (__NR_Linux + 321)
|
||||
#define __NR_membarrier (__NR_Linux + 322)
|
||||
#define __NR_mlock2 (__NR_Linux + 323)
|
||||
#define __NR_copy_file_range (__NR_Linux + 324)
|
||||
#define __NR_preadv2 (__NR_Linux + 325)
|
||||
#define __NR_pwritev2 (__NR_Linux + 326)
|
||||
#define __NR_pkey_mprotect (__NR_Linux + 327)
|
||||
#define __NR_pkey_alloc (__NR_Linux + 328)
|
||||
#define __NR_pkey_free (__NR_Linux + 329)
|
||||
#define __NR_statx (__NR_Linux + 330)
|
||||
#define __NR_rseq (__NR_Linux + 331)
|
||||
#define __NR_io_pgetevents (__NR_Linux + 332)
|
||||
#endif
|
349
libc/kernel/uapi/asm-mips/asm/unistd_n64.h
Normal file
349
libc/kernel/uapi/asm-mips/asm/unistd_n64.h
Normal file
|
@ -0,0 +1,349 @@
|
|||
/****************************************************************************
|
||||
****************************************************************************
|
||||
***
|
||||
*** This header was automatically generated from a Linux kernel header
|
||||
*** of the same name, to make information necessary for userspace to
|
||||
*** call into the kernel available to libc. It contains only constants,
|
||||
*** structures, and macros generated from the original header, and thus,
|
||||
*** contains no copyrightable information.
|
||||
***
|
||||
*** To edit the content of this header, modify the corresponding
|
||||
*** source file (e.g. under external/kernel-headers/original/) then
|
||||
*** run bionic/libc/kernel/tools/update_all.py
|
||||
***
|
||||
*** Any manual change here will be lost the next time this script will
|
||||
*** be run. You've been warned!
|
||||
***
|
||||
****************************************************************************
|
||||
****************************************************************************/
|
||||
#ifndef _UAPI_ASM_MIPS_UNISTD_N64_H
|
||||
#define _UAPI_ASM_MIPS_UNISTD_N64_H
|
||||
#define __NR_read (__NR_Linux + 0)
|
||||
#define __NR_write (__NR_Linux + 1)
|
||||
#define __NR_open (__NR_Linux + 2)
|
||||
#define __NR_close (__NR_Linux + 3)
|
||||
#define __NR_stat (__NR_Linux + 4)
|
||||
#define __NR_fstat (__NR_Linux + 5)
|
||||
#define __NR_lstat (__NR_Linux + 6)
|
||||
#define __NR_poll (__NR_Linux + 7)
|
||||
#define __NR_lseek (__NR_Linux + 8)
|
||||
#define __NR_mmap (__NR_Linux + 9)
|
||||
#define __NR_mprotect (__NR_Linux + 10)
|
||||
#define __NR_munmap (__NR_Linux + 11)
|
||||
#define __NR_brk (__NR_Linux + 12)
|
||||
#define __NR_rt_sigaction (__NR_Linux + 13)
|
||||
#define __NR_rt_sigprocmask (__NR_Linux + 14)
|
||||
#define __NR_ioctl (__NR_Linux + 15)
|
||||
#define __NR_pread64 (__NR_Linux + 16)
|
||||
#define __NR_pwrite64 (__NR_Linux + 17)
|
||||
#define __NR_readv (__NR_Linux + 18)
|
||||
#define __NR_writev (__NR_Linux + 19)
|
||||
#define __NR_access (__NR_Linux + 20)
|
||||
#define __NR_pipe (__NR_Linux + 21)
|
||||
#define __NR__newselect (__NR_Linux + 22)
|
||||
#define __NR_sched_yield (__NR_Linux + 23)
|
||||
#define __NR_mremap (__NR_Linux + 24)
|
||||
#define __NR_msync (__NR_Linux + 25)
|
||||
#define __NR_mincore (__NR_Linux + 26)
|
||||
#define __NR_madvise (__NR_Linux + 27)
|
||||
#define __NR_shmget (__NR_Linux + 28)
|
||||
#define __NR_shmat (__NR_Linux + 29)
|
||||
#define __NR_shmctl (__NR_Linux + 30)
|
||||
#define __NR_dup (__NR_Linux + 31)
|
||||
#define __NR_dup2 (__NR_Linux + 32)
|
||||
#define __NR_pause (__NR_Linux + 33)
|
||||
#define __NR_nanosleep (__NR_Linux + 34)
|
||||
#define __NR_getitimer (__NR_Linux + 35)
|
||||
#define __NR_setitimer (__NR_Linux + 36)
|
||||
#define __NR_alarm (__NR_Linux + 37)
|
||||
#define __NR_getpid (__NR_Linux + 38)
|
||||
#define __NR_sendfile (__NR_Linux + 39)
|
||||
#define __NR_socket (__NR_Linux + 40)
|
||||
#define __NR_connect (__NR_Linux + 41)
|
||||
#define __NR_accept (__NR_Linux + 42)
|
||||
#define __NR_sendto (__NR_Linux + 43)
|
||||
#define __NR_recvfrom (__NR_Linux + 44)
|
||||
#define __NR_sendmsg (__NR_Linux + 45)
|
||||
#define __NR_recvmsg (__NR_Linux + 46)
|
||||
#define __NR_shutdown (__NR_Linux + 47)
|
||||
#define __NR_bind (__NR_Linux + 48)
|
||||
#define __NR_listen (__NR_Linux + 49)
|
||||
#define __NR_getsockname (__NR_Linux + 50)
|
||||
#define __NR_getpeername (__NR_Linux + 51)
|
||||
#define __NR_socketpair (__NR_Linux + 52)
|
||||
#define __NR_setsockopt (__NR_Linux + 53)
|
||||
#define __NR_getsockopt (__NR_Linux + 54)
|
||||
#define __NR_clone (__NR_Linux + 55)
|
||||
#define __NR_fork (__NR_Linux + 56)
|
||||
#define __NR_execve (__NR_Linux + 57)
|
||||
#define __NR_exit (__NR_Linux + 58)
|
||||
#define __NR_wait4 (__NR_Linux + 59)
|
||||
#define __NR_kill (__NR_Linux + 60)
|
||||
#define __NR_uname (__NR_Linux + 61)
|
||||
#define __NR_semget (__NR_Linux + 62)
|
||||
#define __NR_semop (__NR_Linux + 63)
|
||||
#define __NR_semctl (__NR_Linux + 64)
|
||||
#define __NR_shmdt (__NR_Linux + 65)
|
||||
#define __NR_msgget (__NR_Linux + 66)
|
||||
#define __NR_msgsnd (__NR_Linux + 67)
|
||||
#define __NR_msgrcv (__NR_Linux + 68)
|
||||
#define __NR_msgctl (__NR_Linux + 69)
|
||||
#define __NR_fcntl (__NR_Linux + 70)
|
||||
#define __NR_flock (__NR_Linux + 71)
|
||||
#define __NR_fsync (__NR_Linux + 72)
|
||||
#define __NR_fdatasync (__NR_Linux + 73)
|
||||
#define __NR_truncate (__NR_Linux + 74)
|
||||
#define __NR_ftruncate (__NR_Linux + 75)
|
||||
#define __NR_getdents (__NR_Linux + 76)
|
||||
#define __NR_getcwd (__NR_Linux + 77)
|
||||
#define __NR_chdir (__NR_Linux + 78)
|
||||
#define __NR_fchdir (__NR_Linux + 79)
|
||||
#define __NR_rename (__NR_Linux + 80)
|
||||
#define __NR_mkdir (__NR_Linux + 81)
|
||||
#define __NR_rmdir (__NR_Linux + 82)
|
||||
#define __NR_creat (__NR_Linux + 83)
|
||||
#define __NR_link (__NR_Linux + 84)
|
||||
#define __NR_unlink (__NR_Linux + 85)
|
||||
#define __NR_symlink (__NR_Linux + 86)
|
||||
#define __NR_readlink (__NR_Linux + 87)
|
||||
#define __NR_chmod (__NR_Linux + 88)
|
||||
#define __NR_fchmod (__NR_Linux + 89)
|
||||
#define __NR_chown (__NR_Linux + 90)
|
||||
#define __NR_fchown (__NR_Linux + 91)
|
||||
#define __NR_lchown (__NR_Linux + 92)
|
||||
#define __NR_umask (__NR_Linux + 93)
|
||||
#define __NR_gettimeofday (__NR_Linux + 94)
|
||||
#define __NR_getrlimit (__NR_Linux + 95)
|
||||
#define __NR_getrusage (__NR_Linux + 96)
|
||||
#define __NR_sysinfo (__NR_Linux + 97)
|
||||
#define __NR_times (__NR_Linux + 98)
|
||||
#define __NR_ptrace (__NR_Linux + 99)
|
||||
#define __NR_getuid (__NR_Linux + 100)
|
||||
#define __NR_syslog (__NR_Linux + 101)
|
||||
#define __NR_getgid (__NR_Linux + 102)
|
||||
#define __NR_setuid (__NR_Linux + 103)
|
||||
#define __NR_setgid (__NR_Linux + 104)
|
||||
#define __NR_geteuid (__NR_Linux + 105)
|
||||
#define __NR_getegid (__NR_Linux + 106)
|
||||
#define __NR_setpgid (__NR_Linux + 107)
|
||||
#define __NR_getppid (__NR_Linux + 108)
|
||||
#define __NR_getpgrp (__NR_Linux + 109)
|
||||
#define __NR_setsid (__NR_Linux + 110)
|
||||
#define __NR_setreuid (__NR_Linux + 111)
|
||||
#define __NR_setregid (__NR_Linux + 112)
|
||||
#define __NR_getgroups (__NR_Linux + 113)
|
||||
#define __NR_setgroups (__NR_Linux + 114)
|
||||
#define __NR_setresuid (__NR_Linux + 115)
|
||||
#define __NR_getresuid (__NR_Linux + 116)
|
||||
#define __NR_setresgid (__NR_Linux + 117)
|
||||
#define __NR_getresgid (__NR_Linux + 118)
|
||||
#define __NR_getpgid (__NR_Linux + 119)
|
||||
#define __NR_setfsuid (__NR_Linux + 120)
|
||||
#define __NR_setfsgid (__NR_Linux + 121)
|
||||
#define __NR_getsid (__NR_Linux + 122)
|
||||
#define __NR_capget (__NR_Linux + 123)
|
||||
#define __NR_capset (__NR_Linux + 124)
|
||||
#define __NR_rt_sigpending (__NR_Linux + 125)
|
||||
#define __NR_rt_sigtimedwait (__NR_Linux + 126)
|
||||
#define __NR_rt_sigqueueinfo (__NR_Linux + 127)
|
||||
#define __NR_rt_sigsuspend (__NR_Linux + 128)
|
||||
#define __NR_sigaltstack (__NR_Linux + 129)
|
||||
#define __NR_utime (__NR_Linux + 130)
|
||||
#define __NR_mknod (__NR_Linux + 131)
|
||||
#define __NR_personality (__NR_Linux + 132)
|
||||
#define __NR_ustat (__NR_Linux + 133)
|
||||
#define __NR_statfs (__NR_Linux + 134)
|
||||
#define __NR_fstatfs (__NR_Linux + 135)
|
||||
#define __NR_sysfs (__NR_Linux + 136)
|
||||
#define __NR_getpriority (__NR_Linux + 137)
|
||||
#define __NR_setpriority (__NR_Linux + 138)
|
||||
#define __NR_sched_setparam (__NR_Linux + 139)
|
||||
#define __NR_sched_getparam (__NR_Linux + 140)
|
||||
#define __NR_sched_setscheduler (__NR_Linux + 141)
|
||||
#define __NR_sched_getscheduler (__NR_Linux + 142)
|
||||
#define __NR_sched_get_priority_max (__NR_Linux + 143)
|
||||
#define __NR_sched_get_priority_min (__NR_Linux + 144)
|
||||
#define __NR_sched_rr_get_interval (__NR_Linux + 145)
|
||||
#define __NR_mlock (__NR_Linux + 146)
|
||||
#define __NR_munlock (__NR_Linux + 147)
|
||||
#define __NR_mlockall (__NR_Linux + 148)
|
||||
#define __NR_munlockall (__NR_Linux + 149)
|
||||
#define __NR_vhangup (__NR_Linux + 150)
|
||||
#define __NR_pivot_root (__NR_Linux + 151)
|
||||
#define __NR__sysctl (__NR_Linux + 152)
|
||||
#define __NR_prctl (__NR_Linux + 153)
|
||||
#define __NR_adjtimex (__NR_Linux + 154)
|
||||
#define __NR_setrlimit (__NR_Linux + 155)
|
||||
#define __NR_chroot (__NR_Linux + 156)
|
||||
#define __NR_sync (__NR_Linux + 157)
|
||||
#define __NR_acct (__NR_Linux + 158)
|
||||
#define __NR_settimeofday (__NR_Linux + 159)
|
||||
#define __NR_mount (__NR_Linux + 160)
|
||||
#define __NR_umount2 (__NR_Linux + 161)
|
||||
#define __NR_swapon (__NR_Linux + 162)
|
||||
#define __NR_swapoff (__NR_Linux + 163)
|
||||
#define __NR_reboot (__NR_Linux + 164)
|
||||
#define __NR_sethostname (__NR_Linux + 165)
|
||||
#define __NR_setdomainname (__NR_Linux + 166)
|
||||
#define __NR_create_module (__NR_Linux + 167)
|
||||
#define __NR_init_module (__NR_Linux + 168)
|
||||
#define __NR_delete_module (__NR_Linux + 169)
|
||||
#define __NR_get_kernel_syms (__NR_Linux + 170)
|
||||
#define __NR_query_module (__NR_Linux + 171)
|
||||
#define __NR_quotactl (__NR_Linux + 172)
|
||||
#define __NR_nfsservctl (__NR_Linux + 173)
|
||||
#define __NR_getpmsg (__NR_Linux + 174)
|
||||
#define __NR_putpmsg (__NR_Linux + 175)
|
||||
#define __NR_afs_syscall (__NR_Linux + 176)
|
||||
#define __NR_reserved177 (__NR_Linux + 177)
|
||||
#define __NR_gettid (__NR_Linux + 178)
|
||||
#define __NR_readahead (__NR_Linux + 179)
|
||||
#define __NR_setxattr (__NR_Linux + 180)
|
||||
#define __NR_lsetxattr (__NR_Linux + 181)
|
||||
#define __NR_fsetxattr (__NR_Linux + 182)
|
||||
#define __NR_getxattr (__NR_Linux + 183)
|
||||
#define __NR_lgetxattr (__NR_Linux + 184)
|
||||
#define __NR_fgetxattr (__NR_Linux + 185)
|
||||
#define __NR_listxattr (__NR_Linux + 186)
|
||||
#define __NR_llistxattr (__NR_Linux + 187)
|
||||
#define __NR_flistxattr (__NR_Linux + 188)
|
||||
#define __NR_removexattr (__NR_Linux + 189)
|
||||
#define __NR_lremovexattr (__NR_Linux + 190)
|
||||
#define __NR_fremovexattr (__NR_Linux + 191)
|
||||
#define __NR_tkill (__NR_Linux + 192)
|
||||
#define __NR_reserved193 (__NR_Linux + 193)
|
||||
#define __NR_futex (__NR_Linux + 194)
|
||||
#define __NR_sched_setaffinity (__NR_Linux + 195)
|
||||
#define __NR_sched_getaffinity (__NR_Linux + 196)
|
||||
#define __NR_cacheflush (__NR_Linux + 197)
|
||||
#define __NR_cachectl (__NR_Linux + 198)
|
||||
#define __NR_sysmips (__NR_Linux + 199)
|
||||
#define __NR_io_setup (__NR_Linux + 200)
|
||||
#define __NR_io_destroy (__NR_Linux + 201)
|
||||
#define __NR_io_getevents (__NR_Linux + 202)
|
||||
#define __NR_io_submit (__NR_Linux + 203)
|
||||
#define __NR_io_cancel (__NR_Linux + 204)
|
||||
#define __NR_exit_group (__NR_Linux + 205)
|
||||
#define __NR_lookup_dcookie (__NR_Linux + 206)
|
||||
#define __NR_epoll_create (__NR_Linux + 207)
|
||||
#define __NR_epoll_ctl (__NR_Linux + 208)
|
||||
#define __NR_epoll_wait (__NR_Linux + 209)
|
||||
#define __NR_remap_file_pages (__NR_Linux + 210)
|
||||
#define __NR_rt_sigreturn (__NR_Linux + 211)
|
||||
#define __NR_set_tid_address (__NR_Linux + 212)
|
||||
#define __NR_restart_syscall (__NR_Linux + 213)
|
||||
#define __NR_semtimedop (__NR_Linux + 214)
|
||||
#define __NR_fadvise64 (__NR_Linux + 215)
|
||||
#define __NR_timer_create (__NR_Linux + 216)
|
||||
#define __NR_timer_settime (__NR_Linux + 217)
|
||||
#define __NR_timer_gettime (__NR_Linux + 218)
|
||||
#define __NR_timer_getoverrun (__NR_Linux + 219)
|
||||
#define __NR_timer_delete (__NR_Linux + 220)
|
||||
#define __NR_clock_settime (__NR_Linux + 221)
|
||||
#define __NR_clock_gettime (__NR_Linux + 222)
|
||||
#define __NR_clock_getres (__NR_Linux + 223)
|
||||
#define __NR_clock_nanosleep (__NR_Linux + 224)
|
||||
#define __NR_tgkill (__NR_Linux + 225)
|
||||
#define __NR_utimes (__NR_Linux + 226)
|
||||
#define __NR_mbind (__NR_Linux + 227)
|
||||
#define __NR_get_mempolicy (__NR_Linux + 228)
|
||||
#define __NR_set_mempolicy (__NR_Linux + 229)
|
||||
#define __NR_mq_open (__NR_Linux + 230)
|
||||
#define __NR_mq_unlink (__NR_Linux + 231)
|
||||
#define __NR_mq_timedsend (__NR_Linux + 232)
|
||||
#define __NR_mq_timedreceive (__NR_Linux + 233)
|
||||
#define __NR_mq_notify (__NR_Linux + 234)
|
||||
#define __NR_mq_getsetattr (__NR_Linux + 235)
|
||||
#define __NR_vserver (__NR_Linux + 236)
|
||||
#define __NR_waitid (__NR_Linux + 237)
|
||||
#define __NR_add_key (__NR_Linux + 239)
|
||||
#define __NR_request_key (__NR_Linux + 240)
|
||||
#define __NR_keyctl (__NR_Linux + 241)
|
||||
#define __NR_set_thread_area (__NR_Linux + 242)
|
||||
#define __NR_inotify_init (__NR_Linux + 243)
|
||||
#define __NR_inotify_add_watch (__NR_Linux + 244)
|
||||
#define __NR_inotify_rm_watch (__NR_Linux + 245)
|
||||
#define __NR_migrate_pages (__NR_Linux + 246)
|
||||
#define __NR_openat (__NR_Linux + 247)
|
||||
#define __NR_mkdirat (__NR_Linux + 248)
|
||||
#define __NR_mknodat (__NR_Linux + 249)
|
||||
#define __NR_fchownat (__NR_Linux + 250)
|
||||
#define __NR_futimesat (__NR_Linux + 251)
|
||||
#define __NR_newfstatat (__NR_Linux + 252)
|
||||
#define __NR_unlinkat (__NR_Linux + 253)
|
||||
#define __NR_renameat (__NR_Linux + 254)
|
||||
#define __NR_linkat (__NR_Linux + 255)
|
||||
#define __NR_symlinkat (__NR_Linux + 256)
|
||||
#define __NR_readlinkat (__NR_Linux + 257)
|
||||
#define __NR_fchmodat (__NR_Linux + 258)
|
||||
#define __NR_faccessat (__NR_Linux + 259)
|
||||
#define __NR_pselect6 (__NR_Linux + 260)
|
||||
#define __NR_ppoll (__NR_Linux + 261)
|
||||
#define __NR_unshare (__NR_Linux + 262)
|
||||
#define __NR_splice (__NR_Linux + 263)
|
||||
#define __NR_sync_file_range (__NR_Linux + 264)
|
||||
#define __NR_tee (__NR_Linux + 265)
|
||||
#define __NR_vmsplice (__NR_Linux + 266)
|
||||
#define __NR_move_pages (__NR_Linux + 267)
|
||||
#define __NR_set_robust_list (__NR_Linux + 268)
|
||||
#define __NR_get_robust_list (__NR_Linux + 269)
|
||||
#define __NR_kexec_load (__NR_Linux + 270)
|
||||
#define __NR_getcpu (__NR_Linux + 271)
|
||||
#define __NR_epoll_pwait (__NR_Linux + 272)
|
||||
#define __NR_ioprio_set (__NR_Linux + 273)
|
||||
#define __NR_ioprio_get (__NR_Linux + 274)
|
||||
#define __NR_utimensat (__NR_Linux + 275)
|
||||
#define __NR_signalfd (__NR_Linux + 276)
|
||||
#define __NR_timerfd (__NR_Linux + 277)
|
||||
#define __NR_eventfd (__NR_Linux + 278)
|
||||
#define __NR_fallocate (__NR_Linux + 279)
|
||||
#define __NR_timerfd_create (__NR_Linux + 280)
|
||||
#define __NR_timerfd_gettime (__NR_Linux + 281)
|
||||
#define __NR_timerfd_settime (__NR_Linux + 282)
|
||||
#define __NR_signalfd4 (__NR_Linux + 283)
|
||||
#define __NR_eventfd2 (__NR_Linux + 284)
|
||||
#define __NR_epoll_create1 (__NR_Linux + 285)
|
||||
#define __NR_dup3 (__NR_Linux + 286)
|
||||
#define __NR_pipe2 (__NR_Linux + 287)
|
||||
#define __NR_inotify_init1 (__NR_Linux + 288)
|
||||
#define __NR_preadv (__NR_Linux + 289)
|
||||
#define __NR_pwritev (__NR_Linux + 290)
|
||||
#define __NR_rt_tgsigqueueinfo (__NR_Linux + 291)
|
||||
#define __NR_perf_event_open (__NR_Linux + 292)
|
||||
#define __NR_accept4 (__NR_Linux + 293)
|
||||
#define __NR_recvmmsg (__NR_Linux + 294)
|
||||
#define __NR_fanotify_init (__NR_Linux + 295)
|
||||
#define __NR_fanotify_mark (__NR_Linux + 296)
|
||||
#define __NR_prlimit64 (__NR_Linux + 297)
|
||||
#define __NR_name_to_handle_at (__NR_Linux + 298)
|
||||
#define __NR_open_by_handle_at (__NR_Linux + 299)
|
||||
#define __NR_clock_adjtime (__NR_Linux + 300)
|
||||
#define __NR_syncfs (__NR_Linux + 301)
|
||||
#define __NR_sendmmsg (__NR_Linux + 302)
|
||||
#define __NR_setns (__NR_Linux + 303)
|
||||
#define __NR_process_vm_readv (__NR_Linux + 304)
|
||||
#define __NR_process_vm_writev (__NR_Linux + 305)
|
||||
#define __NR_kcmp (__NR_Linux + 306)
|
||||
#define __NR_finit_module (__NR_Linux + 307)
|
||||
#define __NR_getdents64 (__NR_Linux + 308)
|
||||
#define __NR_sched_setattr (__NR_Linux + 309)
|
||||
#define __NR_sched_getattr (__NR_Linux + 310)
|
||||
#define __NR_renameat2 (__NR_Linux + 311)
|
||||
#define __NR_seccomp (__NR_Linux + 312)
|
||||
#define __NR_getrandom (__NR_Linux + 313)
|
||||
#define __NR_memfd_create (__NR_Linux + 314)
|
||||
#define __NR_bpf (__NR_Linux + 315)
|
||||
#define __NR_execveat (__NR_Linux + 316)
|
||||
#define __NR_userfaultfd (__NR_Linux + 317)
|
||||
#define __NR_membarrier (__NR_Linux + 318)
|
||||
#define __NR_mlock2 (__NR_Linux + 319)
|
||||
#define __NR_copy_file_range (__NR_Linux + 320)
|
||||
#define __NR_preadv2 (__NR_Linux + 321)
|
||||
#define __NR_pwritev2 (__NR_Linux + 322)
|
||||
#define __NR_pkey_mprotect (__NR_Linux + 323)
|
||||
#define __NR_pkey_alloc (__NR_Linux + 324)
|
||||
#define __NR_pkey_free (__NR_Linux + 325)
|
||||
#define __NR_statx (__NR_Linux + 326)
|
||||
#define __NR_rseq (__NR_Linux + 327)
|
||||
#define __NR_io_pgetevents (__NR_Linux + 328)
|
||||
#endif
|
23
libc/kernel/uapi/asm-mips/asm/unistd_nr_n32.h
Normal file
23
libc/kernel/uapi/asm-mips/asm/unistd_nr_n32.h
Normal file
|
@ -0,0 +1,23 @@
|
|||
/****************************************************************************
|
||||
****************************************************************************
|
||||
***
|
||||
*** This header was automatically generated from a Linux kernel header
|
||||
*** of the same name, to make information necessary for userspace to
|
||||
*** call into the kernel available to libc. It contains only constants,
|
||||
*** structures, and macros generated from the original header, and thus,
|
||||
*** contains no copyrightable information.
|
||||
***
|
||||
*** To edit the content of this header, modify the corresponding
|
||||
*** source file (e.g. under external/kernel-headers/original/) then
|
||||
*** run bionic/libc/kernel/tools/update_all.py
|
||||
***
|
||||
*** Any manual change here will be lost the next time this script will
|
||||
*** be run. You've been warned!
|
||||
***
|
||||
****************************************************************************
|
||||
****************************************************************************/
|
||||
#ifndef _UAPI_ASM_MIPS_UNISTD_NR_N32_H
|
||||
#define _UAPI_ASM_MIPS_UNISTD_NR_N32_H
|
||||
#define __NR_N32_Linux 6000
|
||||
#define __NR_N32_Linux_syscalls 333
|
||||
#endif
|
|
@ -16,7 +16,8 @@
|
|||
***
|
||||
****************************************************************************
|
||||
****************************************************************************/
|
||||
#ifndef __ASM_GENERIC_SHMPARAM_H
|
||||
#define __ASM_GENERIC_SHMPARAM_H
|
||||
#define SHMLBA PAGE_SIZE
|
||||
#ifndef _UAPI_ASM_MIPS_UNISTD_NR_N64_H
|
||||
#define _UAPI_ASM_MIPS_UNISTD_NR_N64_H
|
||||
#define __NR_64_Linux 5000
|
||||
#define __NR_64_Linux_syscalls 329
|
||||
#endif
|
23
libc/kernel/uapi/asm-mips/asm/unistd_nr_o32.h
Normal file
23
libc/kernel/uapi/asm-mips/asm/unistd_nr_o32.h
Normal file
|
@ -0,0 +1,23 @@
|
|||
/****************************************************************************
|
||||
****************************************************************************
|
||||
***
|
||||
*** This header was automatically generated from a Linux kernel header
|
||||
*** of the same name, to make information necessary for userspace to
|
||||
*** call into the kernel available to libc. It contains only constants,
|
||||
*** structures, and macros generated from the original header, and thus,
|
||||
*** contains no copyrightable information.
|
||||
***
|
||||
*** To edit the content of this header, modify the corresponding
|
||||
*** source file (e.g. under external/kernel-headers/original/) then
|
||||
*** run bionic/libc/kernel/tools/update_all.py
|
||||
***
|
||||
*** Any manual change here will be lost the next time this script will
|
||||
*** be run. You've been warned!
|
||||
***
|
||||
****************************************************************************
|
||||
****************************************************************************/
|
||||
#ifndef _UAPI_ASM_MIPS_UNISTD_NR_O32_H
|
||||
#define _UAPI_ASM_MIPS_UNISTD_NR_O32_H
|
||||
#define __NR_O32_Linux 4000
|
||||
#define __NR_O32_Linux_syscalls 369
|
||||
#endif
|
389
libc/kernel/uapi/asm-mips/asm/unistd_o32.h
Normal file
389
libc/kernel/uapi/asm-mips/asm/unistd_o32.h
Normal file
|
@ -0,0 +1,389 @@
|
|||
/****************************************************************************
|
||||
****************************************************************************
|
||||
***
|
||||
*** This header was automatically generated from a Linux kernel header
|
||||
*** of the same name, to make information necessary for userspace to
|
||||
*** call into the kernel available to libc. It contains only constants,
|
||||
*** structures, and macros generated from the original header, and thus,
|
||||
*** contains no copyrightable information.
|
||||
***
|
||||
*** To edit the content of this header, modify the corresponding
|
||||
*** source file (e.g. under external/kernel-headers/original/) then
|
||||
*** run bionic/libc/kernel/tools/update_all.py
|
||||
***
|
||||
*** Any manual change here will be lost the next time this script will
|
||||
*** be run. You've been warned!
|
||||
***
|
||||
****************************************************************************
|
||||
****************************************************************************/
|
||||
#ifndef _UAPI_ASM_MIPS_UNISTD_O32_H
|
||||
#define _UAPI_ASM_MIPS_UNISTD_O32_H
|
||||
#define __NR_syscall (__NR_Linux + 0)
|
||||
#define __NR_exit (__NR_Linux + 1)
|
||||
#define __NR_fork (__NR_Linux + 2)
|
||||
#define __NR_read (__NR_Linux + 3)
|
||||
#define __NR_write (__NR_Linux + 4)
|
||||
#define __NR_open (__NR_Linux + 5)
|
||||
#define __NR_close (__NR_Linux + 6)
|
||||
#define __NR_waitpid (__NR_Linux + 7)
|
||||
#define __NR_creat (__NR_Linux + 8)
|
||||
#define __NR_link (__NR_Linux + 9)
|
||||
#define __NR_unlink (__NR_Linux + 10)
|
||||
#define __NR_execve (__NR_Linux + 11)
|
||||
#define __NR_chdir (__NR_Linux + 12)
|
||||
#define __NR_time (__NR_Linux + 13)
|
||||
#define __NR_mknod (__NR_Linux + 14)
|
||||
#define __NR_chmod (__NR_Linux + 15)
|
||||
#define __NR_lchown (__NR_Linux + 16)
|
||||
#define __NR_break (__NR_Linux + 17)
|
||||
#define __NR_unused18 (__NR_Linux + 18)
|
||||
#define __NR_lseek (__NR_Linux + 19)
|
||||
#define __NR_getpid (__NR_Linux + 20)
|
||||
#define __NR_mount (__NR_Linux + 21)
|
||||
#define __NR_umount (__NR_Linux + 22)
|
||||
#define __NR_setuid (__NR_Linux + 23)
|
||||
#define __NR_getuid (__NR_Linux + 24)
|
||||
#define __NR_stime (__NR_Linux + 25)
|
||||
#define __NR_ptrace (__NR_Linux + 26)
|
||||
#define __NR_alarm (__NR_Linux + 27)
|
||||
#define __NR_unused28 (__NR_Linux + 28)
|
||||
#define __NR_pause (__NR_Linux + 29)
|
||||
#define __NR_utime (__NR_Linux + 30)
|
||||
#define __NR_stty (__NR_Linux + 31)
|
||||
#define __NR_gtty (__NR_Linux + 32)
|
||||
#define __NR_access (__NR_Linux + 33)
|
||||
#define __NR_nice (__NR_Linux + 34)
|
||||
#define __NR_ftime (__NR_Linux + 35)
|
||||
#define __NR_sync (__NR_Linux + 36)
|
||||
#define __NR_kill (__NR_Linux + 37)
|
||||
#define __NR_rename (__NR_Linux + 38)
|
||||
#define __NR_mkdir (__NR_Linux + 39)
|
||||
#define __NR_rmdir (__NR_Linux + 40)
|
||||
#define __NR_dup (__NR_Linux + 41)
|
||||
#define __NR_pipe (__NR_Linux + 42)
|
||||
#define __NR_times (__NR_Linux + 43)
|
||||
#define __NR_prof (__NR_Linux + 44)
|
||||
#define __NR_brk (__NR_Linux + 45)
|
||||
#define __NR_setgid (__NR_Linux + 46)
|
||||
#define __NR_getgid (__NR_Linux + 47)
|
||||
#define __NR_signal (__NR_Linux + 48)
|
||||
#define __NR_geteuid (__NR_Linux + 49)
|
||||
#define __NR_getegid (__NR_Linux + 50)
|
||||
#define __NR_acct (__NR_Linux + 51)
|
||||
#define __NR_umount2 (__NR_Linux + 52)
|
||||
#define __NR_lock (__NR_Linux + 53)
|
||||
#define __NR_ioctl (__NR_Linux + 54)
|
||||
#define __NR_fcntl (__NR_Linux + 55)
|
||||
#define __NR_mpx (__NR_Linux + 56)
|
||||
#define __NR_setpgid (__NR_Linux + 57)
|
||||
#define __NR_ulimit (__NR_Linux + 58)
|
||||
#define __NR_unused59 (__NR_Linux + 59)
|
||||
#define __NR_umask (__NR_Linux + 60)
|
||||
#define __NR_chroot (__NR_Linux + 61)
|
||||
#define __NR_ustat (__NR_Linux + 62)
|
||||
#define __NR_dup2 (__NR_Linux + 63)
|
||||
#define __NR_getppid (__NR_Linux + 64)
|
||||
#define __NR_getpgrp (__NR_Linux + 65)
|
||||
#define __NR_setsid (__NR_Linux + 66)
|
||||
#define __NR_sigaction (__NR_Linux + 67)
|
||||
#define __NR_sgetmask (__NR_Linux + 68)
|
||||
#define __NR_ssetmask (__NR_Linux + 69)
|
||||
#define __NR_setreuid (__NR_Linux + 70)
|
||||
#define __NR_setregid (__NR_Linux + 71)
|
||||
#define __NR_sigsuspend (__NR_Linux + 72)
|
||||
#define __NR_sigpending (__NR_Linux + 73)
|
||||
#define __NR_sethostname (__NR_Linux + 74)
|
||||
#define __NR_setrlimit (__NR_Linux + 75)
|
||||
#define __NR_getrlimit (__NR_Linux + 76)
|
||||
#define __NR_getrusage (__NR_Linux + 77)
|
||||
#define __NR_gettimeofday (__NR_Linux + 78)
|
||||
#define __NR_settimeofday (__NR_Linux + 79)
|
||||
#define __NR_getgroups (__NR_Linux + 80)
|
||||
#define __NR_setgroups (__NR_Linux + 81)
|
||||
#define __NR_reserved82 (__NR_Linux + 82)
|
||||
#define __NR_symlink (__NR_Linux + 83)
|
||||
#define __NR_unused84 (__NR_Linux + 84)
|
||||
#define __NR_readlink (__NR_Linux + 85)
|
||||
#define __NR_uselib (__NR_Linux + 86)
|
||||
#define __NR_swapon (__NR_Linux + 87)
|
||||
#define __NR_reboot (__NR_Linux + 88)
|
||||
#define __NR_readdir (__NR_Linux + 89)
|
||||
#define __NR_mmap (__NR_Linux + 90)
|
||||
#define __NR_munmap (__NR_Linux + 91)
|
||||
#define __NR_truncate (__NR_Linux + 92)
|
||||
#define __NR_ftruncate (__NR_Linux + 93)
|
||||
#define __NR_fchmod (__NR_Linux + 94)
|
||||
#define __NR_fchown (__NR_Linux + 95)
|
||||
#define __NR_getpriority (__NR_Linux + 96)
|
||||
#define __NR_setpriority (__NR_Linux + 97)
|
||||
#define __NR_profil (__NR_Linux + 98)
|
||||
#define __NR_statfs (__NR_Linux + 99)
|
||||
#define __NR_fstatfs (__NR_Linux + 100)
|
||||
#define __NR_ioperm (__NR_Linux + 101)
|
||||
#define __NR_socketcall (__NR_Linux + 102)
|
||||
#define __NR_syslog (__NR_Linux + 103)
|
||||
#define __NR_setitimer (__NR_Linux + 104)
|
||||
#define __NR_getitimer (__NR_Linux + 105)
|
||||
#define __NR_stat (__NR_Linux + 106)
|
||||
#define __NR_lstat (__NR_Linux + 107)
|
||||
#define __NR_fstat (__NR_Linux + 108)
|
||||
#define __NR_unused109 (__NR_Linux + 109)
|
||||
#define __NR_iopl (__NR_Linux + 110)
|
||||
#define __NR_vhangup (__NR_Linux + 111)
|
||||
#define __NR_idle (__NR_Linux + 112)
|
||||
#define __NR_vm86 (__NR_Linux + 113)
|
||||
#define __NR_wait4 (__NR_Linux + 114)
|
||||
#define __NR_swapoff (__NR_Linux + 115)
|
||||
#define __NR_sysinfo (__NR_Linux + 116)
|
||||
#define __NR_ipc (__NR_Linux + 117)
|
||||
#define __NR_fsync (__NR_Linux + 118)
|
||||
#define __NR_sigreturn (__NR_Linux + 119)
|
||||
#define __NR_clone (__NR_Linux + 120)
|
||||
#define __NR_setdomainname (__NR_Linux + 121)
|
||||
#define __NR_uname (__NR_Linux + 122)
|
||||
#define __NR_modify_ldt (__NR_Linux + 123)
|
||||
#define __NR_adjtimex (__NR_Linux + 124)
|
||||
#define __NR_mprotect (__NR_Linux + 125)
|
||||
#define __NR_sigprocmask (__NR_Linux + 126)
|
||||
#define __NR_create_module (__NR_Linux + 127)
|
||||
#define __NR_init_module (__NR_Linux + 128)
|
||||
#define __NR_delete_module (__NR_Linux + 129)
|
||||
#define __NR_get_kernel_syms (__NR_Linux + 130)
|
||||
#define __NR_quotactl (__NR_Linux + 131)
|
||||
#define __NR_getpgid (__NR_Linux + 132)
|
||||
#define __NR_fchdir (__NR_Linux + 133)
|
||||
#define __NR_bdflush (__NR_Linux + 134)
|
||||
#define __NR_sysfs (__NR_Linux + 135)
|
||||
#define __NR_personality (__NR_Linux + 136)
|
||||
#define __NR_afs_syscall (__NR_Linux + 137)
|
||||
#define __NR_setfsuid (__NR_Linux + 138)
|
||||
#define __NR_setfsgid (__NR_Linux + 139)
|
||||
#define __NR__llseek (__NR_Linux + 140)
|
||||
#define __NR_getdents (__NR_Linux + 141)
|
||||
#define __NR__newselect (__NR_Linux + 142)
|
||||
#define __NR_flock (__NR_Linux + 143)
|
||||
#define __NR_msync (__NR_Linux + 144)
|
||||
#define __NR_readv (__NR_Linux + 145)
|
||||
#define __NR_writev (__NR_Linux + 146)
|
||||
#define __NR_cacheflush (__NR_Linux + 147)
|
||||
#define __NR_cachectl (__NR_Linux + 148)
|
||||
#define __NR_sysmips (__NR_Linux + 149)
|
||||
#define __NR_unused150 (__NR_Linux + 150)
|
||||
#define __NR_getsid (__NR_Linux + 151)
|
||||
#define __NR_fdatasync (__NR_Linux + 152)
|
||||
#define __NR__sysctl (__NR_Linux + 153)
|
||||
#define __NR_mlock (__NR_Linux + 154)
|
||||
#define __NR_munlock (__NR_Linux + 155)
|
||||
#define __NR_mlockall (__NR_Linux + 156)
|
||||
#define __NR_munlockall (__NR_Linux + 157)
|
||||
#define __NR_sched_setparam (__NR_Linux + 158)
|
||||
#define __NR_sched_getparam (__NR_Linux + 159)
|
||||
#define __NR_sched_setscheduler (__NR_Linux + 160)
|
||||
#define __NR_sched_getscheduler (__NR_Linux + 161)
|
||||
#define __NR_sched_yield (__NR_Linux + 162)
|
||||
#define __NR_sched_get_priority_max (__NR_Linux + 163)
|
||||
#define __NR_sched_get_priority_min (__NR_Linux + 164)
|
||||
#define __NR_sched_rr_get_interval (__NR_Linux + 165)
|
||||
#define __NR_nanosleep (__NR_Linux + 166)
|
||||
#define __NR_mremap (__NR_Linux + 167)
|
||||
#define __NR_accept (__NR_Linux + 168)
|
||||
#define __NR_bind (__NR_Linux + 169)
|
||||
#define __NR_connect (__NR_Linux + 170)
|
||||
#define __NR_getpeername (__NR_Linux + 171)
|
||||
#define __NR_getsockname (__NR_Linux + 172)
|
||||
#define __NR_getsockopt (__NR_Linux + 173)
|
||||
#define __NR_listen (__NR_Linux + 174)
|
||||
#define __NR_recv (__NR_Linux + 175)
|
||||
#define __NR_recvfrom (__NR_Linux + 176)
|
||||
#define __NR_recvmsg (__NR_Linux + 177)
|
||||
#define __NR_send (__NR_Linux + 178)
|
||||
#define __NR_sendmsg (__NR_Linux + 179)
|
||||
#define __NR_sendto (__NR_Linux + 180)
|
||||
#define __NR_setsockopt (__NR_Linux + 181)
|
||||
#define __NR_shutdown (__NR_Linux + 182)
|
||||
#define __NR_socket (__NR_Linux + 183)
|
||||
#define __NR_socketpair (__NR_Linux + 184)
|
||||
#define __NR_setresuid (__NR_Linux + 185)
|
||||
#define __NR_getresuid (__NR_Linux + 186)
|
||||
#define __NR_query_module (__NR_Linux + 187)
|
||||
#define __NR_poll (__NR_Linux + 188)
|
||||
#define __NR_nfsservctl (__NR_Linux + 189)
|
||||
#define __NR_setresgid (__NR_Linux + 190)
|
||||
#define __NR_getresgid (__NR_Linux + 191)
|
||||
#define __NR_prctl (__NR_Linux + 192)
|
||||
#define __NR_rt_sigreturn (__NR_Linux + 193)
|
||||
#define __NR_rt_sigaction (__NR_Linux + 194)
|
||||
#define __NR_rt_sigprocmask (__NR_Linux + 195)
|
||||
#define __NR_rt_sigpending (__NR_Linux + 196)
|
||||
#define __NR_rt_sigtimedwait (__NR_Linux + 197)
|
||||
#define __NR_rt_sigqueueinfo (__NR_Linux + 198)
|
||||
#define __NR_rt_sigsuspend (__NR_Linux + 199)
|
||||
#define __NR_pread64 (__NR_Linux + 200)
|
||||
#define __NR_pwrite64 (__NR_Linux + 201)
|
||||
#define __NR_chown (__NR_Linux + 202)
|
||||
#define __NR_getcwd (__NR_Linux + 203)
|
||||
#define __NR_capget (__NR_Linux + 204)
|
||||
#define __NR_capset (__NR_Linux + 205)
|
||||
#define __NR_sigaltstack (__NR_Linux + 206)
|
||||
#define __NR_sendfile (__NR_Linux + 207)
|
||||
#define __NR_getpmsg (__NR_Linux + 208)
|
||||
#define __NR_putpmsg (__NR_Linux + 209)
|
||||
#define __NR_mmap2 (__NR_Linux + 210)
|
||||
#define __NR_truncate64 (__NR_Linux + 211)
|
||||
#define __NR_ftruncate64 (__NR_Linux + 212)
|
||||
#define __NR_stat64 (__NR_Linux + 213)
|
||||
#define __NR_lstat64 (__NR_Linux + 214)
|
||||
#define __NR_fstat64 (__NR_Linux + 215)
|
||||
#define __NR_pivot_root (__NR_Linux + 216)
|
||||
#define __NR_mincore (__NR_Linux + 217)
|
||||
#define __NR_madvise (__NR_Linux + 218)
|
||||
#define __NR_getdents64 (__NR_Linux + 219)
|
||||
#define __NR_fcntl64 (__NR_Linux + 220)
|
||||
#define __NR_reserved221 (__NR_Linux + 221)
|
||||
#define __NR_gettid (__NR_Linux + 222)
|
||||
#define __NR_readahead (__NR_Linux + 223)
|
||||
#define __NR_setxattr (__NR_Linux + 224)
|
||||
#define __NR_lsetxattr (__NR_Linux + 225)
|
||||
#define __NR_fsetxattr (__NR_Linux + 226)
|
||||
#define __NR_getxattr (__NR_Linux + 227)
|
||||
#define __NR_lgetxattr (__NR_Linux + 228)
|
||||
#define __NR_fgetxattr (__NR_Linux + 229)
|
||||
#define __NR_listxattr (__NR_Linux + 230)
|
||||
#define __NR_llistxattr (__NR_Linux + 231)
|
||||
#define __NR_flistxattr (__NR_Linux + 232)
|
||||
#define __NR_removexattr (__NR_Linux + 233)
|
||||
#define __NR_lremovexattr (__NR_Linux + 234)
|
||||
#define __NR_fremovexattr (__NR_Linux + 235)
|
||||
#define __NR_tkill (__NR_Linux + 236)
|
||||
#define __NR_sendfile64 (__NR_Linux + 237)
|
||||
#define __NR_futex (__NR_Linux + 238)
|
||||
#define __NR_sched_setaffinity (__NR_Linux + 239)
|
||||
#define __NR_sched_getaffinity (__NR_Linux + 240)
|
||||
#define __NR_io_setup (__NR_Linux + 241)
|
||||
#define __NR_io_destroy (__NR_Linux + 242)
|
||||
#define __NR_io_getevents (__NR_Linux + 243)
|
||||
#define __NR_io_submit (__NR_Linux + 244)
|
||||
#define __NR_io_cancel (__NR_Linux + 245)
|
||||
#define __NR_exit_group (__NR_Linux + 246)
|
||||
#define __NR_lookup_dcookie (__NR_Linux + 247)
|
||||
#define __NR_epoll_create (__NR_Linux + 248)
|
||||
#define __NR_epoll_ctl (__NR_Linux + 249)
|
||||
#define __NR_epoll_wait (__NR_Linux + 250)
|
||||
#define __NR_remap_file_pages (__NR_Linux + 251)
|
||||
#define __NR_set_tid_address (__NR_Linux + 252)
|
||||
#define __NR_restart_syscall (__NR_Linux + 253)
|
||||
#define __NR_fadvise64 (__NR_Linux + 254)
|
||||
#define __NR_statfs64 (__NR_Linux + 255)
|
||||
#define __NR_fstatfs64 (__NR_Linux + 256)
|
||||
#define __NR_timer_create (__NR_Linux + 257)
|
||||
#define __NR_timer_settime (__NR_Linux + 258)
|
||||
#define __NR_timer_gettime (__NR_Linux + 259)
|
||||
#define __NR_timer_getoverrun (__NR_Linux + 260)
|
||||
#define __NR_timer_delete (__NR_Linux + 261)
|
||||
#define __NR_clock_settime (__NR_Linux + 262)
|
||||
#define __NR_clock_gettime (__NR_Linux + 263)
|
||||
#define __NR_clock_getres (__NR_Linux + 264)
|
||||
#define __NR_clock_nanosleep (__NR_Linux + 265)
|
||||
#define __NR_tgkill (__NR_Linux + 266)
|
||||
#define __NR_utimes (__NR_Linux + 267)
|
||||
#define __NR_mbind (__NR_Linux + 268)
|
||||
#define __NR_get_mempolicy (__NR_Linux + 269)
|
||||
#define __NR_set_mempolicy (__NR_Linux + 270)
|
||||
#define __NR_mq_open (__NR_Linux + 271)
|
||||
#define __NR_mq_unlink (__NR_Linux + 272)
|
||||
#define __NR_mq_timedsend (__NR_Linux + 273)
|
||||
#define __NR_mq_timedreceive (__NR_Linux + 274)
|
||||
#define __NR_mq_notify (__NR_Linux + 275)
|
||||
#define __NR_mq_getsetattr (__NR_Linux + 276)
|
||||
#define __NR_vserver (__NR_Linux + 277)
|
||||
#define __NR_waitid (__NR_Linux + 278)
|
||||
#define __NR_add_key (__NR_Linux + 280)
|
||||
#define __NR_request_key (__NR_Linux + 281)
|
||||
#define __NR_keyctl (__NR_Linux + 282)
|
||||
#define __NR_set_thread_area (__NR_Linux + 283)
|
||||
#define __NR_inotify_init (__NR_Linux + 284)
|
||||
#define __NR_inotify_add_watch (__NR_Linux + 285)
|
||||
#define __NR_inotify_rm_watch (__NR_Linux + 286)
|
||||
#define __NR_migrate_pages (__NR_Linux + 287)
|
||||
#define __NR_openat (__NR_Linux + 288)
|
||||
#define __NR_mkdirat (__NR_Linux + 289)
|
||||
#define __NR_mknodat (__NR_Linux + 290)
|
||||
#define __NR_fchownat (__NR_Linux + 291)
|
||||
#define __NR_futimesat (__NR_Linux + 292)
|
||||
#define __NR_fstatat64 (__NR_Linux + 293)
|
||||
#define __NR_unlinkat (__NR_Linux + 294)
|
||||
#define __NR_renameat (__NR_Linux + 295)
|
||||
#define __NR_linkat (__NR_Linux + 296)
|
||||
#define __NR_symlinkat (__NR_Linux + 297)
|
||||
#define __NR_readlinkat (__NR_Linux + 298)
|
||||
#define __NR_fchmodat (__NR_Linux + 299)
|
||||
#define __NR_faccessat (__NR_Linux + 300)
|
||||
#define __NR_pselect6 (__NR_Linux + 301)
|
||||
#define __NR_ppoll (__NR_Linux + 302)
|
||||
#define __NR_unshare (__NR_Linux + 303)
|
||||
#define __NR_splice (__NR_Linux + 304)
|
||||
#define __NR_sync_file_range (__NR_Linux + 305)
|
||||
#define __NR_tee (__NR_Linux + 306)
|
||||
#define __NR_vmsplice (__NR_Linux + 307)
|
||||
#define __NR_move_pages (__NR_Linux + 308)
|
||||
#define __NR_set_robust_list (__NR_Linux + 309)
|
||||
#define __NR_get_robust_list (__NR_Linux + 310)
|
||||
#define __NR_kexec_load (__NR_Linux + 311)
|
||||
#define __NR_getcpu (__NR_Linux + 312)
|
||||
#define __NR_epoll_pwait (__NR_Linux + 313)
|
||||
#define __NR_ioprio_set (__NR_Linux + 314)
|
||||
#define __NR_ioprio_get (__NR_Linux + 315)
|
||||
#define __NR_utimensat (__NR_Linux + 316)
|
||||
#define __NR_signalfd (__NR_Linux + 317)
|
||||
#define __NR_timerfd (__NR_Linux + 318)
|
||||
#define __NR_eventfd (__NR_Linux + 319)
|
||||
#define __NR_fallocate (__NR_Linux + 320)
|
||||
#define __NR_timerfd_create (__NR_Linux + 321)
|
||||
#define __NR_timerfd_gettime (__NR_Linux + 322)
|
||||
#define __NR_timerfd_settime (__NR_Linux + 323)
|
||||
#define __NR_signalfd4 (__NR_Linux + 324)
|
||||
#define __NR_eventfd2 (__NR_Linux + 325)
|
||||
#define __NR_epoll_create1 (__NR_Linux + 326)
|
||||
#define __NR_dup3 (__NR_Linux + 327)
|
||||
#define __NR_pipe2 (__NR_Linux + 328)
|
||||
#define __NR_inotify_init1 (__NR_Linux + 329)
|
||||
#define __NR_preadv (__NR_Linux + 330)
|
||||
#define __NR_pwritev (__NR_Linux + 331)
|
||||
#define __NR_rt_tgsigqueueinfo (__NR_Linux + 332)
|
||||
#define __NR_perf_event_open (__NR_Linux + 333)
|
||||
#define __NR_accept4 (__NR_Linux + 334)
|
||||
#define __NR_recvmmsg (__NR_Linux + 335)
|
||||
#define __NR_fanotify_init (__NR_Linux + 336)
|
||||
#define __NR_fanotify_mark (__NR_Linux + 337)
|
||||
#define __NR_prlimit64 (__NR_Linux + 338)
|
||||
#define __NR_name_to_handle_at (__NR_Linux + 339)
|
||||
#define __NR_open_by_handle_at (__NR_Linux + 340)
|
||||
#define __NR_clock_adjtime (__NR_Linux + 341)
|
||||
#define __NR_syncfs (__NR_Linux + 342)
|
||||
#define __NR_sendmmsg (__NR_Linux + 343)
|
||||
#define __NR_setns (__NR_Linux + 344)
|
||||
#define __NR_process_vm_readv (__NR_Linux + 345)
|
||||
#define __NR_process_vm_writev (__NR_Linux + 346)
|
||||
#define __NR_kcmp (__NR_Linux + 347)
|
||||
#define __NR_finit_module (__NR_Linux + 348)
|
||||
#define __NR_sched_setattr (__NR_Linux + 349)
|
||||
#define __NR_sched_getattr (__NR_Linux + 350)
|
||||
#define __NR_renameat2 (__NR_Linux + 351)
|
||||
#define __NR_seccomp (__NR_Linux + 352)
|
||||
#define __NR_getrandom (__NR_Linux + 353)
|
||||
#define __NR_memfd_create (__NR_Linux + 354)
|
||||
#define __NR_bpf (__NR_Linux + 355)
|
||||
#define __NR_execveat (__NR_Linux + 356)
|
||||
#define __NR_userfaultfd (__NR_Linux + 357)
|
||||
#define __NR_membarrier (__NR_Linux + 358)
|
||||
#define __NR_mlock2 (__NR_Linux + 359)
|
||||
#define __NR_copy_file_range (__NR_Linux + 360)
|
||||
#define __NR_preadv2 (__NR_Linux + 361)
|
||||
#define __NR_pwritev2 (__NR_Linux + 362)
|
||||
#define __NR_pkey_mprotect (__NR_Linux + 363)
|
||||
#define __NR_pkey_alloc (__NR_Linux + 364)
|
||||
#define __NR_pkey_free (__NR_Linux + 365)
|
||||
#define __NR_statx (__NR_Linux + 366)
|
||||
#define __NR_rseq (__NR_Linux + 367)
|
||||
#define __NR_io_pgetevents (__NR_Linux + 368)
|
||||
#endif
|
|
@ -195,6 +195,12 @@ struct drm_amdgpu_gem_userptr {
|
|||
#define AMDGPU_TILING_NUM_BANKS_MASK 0x3
|
||||
#define AMDGPU_TILING_SWIZZLE_MODE_SHIFT 0
|
||||
#define AMDGPU_TILING_SWIZZLE_MODE_MASK 0x1f
|
||||
#define AMDGPU_TILING_DCC_OFFSET_256B_SHIFT 5
|
||||
#define AMDGPU_TILING_DCC_OFFSET_256B_MASK 0xFFFFFF
|
||||
#define AMDGPU_TILING_DCC_PITCH_MAX_SHIFT 29
|
||||
#define AMDGPU_TILING_DCC_PITCH_MAX_MASK 0x3FFF
|
||||
#define AMDGPU_TILING_DCC_INDEPENDENT_64B_SHIFT 43
|
||||
#define AMDGPU_TILING_DCC_INDEPENDENT_64B_MASK 0x1
|
||||
#define AMDGPU_TILING_SET(field,value) (((__u64) (value) & AMDGPU_TILING_ ##field ##_MASK) << AMDGPU_TILING_ ##field ##_SHIFT)
|
||||
#define AMDGPU_TILING_GET(value,field) (((__u64) (value) >> AMDGPU_TILING_ ##field ##_SHIFT) & AMDGPU_TILING_ ##field ##_MASK)
|
||||
#define AMDGPU_GEM_METADATA_OP_SET_METADATA 1
|
||||
|
|
|
@ -75,6 +75,11 @@ extern "C" {
|
|||
#define DRM_FORMAT_UYVY fourcc_code('U', 'Y', 'V', 'Y')
|
||||
#define DRM_FORMAT_VYUY fourcc_code('V', 'Y', 'U', 'Y')
|
||||
#define DRM_FORMAT_AYUV fourcc_code('A', 'Y', 'U', 'V')
|
||||
#define DRM_FORMAT_XYUV8888 fourcc_code('X', 'Y', 'U', 'V')
|
||||
#define DRM_FORMAT_Y0L0 fourcc_code('Y', '0', 'L', '0')
|
||||
#define DRM_FORMAT_X0L0 fourcc_code('X', '0', 'L', '0')
|
||||
#define DRM_FORMAT_Y0L2 fourcc_code('Y', '0', 'L', '2')
|
||||
#define DRM_FORMAT_X0L2 fourcc_code('X', '0', 'L', '2')
|
||||
#define DRM_FORMAT_XRGB8888_A8 fourcc_code('X', 'R', 'A', '8')
|
||||
#define DRM_FORMAT_XBGR8888_A8 fourcc_code('X', 'B', 'A', '8')
|
||||
#define DRM_FORMAT_RGBX8888_A8 fourcc_code('R', 'X', 'A', '8')
|
||||
|
|
|
@ -463,6 +463,12 @@ struct drm_mode_get_lease {
|
|||
struct drm_mode_revoke_lease {
|
||||
__u32 lessee_id;
|
||||
};
|
||||
struct drm_mode_rect {
|
||||
__s32 x1;
|
||||
__s32 y1;
|
||||
__s32 x2;
|
||||
__s32 y2;
|
||||
};
|
||||
#ifdef __cplusplus
|
||||
}
|
||||
#endif
|
||||
|
|
|
@ -281,6 +281,9 @@ typedef struct drm_i915_irq_emit {
|
|||
typedef struct drm_i915_irq_wait {
|
||||
int irq_seq;
|
||||
} drm_i915_irq_wait_t;
|
||||
#define I915_GEM_PPGTT_NONE 0
|
||||
#define I915_GEM_PPGTT_ALIASING 1
|
||||
#define I915_GEM_PPGTT_FULL 2
|
||||
#define I915_PARAM_IRQ_ACTIVE 1
|
||||
#define I915_PARAM_ALLOW_BATCHBUFFER 2
|
||||
#define I915_PARAM_LAST_DISPATCH 3
|
||||
|
|
|
@ -57,12 +57,16 @@ struct drm_msm_gem_new {
|
|||
__u32 flags;
|
||||
__u32 handle;
|
||||
};
|
||||
#define MSM_INFO_IOVA 0x01
|
||||
#define MSM_INFO_FLAGS (MSM_INFO_IOVA)
|
||||
#define MSM_INFO_GET_OFFSET 0x00
|
||||
#define MSM_INFO_GET_IOVA 0x01
|
||||
#define MSM_INFO_SET_NAME 0x02
|
||||
#define MSM_INFO_GET_NAME 0x03
|
||||
struct drm_msm_gem_info {
|
||||
__u32 handle;
|
||||
__u32 flags;
|
||||
__u64 offset;
|
||||
__u32 info;
|
||||
__u64 value;
|
||||
__u32 len;
|
||||
__u32 pad;
|
||||
};
|
||||
#define MSM_PREP_READ 0x01
|
||||
#define MSM_PREP_WRITE 0x02
|
||||
|
@ -97,7 +101,8 @@ struct drm_msm_gem_submit_cmd {
|
|||
};
|
||||
#define MSM_SUBMIT_BO_READ 0x0001
|
||||
#define MSM_SUBMIT_BO_WRITE 0x0002
|
||||
#define MSM_SUBMIT_BO_FLAGS (MSM_SUBMIT_BO_READ | MSM_SUBMIT_BO_WRITE)
|
||||
#define MSM_SUBMIT_BO_DUMP 0x0004
|
||||
#define MSM_SUBMIT_BO_FLAGS (MSM_SUBMIT_BO_READ | MSM_SUBMIT_BO_WRITE | MSM_SUBMIT_BO_DUMP)
|
||||
struct drm_msm_gem_submit_bo {
|
||||
__u32 flags;
|
||||
__u32 handle;
|
||||
|
|
|
@ -28,12 +28,14 @@ extern "C" {
|
|||
#define DRM_V3D_MMAP_BO 0x03
|
||||
#define DRM_V3D_GET_PARAM 0x04
|
||||
#define DRM_V3D_GET_BO_OFFSET 0x05
|
||||
#define DRM_V3D_SUBMIT_TFU 0x06
|
||||
#define DRM_IOCTL_V3D_SUBMIT_CL DRM_IOWR(DRM_COMMAND_BASE + DRM_V3D_SUBMIT_CL, struct drm_v3d_submit_cl)
|
||||
#define DRM_IOCTL_V3D_WAIT_BO DRM_IOWR(DRM_COMMAND_BASE + DRM_V3D_WAIT_BO, struct drm_v3d_wait_bo)
|
||||
#define DRM_IOCTL_V3D_CREATE_BO DRM_IOWR(DRM_COMMAND_BASE + DRM_V3D_CREATE_BO, struct drm_v3d_create_bo)
|
||||
#define DRM_IOCTL_V3D_MMAP_BO DRM_IOWR(DRM_COMMAND_BASE + DRM_V3D_MMAP_BO, struct drm_v3d_mmap_bo)
|
||||
#define DRM_IOCTL_V3D_GET_PARAM DRM_IOWR(DRM_COMMAND_BASE + DRM_V3D_GET_PARAM, struct drm_v3d_get_param)
|
||||
#define DRM_IOCTL_V3D_GET_BO_OFFSET DRM_IOWR(DRM_COMMAND_BASE + DRM_V3D_GET_BO_OFFSET, struct drm_v3d_get_bo_offset)
|
||||
#define DRM_IOCTL_V3D_SUBMIT_TFU DRM_IOW(DRM_COMMAND_BASE + DRM_V3D_SUBMIT_TFU, struct drm_v3d_submit_tfu)
|
||||
struct drm_v3d_submit_cl {
|
||||
__u32 bcl_start;
|
||||
__u32 bcl_end;
|
||||
|
@ -73,6 +75,7 @@ enum drm_v3d_param {
|
|||
DRM_V3D_PARAM_V3D_CORE0_IDENT0,
|
||||
DRM_V3D_PARAM_V3D_CORE0_IDENT1,
|
||||
DRM_V3D_PARAM_V3D_CORE0_IDENT2,
|
||||
DRM_V3D_PARAM_SUPPORTS_TFU,
|
||||
};
|
||||
struct drm_v3d_get_param {
|
||||
__u32 param;
|
||||
|
@ -83,6 +86,19 @@ struct drm_v3d_get_bo_offset {
|
|||
__u32 handle;
|
||||
__u32 offset;
|
||||
};
|
||||
struct drm_v3d_submit_tfu {
|
||||
__u32 icfg;
|
||||
__u32 iia;
|
||||
__u32 iis;
|
||||
__u32 ica;
|
||||
__u32 iua;
|
||||
__u32 ioa;
|
||||
__u32 ios;
|
||||
__u32 coef[4];
|
||||
__u32 bo_handles[4];
|
||||
__u32 in_sync;
|
||||
__u32 out_sync;
|
||||
};
|
||||
#ifdef __cplusplus
|
||||
}
|
||||
#endif
|
||||
|
|
|
@ -31,6 +31,9 @@ extern "C" {
|
|||
#define DRM_VIRTGPU_TRANSFER_TO_HOST 0x07
|
||||
#define DRM_VIRTGPU_WAIT 0x08
|
||||
#define DRM_VIRTGPU_GET_CAPS 0x09
|
||||
#define VIRTGPU_EXECBUF_FENCE_FD_IN 0x01
|
||||
#define VIRTGPU_EXECBUF_FENCE_FD_OUT 0x02
|
||||
#define VIRTGPU_EXECBUF_FLAGS (VIRTGPU_EXECBUF_FENCE_FD_IN | VIRTGPU_EXECBUF_FENCE_FD_OUT | 0)
|
||||
struct drm_virtgpu_map {
|
||||
__u64 offset;
|
||||
__u32 handle;
|
||||
|
@ -42,7 +45,7 @@ struct drm_virtgpu_execbuffer {
|
|||
__u64 command;
|
||||
__u64 bo_handles;
|
||||
__u32 num_bo_handles;
|
||||
__u32 pad;
|
||||
__s32 fence_fd;
|
||||
};
|
||||
#define VIRTGPU_PARAM_3D_FEATURES 1
|
||||
#define VIRTGPU_PARAM_CAPSET_QUERY_FIX 2
|
||||
|
@ -105,7 +108,7 @@ struct drm_virtgpu_get_caps {
|
|||
__u32 pad;
|
||||
};
|
||||
#define DRM_IOCTL_VIRTGPU_MAP DRM_IOWR(DRM_COMMAND_BASE + DRM_VIRTGPU_MAP, struct drm_virtgpu_map)
|
||||
#define DRM_IOCTL_VIRTGPU_EXECBUFFER DRM_IOW(DRM_COMMAND_BASE + DRM_VIRTGPU_EXECBUFFER, struct drm_virtgpu_execbuffer)
|
||||
#define DRM_IOCTL_VIRTGPU_EXECBUFFER DRM_IOWR(DRM_COMMAND_BASE + DRM_VIRTGPU_EXECBUFFER, struct drm_virtgpu_execbuffer)
|
||||
#define DRM_IOCTL_VIRTGPU_GETPARAM DRM_IOWR(DRM_COMMAND_BASE + DRM_VIRTGPU_GETPARAM, struct drm_virtgpu_getparam)
|
||||
#define DRM_IOCTL_VIRTGPU_RESOURCE_CREATE DRM_IOWR(DRM_COMMAND_BASE + DRM_VIRTGPU_RESOURCE_CREATE, struct drm_virtgpu_resource_create)
|
||||
#define DRM_IOCTL_VIRTGPU_RESOURCE_INFO DRM_IOWR(DRM_COMMAND_BASE + DRM_VIRTGPU_RESOURCE_INFO, struct drm_virtgpu_resource_info)
|
||||
|
|
31
libc/kernel/uapi/linux/android/binderfs.h
Normal file
31
libc/kernel/uapi/linux/android/binderfs.h
Normal file
|
@ -0,0 +1,31 @@
|
|||
/****************************************************************************
|
||||
****************************************************************************
|
||||
***
|
||||
*** This header was automatically generated from a Linux kernel header
|
||||
*** of the same name, to make information necessary for userspace to
|
||||
*** call into the kernel available to libc. It contains only constants,
|
||||
*** structures, and macros generated from the original header, and thus,
|
||||
*** contains no copyrightable information.
|
||||
***
|
||||
*** To edit the content of this header, modify the corresponding
|
||||
*** source file (e.g. under external/kernel-headers/original/) then
|
||||
*** run bionic/libc/kernel/tools/update_all.py
|
||||
***
|
||||
*** Any manual change here will be lost the next time this script will
|
||||
*** be run. You've been warned!
|
||||
***
|
||||
****************************************************************************
|
||||
****************************************************************************/
|
||||
#ifndef _UAPI_LINUX_BINDERFS_H
|
||||
#define _UAPI_LINUX_BINDERFS_H
|
||||
#include <linux/android/binder.h>
|
||||
#include <linux/types.h>
|
||||
#include <linux/ioctl.h>
|
||||
#define BINDERFS_MAX_NAME 255
|
||||
struct binderfs_device {
|
||||
char name[BINDERFS_MAX_NAME + 1];
|
||||
__u32 major;
|
||||
__u32 minor;
|
||||
};
|
||||
#define BINDER_CTL_ADD _IOWR('b', 1, struct binderfs_device)
|
||||
#endif
|
|
@ -265,6 +265,7 @@ enum {
|
|||
#define AUDIT_ARCH_ARM (EM_ARM | __AUDIT_ARCH_LE)
|
||||
#define AUDIT_ARCH_ARMEB (EM_ARM)
|
||||
#define AUDIT_ARCH_CRIS (EM_CRIS | __AUDIT_ARCH_LE)
|
||||
#define AUDIT_ARCH_CSKY (EM_CSKY | __AUDIT_ARCH_LE)
|
||||
#define AUDIT_ARCH_FRV (EM_FRV)
|
||||
#define AUDIT_ARCH_I386 (EM_386 | __AUDIT_ARCH_LE)
|
||||
#define AUDIT_ARCH_IA64 (EM_IA_64 | __AUDIT_ARCH_64BIT | __AUDIT_ARCH_LE)
|
||||
|
@ -283,6 +284,8 @@ enum {
|
|||
#define AUDIT_ARCH_PPC (EM_PPC)
|
||||
#define AUDIT_ARCH_PPC64 (EM_PPC64 | __AUDIT_ARCH_64BIT)
|
||||
#define AUDIT_ARCH_PPC64LE (EM_PPC64 | __AUDIT_ARCH_64BIT | __AUDIT_ARCH_LE)
|
||||
#define AUDIT_ARCH_RISCV32 (EM_RISCV | __AUDIT_ARCH_LE)
|
||||
#define AUDIT_ARCH_RISCV64 (EM_RISCV | __AUDIT_ARCH_64BIT | __AUDIT_ARCH_LE)
|
||||
#define AUDIT_ARCH_S390 (EM_S390)
|
||||
#define AUDIT_ARCH_S390X (EM_S390 | __AUDIT_ARCH_64BIT)
|
||||
#define AUDIT_ARCH_SH (EM_SH)
|
||||
|
@ -295,6 +298,7 @@ enum {
|
|||
#define AUDIT_ARCH_TILEGX32 (EM_TILEGX | __AUDIT_ARCH_LE)
|
||||
#define AUDIT_ARCH_TILEPRO (EM_TILEPRO | __AUDIT_ARCH_LE)
|
||||
#define AUDIT_ARCH_X86_64 (EM_X86_64 | __AUDIT_ARCH_64BIT | __AUDIT_ARCH_LE)
|
||||
#define AUDIT_ARCH_XTENSA (EM_XTENSA)
|
||||
#define AUDIT_PERM_EXEC 1
|
||||
#define AUDIT_PERM_WRITE 2
|
||||
#define AUDIT_PERM_READ 4
|
||||
|
|
|
@ -24,7 +24,7 @@
|
|||
#define AUTOFS_PROTO_VERSION 5
|
||||
#define AUTOFS_MIN_PROTO_VERSION 3
|
||||
#define AUTOFS_MAX_PROTO_VERSION 5
|
||||
#define AUTOFS_PROTO_SUBVERSION 3
|
||||
#define AUTOFS_PROTO_SUBVERSION 4
|
||||
#if defined(__ia64__) || defined(__alpha__)
|
||||
typedef unsigned long autofs_wqt_t;
|
||||
#else
|
||||
|
|
|
@ -169,6 +169,7 @@ enum bpf_attach_type {
|
|||
#define BPF_F_ALLOW_OVERRIDE (1U << 0)
|
||||
#define BPF_F_ALLOW_MULTI (1U << 1)
|
||||
#define BPF_F_STRICT_ALIGNMENT (1U << 0)
|
||||
#define BPF_F_ANY_ALIGNMENT (1U << 1)
|
||||
#define BPF_PSEUDO_MAP_FD 1
|
||||
#define BPF_PSEUDO_CALL 1
|
||||
#define BPF_ANY 0
|
||||
|
@ -177,11 +178,12 @@ enum bpf_attach_type {
|
|||
#define BPF_F_NO_PREALLOC (1U << 0)
|
||||
#define BPF_F_NO_COMMON_LRU (1U << 1)
|
||||
#define BPF_F_NUMA_NODE (1U << 2)
|
||||
#define BPF_F_QUERY_EFFECTIVE (1U << 0)
|
||||
#define BPF_OBJ_NAME_LEN 16U
|
||||
#define BPF_F_RDONLY (1U << 3)
|
||||
#define BPF_F_WRONLY (1U << 4)
|
||||
#define BPF_F_STACK_BUILD_ID (1U << 5)
|
||||
#define BPF_F_ZERO_SEED (1U << 6)
|
||||
#define BPF_F_QUERY_EFFECTIVE (1U << 0)
|
||||
enum bpf_stack_build_id_status {
|
||||
BPF_STACK_BUILD_ID_EMPTY = 0,
|
||||
BPF_STACK_BUILD_ID_VALID = 1,
|
||||
|
@ -233,6 +235,13 @@ union bpf_attr {
|
|||
char prog_name[BPF_OBJ_NAME_LEN];
|
||||
__u32 prog_ifindex;
|
||||
__u32 expected_attach_type;
|
||||
__u32 prog_btf_fd;
|
||||
__u32 func_info_rec_size;
|
||||
__aligned_u64 func_info;
|
||||
__u32 func_info_cnt;
|
||||
__u32 line_info_rec_size;
|
||||
__aligned_u64 line_info;
|
||||
__u32 line_info_cnt;
|
||||
};
|
||||
struct {
|
||||
__aligned_u64 pathname;
|
||||
|
@ -301,7 +310,7 @@ union bpf_attr {
|
|||
__u64 probe_addr;
|
||||
} task_fd_query;
|
||||
} __attribute__((aligned(8)));
|
||||
#define __BPF_FUNC_MAPPER(FN) FN(unspec), FN(map_lookup_elem), FN(map_update_elem), FN(map_delete_elem), FN(probe_read), FN(ktime_get_ns), FN(trace_printk), FN(get_prandom_u32), FN(get_smp_processor_id), FN(skb_store_bytes), FN(l3_csum_replace), FN(l4_csum_replace), FN(tail_call), FN(clone_redirect), FN(get_current_pid_tgid), FN(get_current_uid_gid), FN(get_current_comm), FN(get_cgroup_classid), FN(skb_vlan_push), FN(skb_vlan_pop), FN(skb_get_tunnel_key), FN(skb_set_tunnel_key), FN(perf_event_read), FN(redirect), FN(get_route_realm), FN(perf_event_output), FN(skb_load_bytes), FN(get_stackid), FN(csum_diff), FN(skb_get_tunnel_opt), FN(skb_set_tunnel_opt), FN(skb_change_proto), FN(skb_change_type), FN(skb_under_cgroup), FN(get_hash_recalc), FN(get_current_task), FN(probe_write_user), FN(current_task_under_cgroup), FN(skb_change_tail), FN(skb_pull_data), FN(csum_update), FN(set_hash_invalid), FN(get_numa_node_id), FN(skb_change_head), FN(xdp_adjust_head), FN(probe_read_str), FN(get_socket_cookie), FN(get_socket_uid), FN(set_hash), FN(setsockopt), FN(skb_adjust_room), FN(redirect_map), FN(sk_redirect_map), FN(sock_map_update), FN(xdp_adjust_meta), FN(perf_event_read_value), FN(perf_prog_read_value), FN(getsockopt), FN(override_return), FN(sock_ops_cb_flags_set), FN(msg_redirect_map), FN(msg_apply_bytes), FN(msg_cork_bytes), FN(msg_pull_data), FN(bind), FN(xdp_adjust_tail), FN(skb_get_xfrm_state), FN(get_stack), FN(skb_load_bytes_relative), FN(fib_lookup), FN(sock_hash_update), FN(msg_redirect_hash), FN(sk_redirect_hash), FN(lwt_push_encap), FN(lwt_seg6_store_bytes), FN(lwt_seg6_adjust_srh), FN(lwt_seg6_action), FN(rc_repeat), FN(rc_keydown), FN(skb_cgroup_id), FN(get_current_cgroup_id), FN(get_local_storage), FN(sk_select_reuseport), FN(skb_ancestor_cgroup_id), FN(sk_lookup_tcp), FN(sk_lookup_udp), FN(sk_release), FN(map_push_elem), FN(map_pop_elem), FN(map_peek_elem), FN(msg_push_data),
|
||||
#define __BPF_FUNC_MAPPER(FN) FN(unspec), FN(map_lookup_elem), FN(map_update_elem), FN(map_delete_elem), FN(probe_read), FN(ktime_get_ns), FN(trace_printk), FN(get_prandom_u32), FN(get_smp_processor_id), FN(skb_store_bytes), FN(l3_csum_replace), FN(l4_csum_replace), FN(tail_call), FN(clone_redirect), FN(get_current_pid_tgid), FN(get_current_uid_gid), FN(get_current_comm), FN(get_cgroup_classid), FN(skb_vlan_push), FN(skb_vlan_pop), FN(skb_get_tunnel_key), FN(skb_set_tunnel_key), FN(perf_event_read), FN(redirect), FN(get_route_realm), FN(perf_event_output), FN(skb_load_bytes), FN(get_stackid), FN(csum_diff), FN(skb_get_tunnel_opt), FN(skb_set_tunnel_opt), FN(skb_change_proto), FN(skb_change_type), FN(skb_under_cgroup), FN(get_hash_recalc), FN(get_current_task), FN(probe_write_user), FN(current_task_under_cgroup), FN(skb_change_tail), FN(skb_pull_data), FN(csum_update), FN(set_hash_invalid), FN(get_numa_node_id), FN(skb_change_head), FN(xdp_adjust_head), FN(probe_read_str), FN(get_socket_cookie), FN(get_socket_uid), FN(set_hash), FN(setsockopt), FN(skb_adjust_room), FN(redirect_map), FN(sk_redirect_map), FN(sock_map_update), FN(xdp_adjust_meta), FN(perf_event_read_value), FN(perf_prog_read_value), FN(getsockopt), FN(override_return), FN(sock_ops_cb_flags_set), FN(msg_redirect_map), FN(msg_apply_bytes), FN(msg_cork_bytes), FN(msg_pull_data), FN(bind), FN(xdp_adjust_tail), FN(skb_get_xfrm_state), FN(get_stack), FN(skb_load_bytes_relative), FN(fib_lookup), FN(sock_hash_update), FN(msg_redirect_hash), FN(sk_redirect_hash), FN(lwt_push_encap), FN(lwt_seg6_store_bytes), FN(lwt_seg6_adjust_srh), FN(lwt_seg6_action), FN(rc_repeat), FN(rc_keydown), FN(skb_cgroup_id), FN(get_current_cgroup_id), FN(get_local_storage), FN(sk_select_reuseport), FN(skb_ancestor_cgroup_id), FN(sk_lookup_tcp), FN(sk_lookup_udp), FN(sk_release), FN(map_push_elem), FN(map_pop_elem), FN(map_peek_elem), FN(msg_push_data), FN(msg_pop_data), FN(rc_pointer_rel),
|
||||
#define __BPF_ENUM_FN(x) BPF_FUNC_ ##x
|
||||
enum bpf_func_id {
|
||||
__BPF_FUNC_MAPPER(__BPF_ENUM_FN) __BPF_FUNC_MAX_ID,
|
||||
|
@ -368,6 +377,8 @@ struct __sk_buff {
|
|||
__u32 local_port;
|
||||
__u32 data_meta;
|
||||
__bpf_md_ptr(struct bpf_flow_keys *, flow_keys);
|
||||
__u64 tstamp;
|
||||
__u32 wire_len;
|
||||
};
|
||||
struct bpf_tunnel_key {
|
||||
__u32 tunnel_id;
|
||||
|
@ -451,6 +462,7 @@ struct sk_msg_md {
|
|||
__u32 local_ip6[4];
|
||||
__u32 remote_port;
|
||||
__u32 local_port;
|
||||
__u32 size;
|
||||
};
|
||||
struct sk_reuseport_md {
|
||||
__bpf_md_ptr(void *, data);
|
||||
|
@ -483,6 +495,18 @@ struct bpf_prog_info {
|
|||
__u32 nr_jited_func_lens;
|
||||
__aligned_u64 jited_ksyms;
|
||||
__aligned_u64 jited_func_lens;
|
||||
__u32 btf_id;
|
||||
__u32 func_info_rec_size;
|
||||
__aligned_u64 func_info;
|
||||
__u32 nr_func_info;
|
||||
__u32 nr_line_info;
|
||||
__aligned_u64 line_info;
|
||||
__aligned_u64 jited_line_info;
|
||||
__u32 nr_jited_line_info;
|
||||
__u32 line_info_rec_size;
|
||||
__u32 jited_line_info_rec_size;
|
||||
__u32 nr_prog_tags;
|
||||
__aligned_u64 prog_tags;
|
||||
} __attribute__((aligned(8)));
|
||||
struct bpf_map_info {
|
||||
__u32 type;
|
||||
|
@ -678,4 +702,16 @@ struct bpf_flow_keys {
|
|||
};
|
||||
};
|
||||
};
|
||||
struct bpf_func_info {
|
||||
__u32 insn_off;
|
||||
__u32 type_id;
|
||||
};
|
||||
#define BPF_LINE_INFO_LINE_NUM(line_col) ((line_col) >> 10)
|
||||
#define BPF_LINE_INFO_LINE_COL(line_col) ((line_col) & 0x3ff)
|
||||
struct bpf_line_info {
|
||||
__u32 insn_off;
|
||||
__u32 file_name_off;
|
||||
__u32 line_off;
|
||||
__u32 line_col;
|
||||
};
|
||||
#endif
|
||||
|
|
|
@ -44,6 +44,7 @@ struct btf_type {
|
|||
};
|
||||
#define BTF_INFO_KIND(info) (((info) >> 24) & 0x0f)
|
||||
#define BTF_INFO_VLEN(info) ((info) & 0xffff)
|
||||
#define BTF_INFO_KFLAG(info) ((info) >> 31)
|
||||
#define BTF_KIND_UNKN 0
|
||||
#define BTF_KIND_INT 1
|
||||
#define BTF_KIND_PTR 2
|
||||
|
@ -56,8 +57,10 @@ struct btf_type {
|
|||
#define BTF_KIND_VOLATILE 9
|
||||
#define BTF_KIND_CONST 10
|
||||
#define BTF_KIND_RESTRICT 11
|
||||
#define BTF_KIND_MAX 11
|
||||
#define NR_BTF_KINDS 12
|
||||
#define BTF_KIND_FUNC 12
|
||||
#define BTF_KIND_FUNC_PROTO 13
|
||||
#define BTF_KIND_MAX 13
|
||||
#define NR_BTF_KINDS 14
|
||||
#define BTF_INT_ENCODING(VAL) (((VAL) & 0x0f000000) >> 24)
|
||||
#define BTF_INT_OFFSET(VAL) (((VAL & 0x00ff0000)) >> 16)
|
||||
#define BTF_INT_BITS(VAL) ((VAL) & 0x000000ff)
|
||||
|
@ -78,4 +81,10 @@ struct btf_member {
|
|||
__u32 type;
|
||||
__u32 offset;
|
||||
};
|
||||
#define BTF_MEMBER_BITFIELD_SIZE(val) ((val) >> 24)
|
||||
#define BTF_MEMBER_BIT_OFFSET(val) ((val) & 0xffffff)
|
||||
struct btf_param {
|
||||
__u32 name_off;
|
||||
__u32 type;
|
||||
};
|
||||
#endif
|
||||
|
|
|
@ -173,6 +173,7 @@ struct btrfs_ioctl_fs_info_args {
|
|||
#define BTRFS_FEATURE_INCOMPAT_RAID56 (1ULL << 7)
|
||||
#define BTRFS_FEATURE_INCOMPAT_SKINNY_METADATA (1ULL << 8)
|
||||
#define BTRFS_FEATURE_INCOMPAT_NO_HOLES (1ULL << 9)
|
||||
#define BTRFS_FEATURE_INCOMPAT_METADATA_UUID (1ULL << 10)
|
||||
struct btrfs_ioctl_feature_flags {
|
||||
__u64 compat_flags;
|
||||
__u64 compat_ro_flags;
|
||||
|
|
|
@ -166,6 +166,7 @@ struct btrfs_free_space_header {
|
|||
#define BTRFS_SUPER_FLAG_METADUMP (1ULL << 33)
|
||||
#define BTRFS_SUPER_FLAG_METADUMP_V2 (1ULL << 34)
|
||||
#define BTRFS_SUPER_FLAG_CHANGING_FSID (1ULL << 35)
|
||||
#define BTRFS_SUPER_FLAG_CHANGING_FSID_V2 (1ULL << 36)
|
||||
struct btrfs_extent_item {
|
||||
__le64 refs;
|
||||
__le64 generation;
|
||||
|
|
|
@ -65,45 +65,62 @@ struct crypto_user_alg {
|
|||
__u32 cru_refcnt;
|
||||
__u32 cru_flags;
|
||||
};
|
||||
struct crypto_stat {
|
||||
struct crypto_stat_aead {
|
||||
char type[CRYPTO_MAX_NAME];
|
||||
__u64 stat_encrypt_cnt;
|
||||
__u64 stat_encrypt_tlen;
|
||||
__u64 stat_decrypt_cnt;
|
||||
__u64 stat_decrypt_tlen;
|
||||
__u64 stat_err_cnt;
|
||||
};
|
||||
struct crypto_stat_akcipher {
|
||||
char type[CRYPTO_MAX_NAME];
|
||||
__u64 stat_encrypt_cnt;
|
||||
__u64 stat_encrypt_tlen;
|
||||
__u64 stat_decrypt_cnt;
|
||||
__u64 stat_decrypt_tlen;
|
||||
__u64 stat_verify_cnt;
|
||||
__u64 stat_sign_cnt;
|
||||
__u64 stat_err_cnt;
|
||||
};
|
||||
struct crypto_stat_cipher {
|
||||
char type[CRYPTO_MAX_NAME];
|
||||
__u64 stat_encrypt_cnt;
|
||||
__u64 stat_encrypt_tlen;
|
||||
__u64 stat_decrypt_cnt;
|
||||
__u64 stat_decrypt_tlen;
|
||||
__u64 stat_err_cnt;
|
||||
};
|
||||
struct crypto_stat_compress {
|
||||
char type[CRYPTO_MAX_NAME];
|
||||
__u64 stat_compress_cnt;
|
||||
__u64 stat_compress_tlen;
|
||||
__u64 stat_decompress_cnt;
|
||||
__u64 stat_decompress_tlen;
|
||||
__u64 stat_err_cnt;
|
||||
};
|
||||
struct crypto_stat_hash {
|
||||
char type[CRYPTO_MAX_NAME];
|
||||
__u64 stat_hash_cnt;
|
||||
__u64 stat_hash_tlen;
|
||||
__u64 stat_err_cnt;
|
||||
};
|
||||
struct crypto_stat_kpp {
|
||||
char type[CRYPTO_MAX_NAME];
|
||||
__u64 stat_setsecret_cnt;
|
||||
__u64 stat_generate_public_key_cnt;
|
||||
__u64 stat_compute_shared_secret_cnt;
|
||||
__u64 stat_err_cnt;
|
||||
};
|
||||
struct crypto_stat_rng {
|
||||
char type[CRYPTO_MAX_NAME];
|
||||
__u64 stat_generate_cnt;
|
||||
__u64 stat_generate_tlen;
|
||||
__u64 stat_seed_cnt;
|
||||
__u64 stat_err_cnt;
|
||||
};
|
||||
struct crypto_stat_larval {
|
||||
char type[CRYPTO_MAX_NAME];
|
||||
union {
|
||||
__u32 stat_encrypt_cnt;
|
||||
__u32 stat_compress_cnt;
|
||||
__u32 stat_generate_cnt;
|
||||
__u32 stat_hash_cnt;
|
||||
__u32 stat_setsecret_cnt;
|
||||
};
|
||||
union {
|
||||
__u64 stat_encrypt_tlen;
|
||||
__u64 stat_compress_tlen;
|
||||
__u64 stat_generate_tlen;
|
||||
__u64 stat_hash_tlen;
|
||||
};
|
||||
union {
|
||||
__u32 stat_akcipher_err_cnt;
|
||||
__u32 stat_cipher_err_cnt;
|
||||
__u32 stat_compress_err_cnt;
|
||||
__u32 stat_aead_err_cnt;
|
||||
__u32 stat_hash_err_cnt;
|
||||
__u32 stat_rng_err_cnt;
|
||||
__u32 stat_kpp_err_cnt;
|
||||
};
|
||||
union {
|
||||
__u32 stat_decrypt_cnt;
|
||||
__u32 stat_decompress_cnt;
|
||||
__u32 stat_seed_cnt;
|
||||
__u32 stat_generate_public_key_cnt;
|
||||
};
|
||||
union {
|
||||
__u64 stat_decrypt_tlen;
|
||||
__u64 stat_decompress_tlen;
|
||||
};
|
||||
union {
|
||||
__u32 stat_verify_cnt;
|
||||
__u32 stat_compute_shared_secret_cnt;
|
||||
};
|
||||
__u32 stat_sign_cnt;
|
||||
};
|
||||
struct crypto_report_larval {
|
||||
char type[CRYPTO_MAX_NAME];
|
||||
|
|
|
@ -115,6 +115,10 @@ enum devlink_param_cmode {
|
|||
__DEVLINK_PARAM_CMODE_MAX,
|
||||
DEVLINK_PARAM_CMODE_MAX = __DEVLINK_PARAM_CMODE_MAX - 1
|
||||
};
|
||||
enum devlink_param_fw_load_policy_value {
|
||||
DEVLINK_PARAM_FW_LOAD_POLICY_VALUE_DRIVER,
|
||||
DEVLINK_PARAM_FW_LOAD_POLICY_VALUE_FLASH,
|
||||
};
|
||||
enum devlink_attr {
|
||||
DEVLINK_ATTR_UNSPEC,
|
||||
DEVLINK_ATTR_BUS_NAME,
|
||||
|
|
|
@ -45,6 +45,7 @@
|
|||
#define EM_M32R 88
|
||||
#define EM_MN10300 89
|
||||
#define EM_OPENRISC 92
|
||||
#define EM_XTENSA 94
|
||||
#define EM_BLACKFIN 106
|
||||
#define EM_ALTERA_NIOS2 113
|
||||
#define EM_TI_C6000 140
|
||||
|
@ -54,6 +55,7 @@
|
|||
#define EM_TILEGX 191
|
||||
#define EM_RISCV 243
|
||||
#define EM_BPF 247
|
||||
#define EM_CSKY 252
|
||||
#define EM_FRV 0x5441
|
||||
#define EM_ALPHA 0x9026
|
||||
#define EM_CYGNUS_M32R 0x9041
|
||||
|
|
|
@ -355,10 +355,12 @@ typedef struct elf64_shdr {
|
|||
#define NT_ARM_HW_WATCH 0x403
|
||||
#define NT_ARM_SYSTEM_CALL 0x404
|
||||
#define NT_ARM_SVE 0x405
|
||||
#define NT_ARM_PAC_MASK 0x406
|
||||
#define NT_ARC_V2 0x600
|
||||
#define NT_VMCOREDD 0x700
|
||||
#define NT_MIPS_DSP 0x800
|
||||
#define NT_MIPS_FP_MODE 0x801
|
||||
#define NT_MIPS_MSA 0x802
|
||||
typedef struct elf32_note {
|
||||
Elf32_Word n_namesz;
|
||||
Elf32_Word n_descsz;
|
||||
|
|
|
@ -24,9 +24,11 @@
|
|||
#define FAN_CLOSE_WRITE 0x00000008
|
||||
#define FAN_CLOSE_NOWRITE 0x00000010
|
||||
#define FAN_OPEN 0x00000020
|
||||
#define FAN_OPEN_EXEC 0x00001000
|
||||
#define FAN_Q_OVERFLOW 0x00004000
|
||||
#define FAN_OPEN_PERM 0x00010000
|
||||
#define FAN_ACCESS_PERM 0x00020000
|
||||
#define FAN_OPEN_EXEC_PERM 0x00040000
|
||||
#define FAN_ONDIR 0x40000000
|
||||
#define FAN_EVENT_ON_CHILD 0x08000000
|
||||
#define FAN_CLOSE (FAN_CLOSE_WRITE | FAN_CLOSE_NOWRITE)
|
||||
|
|
|
@ -320,4 +320,6 @@ struct fb_cursor {
|
|||
struct fbcurpos hot;
|
||||
struct fb_image image;
|
||||
};
|
||||
#define FB_BACKLIGHT_LEVELS 128
|
||||
#define FB_BACKLIGHT_MAX 0xFF
|
||||
#endif
|
||||
|
|
|
@ -21,6 +21,7 @@
|
|||
#include <linux/limits.h>
|
||||
#include <linux/ioctl.h>
|
||||
#include <linux/types.h>
|
||||
#include <linux/mount.h>
|
||||
#undef NR_OPEN
|
||||
#define INR_OPEN_CUR 1024
|
||||
#define INR_OPEN_MAX 4096
|
||||
|
@ -74,40 +75,6 @@ struct inodes_stat_t {
|
|||
long dummy[5];
|
||||
};
|
||||
#define NR_FILE 8192
|
||||
#define MS_RDONLY 1
|
||||
#define MS_NOSUID 2
|
||||
#define MS_NODEV 4
|
||||
#define MS_NOEXEC 8
|
||||
#define MS_SYNCHRONOUS 16
|
||||
#define MS_REMOUNT 32
|
||||
#define MS_MANDLOCK 64
|
||||
#define MS_DIRSYNC 128
|
||||
#define MS_NOATIME 1024
|
||||
#define MS_NODIRATIME 2048
|
||||
#define MS_BIND 4096
|
||||
#define MS_MOVE 8192
|
||||
#define MS_REC 16384
|
||||
#define MS_VERBOSE 32768
|
||||
#define MS_SILENT 32768
|
||||
#define MS_POSIXACL (1 << 16)
|
||||
#define MS_UNBINDABLE (1 << 17)
|
||||
#define MS_PRIVATE (1 << 18)
|
||||
#define MS_SLAVE (1 << 19)
|
||||
#define MS_SHARED (1 << 20)
|
||||
#define MS_RELATIME (1 << 21)
|
||||
#define MS_KERNMOUNT (1 << 22)
|
||||
#define MS_I_VERSION (1 << 23)
|
||||
#define MS_STRICTATIME (1 << 24)
|
||||
#define MS_LAZYTIME (1 << 25)
|
||||
#define MS_SUBMOUNT (1 << 26)
|
||||
#define MS_NOREMOTELOCK (1 << 27)
|
||||
#define MS_NOSEC (1 << 28)
|
||||
#define MS_BORN (1 << 29)
|
||||
#define MS_ACTIVE (1 << 30)
|
||||
#define MS_NOUSER (1 << 31)
|
||||
#define MS_RMT_MASK (MS_RDONLY | MS_SYNCHRONOUS | MS_MANDLOCK | MS_I_VERSION | MS_LAZYTIME)
|
||||
#define MS_MGC_VAL 0xC0ED0000
|
||||
#define MS_MGC_MSK 0xffff0000
|
||||
struct fsxattr {
|
||||
__u32 fsx_xflags;
|
||||
__u32 fsx_extsize;
|
||||
|
@ -190,7 +157,8 @@ struct fsxattr {
|
|||
#define FS_POLICY_FLAGS_PAD_16 0x02
|
||||
#define FS_POLICY_FLAGS_PAD_32 0x03
|
||||
#define FS_POLICY_FLAGS_PAD_MASK 0x03
|
||||
#define FS_POLICY_FLAGS_VALID 0x03
|
||||
#define FS_POLICY_FLAG_DIRECT_KEY 0x04
|
||||
#define FS_POLICY_FLAGS_VALID 0x07
|
||||
#define FS_ENCRYPTION_MODE_INVALID 0
|
||||
#define FS_ENCRYPTION_MODE_AES_256_XTS 1
|
||||
#define FS_ENCRYPTION_MODE_AES_256_GCM 2
|
||||
|
@ -200,6 +168,7 @@ struct fsxattr {
|
|||
#define FS_ENCRYPTION_MODE_AES_128_CTS 6
|
||||
#define FS_ENCRYPTION_MODE_SPECK128_256_XTS 7
|
||||
#define FS_ENCRYPTION_MODE_SPECK128_256_CTS 8
|
||||
#define FS_ENCRYPTION_MODE_ADIANTUM 9
|
||||
struct fscrypt_policy {
|
||||
__u8 version;
|
||||
__u8 contents_encryption_mode;
|
||||
|
|
|
@ -37,6 +37,8 @@ enum hash_algo {
|
|||
HASH_ALGO_TGR_160,
|
||||
HASH_ALGO_TGR_192,
|
||||
HASH_ALGO_SM3_256,
|
||||
HASH_ALGO_STREEBOG_256,
|
||||
HASH_ALGO_STREEBOG_512,
|
||||
HASH_ALGO__LAST
|
||||
};
|
||||
#endif
|
||||
|
|
|
@ -237,4 +237,12 @@ struct br_mcast_stats {
|
|||
__u64 mcast_bytes[BR_MCAST_DIR_SIZE];
|
||||
__u64 mcast_packets[BR_MCAST_DIR_SIZE];
|
||||
};
|
||||
enum br_boolopt_id {
|
||||
BR_BOOLOPT_NO_LL_LEARN,
|
||||
BR_BOOLOPT_MAX
|
||||
};
|
||||
struct br_boolopt_multi {
|
||||
__u32 optval;
|
||||
__u32 optmask;
|
||||
};
|
||||
#endif
|
||||
|
|
|
@ -221,6 +221,7 @@ enum {
|
|||
IFLA_BR_MCAST_IGMP_VERSION,
|
||||
IFLA_BR_MCAST_MLD_VERSION,
|
||||
IFLA_BR_VLAN_STATS_PER_PORT,
|
||||
IFLA_BR_MULTI_BOOLOPT,
|
||||
__IFLA_BR_MAX,
|
||||
};
|
||||
#define IFLA_BR_MAX (__IFLA_BR_MAX - 1)
|
||||
|
@ -426,6 +427,7 @@ enum {
|
|||
IFLA_VXLAN_LABEL,
|
||||
IFLA_VXLAN_GPE,
|
||||
IFLA_VXLAN_TTL_INHERIT,
|
||||
IFLA_VXLAN_DF,
|
||||
__IFLA_VXLAN_MAX
|
||||
};
|
||||
#define IFLA_VXLAN_MAX (__IFLA_VXLAN_MAX - 1)
|
||||
|
@ -433,6 +435,13 @@ struct ifla_vxlan_port_range {
|
|||
__be16 low;
|
||||
__be16 high;
|
||||
};
|
||||
enum ifla_vxlan_df {
|
||||
VXLAN_DF_UNSET = 0,
|
||||
VXLAN_DF_SET,
|
||||
VXLAN_DF_INHERIT,
|
||||
__VXLAN_DF_END,
|
||||
VXLAN_DF_MAX = __VXLAN_DF_END - 1,
|
||||
};
|
||||
enum {
|
||||
IFLA_GENEVE_UNSPEC,
|
||||
IFLA_GENEVE_ID,
|
||||
|
@ -447,9 +456,17 @@ enum {
|
|||
IFLA_GENEVE_UDP_ZERO_CSUM6_RX,
|
||||
IFLA_GENEVE_LABEL,
|
||||
IFLA_GENEVE_TTL_INHERIT,
|
||||
IFLA_GENEVE_DF,
|
||||
__IFLA_GENEVE_MAX
|
||||
};
|
||||
#define IFLA_GENEVE_MAX (__IFLA_GENEVE_MAX - 1)
|
||||
enum ifla_geneve_df {
|
||||
GENEVE_DF_UNSET = 0,
|
||||
GENEVE_DF_SET,
|
||||
GENEVE_DF_INHERIT,
|
||||
__GENEVE_DF_END,
|
||||
GENEVE_DF_MAX = __GENEVE_DF_END - 1,
|
||||
};
|
||||
enum {
|
||||
IFLA_PPP_UNSPEC,
|
||||
IFLA_PPP_DEV_FD,
|
||||
|
|
|
@ -51,6 +51,7 @@
|
|||
#define TUNGETVNETBE _IOR('T', 223, int)
|
||||
#define TUNSETSTEERINGEBPF _IOR('T', 224, int)
|
||||
#define TUNSETFILTEREBPF _IOR('T', 225, int)
|
||||
#define TUNSETCARRIER _IOW('T', 226, int)
|
||||
#define IFF_TUN 0x0001
|
||||
#define IFF_TAP 0x0002
|
||||
#define IFF_NAPI 0x0010
|
||||
|
|
|
@ -201,7 +201,7 @@ struct sockaddr_in {
|
|||
#define IN_CLASSD(a) ((((long int) (a)) & 0xf0000000) == 0xe0000000)
|
||||
#define IN_MULTICAST(a) IN_CLASSD(a)
|
||||
#define IN_MULTICAST_NET 0xe0000000
|
||||
#define IN_BADCLASS(a) (((long int) (a)) == (long int)0xffffffff)
|
||||
#define IN_BADCLASS(a) (((long int) (a)) == (long int) 0xffffffff)
|
||||
#define IN_EXPERIMENTAL(a) IN_BADCLASS((a))
|
||||
#define IN_CLASSE(a) ((((long int) (a)) & 0xf0000000) == 0xf0000000)
|
||||
#define IN_CLASSE_NET 0xffffffff
|
||||
|
|
|
@ -623,6 +623,8 @@
|
|||
#define REL_WHEEL 0x08
|
||||
#define REL_MISC 0x09
|
||||
#define REL_RESERVED 0x0a
|
||||
#define REL_WHEEL_HI_RES 0x0b
|
||||
#define REL_HWHEEL_HI_RES 0x0c
|
||||
#define REL_MAX 0x0f
|
||||
#define REL_CNT (REL_MAX + 1)
|
||||
#define ABS_X 0x00
|
||||
|
|
|
@ -24,13 +24,17 @@
|
|||
#include <linux/types.h>
|
||||
#include "input-event-codes.h"
|
||||
struct input_event {
|
||||
#if (__BITS_PER_LONG != 32 || !defined(__USE_TIME_BITS64)) && !defined(__KERNEL)
|
||||
#if __BITS_PER_LONG != 32 || !defined(__USE_TIME_BITS64)
|
||||
struct timeval time;
|
||||
#define input_event_sec time.tv_sec
|
||||
#define input_event_usec time.tv_usec
|
||||
#else
|
||||
__kernel_ulong_t __sec;
|
||||
#if defined(__sparc__) && defined(__arch64__)
|
||||
unsigned int __usec;
|
||||
#else
|
||||
__kernel_ulong_t __usec;
|
||||
#endif
|
||||
#define input_event_sec __sec
|
||||
#define input_event_usec __usec
|
||||
#endif
|
||||
|
|
|
@ -261,6 +261,20 @@ struct kfd_ioctl_unmap_memory_from_gpu_args {
|
|||
__u32 n_devices;
|
||||
__u32 n_success;
|
||||
};
|
||||
struct kfd_ioctl_get_dmabuf_info_args {
|
||||
__u64 size;
|
||||
__u64 metadata_ptr;
|
||||
__u32 metadata_size;
|
||||
__u32 gpu_id;
|
||||
__u32 flags;
|
||||
__u32 dmabuf_fd;
|
||||
};
|
||||
struct kfd_ioctl_import_dmabuf_args {
|
||||
__u64 va_addr;
|
||||
__u64 handle;
|
||||
__u32 gpu_id;
|
||||
__u32 dmabuf_fd;
|
||||
};
|
||||
#define AMDKFD_IOCTL_BASE 'K'
|
||||
#define AMDKFD_IO(nr) _IO(AMDKFD_IOCTL_BASE, nr)
|
||||
#define AMDKFD_IOR(nr,type) _IOR(AMDKFD_IOCTL_BASE, nr, type)
|
||||
|
@ -293,6 +307,8 @@ struct kfd_ioctl_unmap_memory_from_gpu_args {
|
|||
#define AMDKFD_IOC_UNMAP_MEMORY_FROM_GPU AMDKFD_IOWR(0x19, struct kfd_ioctl_unmap_memory_from_gpu_args)
|
||||
#define AMDKFD_IOC_SET_CU_MASK AMDKFD_IOW(0x1A, struct kfd_ioctl_set_cu_mask_args)
|
||||
#define AMDKFD_IOC_GET_QUEUE_WAVE_STATE AMDKFD_IOWR(0x1B, struct kfd_ioctl_get_queue_wave_state_args)
|
||||
#define AMDKFD_IOC_GET_DMABUF_INFO AMDKFD_IOWR(0x1C, struct kfd_ioctl_get_dmabuf_info_args)
|
||||
#define AMDKFD_IOC_IMPORT_DMABUF AMDKFD_IOWR(0x1D, struct kfd_ioctl_import_dmabuf_args)
|
||||
#define AMDKFD_COMMAND_START 0x01
|
||||
#define AMDKFD_COMMAND_END 0x1C
|
||||
#define AMDKFD_COMMAND_END 0x1E
|
||||
#endif
|
||||
|
|
|
@ -367,6 +367,15 @@ struct kvm_dirty_log {
|
|||
__u64 padding2;
|
||||
};
|
||||
};
|
||||
struct kvm_clear_dirty_log {
|
||||
__u32 slot;
|
||||
__u32 num_pages;
|
||||
__u64 first_page;
|
||||
union {
|
||||
void __user * dirty_bitmap;
|
||||
__u64 padding2;
|
||||
};
|
||||
};
|
||||
struct kvm_signal_mask {
|
||||
__u32 len;
|
||||
__u8 sigset[0];
|
||||
|
@ -759,6 +768,8 @@ struct kvm_ppc_resize_hpt {
|
|||
#define KVM_CAP_HYPERV_ENLIGHTENED_VMCS 163
|
||||
#define KVM_CAP_EXCEPTION_PAYLOAD 164
|
||||
#define KVM_CAP_ARM_VM_IPA_SIZE 165
|
||||
#define KVM_CAP_MANUAL_DIRTY_LOG_PROTECT 166
|
||||
#define KVM_CAP_HYPERV_CPUID 167
|
||||
#ifdef KVM_CAP_IRQ_ROUTING
|
||||
struct kvm_irq_routing_irqchip {
|
||||
__u32 irqchip;
|
||||
|
@ -1070,6 +1081,8 @@ struct kvm_enc_region {
|
|||
#define KVM_HYPERV_EVENTFD _IOW(KVMIO, 0xbd, struct kvm_hyperv_eventfd)
|
||||
#define KVM_GET_NESTED_STATE _IOWR(KVMIO, 0xbe, struct kvm_nested_state)
|
||||
#define KVM_SET_NESTED_STATE _IOW(KVMIO, 0xbf, struct kvm_nested_state)
|
||||
#define KVM_CLEAR_DIRTY_LOG _IOWR(KVMIO, 0xc0, struct kvm_clear_dirty_log)
|
||||
#define KVM_GET_SUPPORTED_HV_CPUID _IOWR(KVMIO, 0xc1, struct kvm_cpuid2)
|
||||
enum sev_cmd_id {
|
||||
KVM_SEV_INIT = 0,
|
||||
KVM_SEV_ES_INIT,
|
||||
|
|
|
@ -78,6 +78,7 @@
|
|||
#define DAXFS_MAGIC 0x64646178
|
||||
#define BINFMTFS_MAGIC 0x42494e4d
|
||||
#define DEVPTS_SUPER_MAGIC 0x1cd1
|
||||
#define BINDERFS_SUPER_MAGIC 0x6c6f6f70
|
||||
#define FUTEXFS_SUPER_MAGIC 0xBAD1DEA
|
||||
#define PIPEFS_MAGIC 0x50495045
|
||||
#define PROC_SUPER_MAGIC 0x9fa0
|
||||
|
|
55
libc/kernel/uapi/linux/mount.h
Normal file
55
libc/kernel/uapi/linux/mount.h
Normal file
|
@ -0,0 +1,55 @@
|
|||
/****************************************************************************
|
||||
****************************************************************************
|
||||
***
|
||||
*** This header was automatically generated from a Linux kernel header
|
||||
*** of the same name, to make information necessary for userspace to
|
||||
*** call into the kernel available to libc. It contains only constants,
|
||||
*** structures, and macros generated from the original header, and thus,
|
||||
*** contains no copyrightable information.
|
||||
***
|
||||
*** To edit the content of this header, modify the corresponding
|
||||
*** source file (e.g. under external/kernel-headers/original/) then
|
||||
*** run bionic/libc/kernel/tools/update_all.py
|
||||
***
|
||||
*** Any manual change here will be lost the next time this script will
|
||||
*** be run. You've been warned!
|
||||
***
|
||||
****************************************************************************
|
||||
****************************************************************************/
|
||||
#ifndef _UAPI_LINUX_MOUNT_H
|
||||
#define _UAPI_LINUX_MOUNT_H
|
||||
#define MS_RDONLY 1
|
||||
#define MS_NOSUID 2
|
||||
#define MS_NODEV 4
|
||||
#define MS_NOEXEC 8
|
||||
#define MS_SYNCHRONOUS 16
|
||||
#define MS_REMOUNT 32
|
||||
#define MS_MANDLOCK 64
|
||||
#define MS_DIRSYNC 128
|
||||
#define MS_NOATIME 1024
|
||||
#define MS_NODIRATIME 2048
|
||||
#define MS_BIND 4096
|
||||
#define MS_MOVE 8192
|
||||
#define MS_REC 16384
|
||||
#define MS_VERBOSE 32768
|
||||
#define MS_SILENT 32768
|
||||
#define MS_POSIXACL (1 << 16)
|
||||
#define MS_UNBINDABLE (1 << 17)
|
||||
#define MS_PRIVATE (1 << 18)
|
||||
#define MS_SLAVE (1 << 19)
|
||||
#define MS_SHARED (1 << 20)
|
||||
#define MS_RELATIME (1 << 21)
|
||||
#define MS_KERNMOUNT (1 << 22)
|
||||
#define MS_I_VERSION (1 << 23)
|
||||
#define MS_STRICTATIME (1 << 24)
|
||||
#define MS_LAZYTIME (1 << 25)
|
||||
#define MS_SUBMOUNT (1 << 26)
|
||||
#define MS_NOREMOTELOCK (1 << 27)
|
||||
#define MS_NOSEC (1 << 28)
|
||||
#define MS_BORN (1 << 29)
|
||||
#define MS_ACTIVE (1 << 30)
|
||||
#define MS_NOUSER (1 << 31)
|
||||
#define MS_RMT_MASK (MS_RDONLY | MS_SYNCHRONOUS | MS_MANDLOCK | MS_I_VERSION | MS_LAZYTIME)
|
||||
#define MS_MGC_VAL 0xC0ED0000
|
||||
#define MS_MGC_MSK 0xffff0000
|
||||
#endif
|
|
@ -57,12 +57,10 @@
|
|||
#define MSDOS_SLOTS 21
|
||||
#define MSDOS_DOT ". "
|
||||
#define MSDOS_DOTDOT ".. "
|
||||
#define FAT_FIRST_ENT(s,x) ((MSDOS_SB(s)->fat_bits == 32 ? 0x0FFFFF00 : MSDOS_SB(s)->fat_bits == 16 ? 0xFF00 : 0xF00) | (x))
|
||||
#define FAT_START_ENT 2
|
||||
#define MAX_FAT12 0xFF4
|
||||
#define MAX_FAT16 0xFFF4
|
||||
#define MAX_FAT32 0x0FFFFFF6
|
||||
#define MAX_FAT(s) (MSDOS_SB(s)->fat_bits == 32 ? MAX_FAT32 : MSDOS_SB(s)->fat_bits == 16 ? MAX_FAT16 : MAX_FAT12)
|
||||
#define BAD_FAT12 0xFF7
|
||||
#define BAD_FAT16 0xFFF7
|
||||
#define BAD_FAT32 0x0FFFFFF7
|
||||
|
@ -108,7 +106,7 @@ struct fat_boot_sector {
|
|||
__u8 state;
|
||||
__u8 signature;
|
||||
__u8 vol_id[4];
|
||||
__u8 vol_label[11];
|
||||
__u8 vol_label[MSDOS_NAME];
|
||||
__u8 fs_type[8];
|
||||
} fat16;
|
||||
struct {
|
||||
|
@ -123,7 +121,7 @@ struct fat_boot_sector {
|
|||
__u8 state;
|
||||
__u8 signature;
|
||||
__u8 vol_id[4];
|
||||
__u8 vol_label[11];
|
||||
__u8 vol_label[MSDOS_NAME];
|
||||
__u8 fs_type[8];
|
||||
} fat32;
|
||||
};
|
||||
|
|
|
@ -24,6 +24,8 @@ enum ncsi_nl_commands {
|
|||
NCSI_CMD_SET_INTERFACE,
|
||||
NCSI_CMD_CLEAR_INTERFACE,
|
||||
NCSI_CMD_SEND_CMD,
|
||||
NCSI_CMD_SET_PACKAGE_MASK,
|
||||
NCSI_CMD_SET_CHANNEL_MASK,
|
||||
__NCSI_CMD_AFTER_LAST,
|
||||
NCSI_CMD_MAX = __NCSI_CMD_AFTER_LAST - 1
|
||||
};
|
||||
|
@ -34,6 +36,9 @@ enum ncsi_nl_attrs {
|
|||
NCSI_ATTR_PACKAGE_ID,
|
||||
NCSI_ATTR_CHANNEL_ID,
|
||||
NCSI_ATTR_DATA,
|
||||
NCSI_ATTR_MULTI_FLAG,
|
||||
NCSI_ATTR_PACKAGE_MASK,
|
||||
NCSI_ATTR_CHANNEL_MASK,
|
||||
__NCSI_ATTR_AFTER_LAST,
|
||||
NCSI_ATTR_MAX = __NCSI_ATTR_AFTER_LAST - 1
|
||||
};
|
||||
|
|
|
@ -42,6 +42,7 @@ enum {
|
|||
NDA_MASTER,
|
||||
NDA_LINK_NETNSID,
|
||||
NDA_SRC_VNI,
|
||||
NDA_PROTOCOL,
|
||||
__NDA_MAX
|
||||
};
|
||||
#define NDA_MAX (__NDA_MAX - 1)
|
||||
|
|
|
@ -24,6 +24,8 @@ enum {
|
|||
NETNSA_NSID,
|
||||
NETNSA_PID,
|
||||
NETNSA_FD,
|
||||
NETNSA_TARGET_NSID,
|
||||
NETNSA_CURRENT_NSID,
|
||||
__NETNSA_MAX,
|
||||
};
|
||||
#define NETNSA_MAX (__NETNSA_MAX - 1)
|
||||
|
|
|
@ -35,8 +35,6 @@
|
|||
#define NF_VERDICT_QBITS 16
|
||||
#define NF_QUEUE_NR(x) ((((x) << 16) & NF_VERDICT_QMASK) | NF_QUEUE)
|
||||
#define NF_DROP_ERR(x) (((- x) << 16) | NF_DROP)
|
||||
#define NFC_UNKNOWN 0x4000
|
||||
#define NFC_ALTERED 0x8000
|
||||
#define NF_VERDICT_BITS 16
|
||||
enum nf_inet_hooks {
|
||||
NF_INET_PRE_ROUTING,
|
||||
|
|
|
@ -19,7 +19,8 @@
|
|||
#ifndef _UAPI_IP_SET_H
|
||||
#define _UAPI_IP_SET_H
|
||||
#include <linux/types.h>
|
||||
#define IPSET_PROTOCOL 6
|
||||
#define IPSET_PROTOCOL 7
|
||||
#define IPSET_PROTOCOL_MIN 6
|
||||
#define IPSET_MAXNAMELEN 32
|
||||
#define IPSET_MAX_COMMENT_SIZE 255
|
||||
enum ipset_cmd {
|
||||
|
@ -37,6 +38,8 @@ enum ipset_cmd {
|
|||
IPSET_CMD_TEST,
|
||||
IPSET_CMD_HEADER,
|
||||
IPSET_CMD_TYPE,
|
||||
IPSET_CMD_GET_BYNAME,
|
||||
IPSET_CMD_GET_BYINDEX,
|
||||
IPSET_MSG_MAX,
|
||||
IPSET_CMD_RESTORE = IPSET_MSG_MAX,
|
||||
IPSET_CMD_HELP,
|
||||
|
@ -59,6 +62,7 @@ enum {
|
|||
IPSET_ATTR_LINENO,
|
||||
IPSET_ATTR_PROTOCOL_MIN,
|
||||
IPSET_ATTR_REVISION_MIN = IPSET_ATTR_PROTOCOL_MIN,
|
||||
IPSET_ATTR_INDEX,
|
||||
__IPSET_ATTR_CMD_MAX,
|
||||
};
|
||||
#define IPSET_ATTR_CMD_MAX (__IPSET_ATTR_CMD_MAX - 1)
|
||||
|
|
|
@ -20,10 +20,6 @@
|
|||
#define __LINUX_DECNET_NETFILTER_H
|
||||
#include <linux/netfilter.h>
|
||||
#include <limits.h>
|
||||
#define NFC_DN_SRC 0x0001
|
||||
#define NFC_DN_DST 0x0002
|
||||
#define NFC_DN_IF_IN 0x0004
|
||||
#define NFC_DN_IF_OUT 0x0008
|
||||
#define NF_DN_NUMHOOKS 7
|
||||
#define NF_DN_PRE_ROUTING 0
|
||||
#define NF_DN_LOCAL_IN 1
|
||||
|
|
|
@ -20,18 +20,6 @@
|
|||
#define _UAPI__LINUX_IP_NETFILTER_H
|
||||
#include <linux/netfilter.h>
|
||||
#include <limits.h>
|
||||
#define NFC_IP_SRC 0x0001
|
||||
#define NFC_IP_DST 0x0002
|
||||
#define NFC_IP_IF_IN 0x0004
|
||||
#define NFC_IP_IF_OUT 0x0008
|
||||
#define NFC_IP_TOS 0x0010
|
||||
#define NFC_IP_PROTO 0x0020
|
||||
#define NFC_IP_OPTIONS 0x0040
|
||||
#define NFC_IP_FRAG 0x0080
|
||||
#define NFC_IP_TCPFLAGS 0x0100
|
||||
#define NFC_IP_SRC_PT 0x0200
|
||||
#define NFC_IP_DST_PT 0x0400
|
||||
#define NFC_IP_PROTO_UNKNOWN 0x2000
|
||||
#define NF_IP_PRE_ROUTING 0
|
||||
#define NF_IP_LOCAL_IN 1
|
||||
#define NF_IP_FORWARD 2
|
||||
|
|
|
@ -20,18 +20,6 @@
|
|||
#define _UAPI__LINUX_IP6_NETFILTER_H
|
||||
#include <linux/netfilter.h>
|
||||
#include <limits.h>
|
||||
#define NFC_IP6_SRC 0x0001
|
||||
#define NFC_IP6_DST 0x0002
|
||||
#define NFC_IP6_IF_IN 0x0004
|
||||
#define NFC_IP6_IF_OUT 0x0008
|
||||
#define NFC_IP6_TOS 0x0010
|
||||
#define NFC_IP6_PROTO 0x0020
|
||||
#define NFC_IP6_OPTIONS 0x0040
|
||||
#define NFC_IP6_FRAG 0x0080
|
||||
#define NFC_IP6_TCPFLAGS 0x0100
|
||||
#define NFC_IP6_SRC_PT 0x0200
|
||||
#define NFC_IP6_DST_PT 0x0400
|
||||
#define NFC_IP6_PROTO_UNKNOWN 0x2000
|
||||
#define NF_IP6_PRE_ROUTING 0
|
||||
#define NF_IP6_LOCAL_IN 1
|
||||
#define NF_IP6_FORWARD 2
|
||||
|
|
|
@ -164,6 +164,10 @@ enum nl80211_commands {
|
|||
NL80211_CMD_STA_OPMODE_CHANGED,
|
||||
NL80211_CMD_CONTROL_PORT_FRAME,
|
||||
NL80211_CMD_GET_FTM_RESPONDER_STATS,
|
||||
NL80211_CMD_PEER_MEASUREMENT_START,
|
||||
NL80211_CMD_PEER_MEASUREMENT_RESULT,
|
||||
NL80211_CMD_PEER_MEASUREMENT_COMPLETE,
|
||||
NL80211_CMD_NOTIFY_RADAR,
|
||||
__NL80211_CMD_AFTER_LAST,
|
||||
NL80211_CMD_MAX = __NL80211_CMD_AFTER_LAST - 1
|
||||
};
|
||||
|
@ -452,6 +456,8 @@ enum nl80211_attrs {
|
|||
NL80211_ATTR_HE_CAPABILITY,
|
||||
NL80211_ATTR_FTM_RESPONDER,
|
||||
NL80211_ATTR_FTM_RESPONDER_STATS,
|
||||
NL80211_ATTR_TIMEOUT,
|
||||
NL80211_ATTR_PEER_MEASUREMENTS,
|
||||
__NL80211_ATTR_AFTER_LAST,
|
||||
NUM_NL80211_ATTR = __NL80211_ATTR_AFTER_LAST,
|
||||
NL80211_ATTR_MAX = __NL80211_ATTR_AFTER_LAST - 1
|
||||
|
@ -621,6 +627,7 @@ enum nl80211_sta_info {
|
|||
NL80211_STA_INFO_ACK_SIGNAL_AVG,
|
||||
NL80211_STA_INFO_RX_MPDUS,
|
||||
NL80211_STA_INFO_FCS_ERROR_COUNT,
|
||||
NL80211_STA_INFO_CONNECTED_TO_GATE,
|
||||
__NL80211_STA_INFO_AFTER_LAST,
|
||||
NL80211_STA_INFO_MAX = __NL80211_STA_INFO_AFTER_LAST - 1
|
||||
};
|
||||
|
@ -878,6 +885,7 @@ enum nl80211_meshconf_params {
|
|||
NL80211_MESHCONF_POWER_MODE,
|
||||
NL80211_MESHCONF_AWAKE_WINDOW,
|
||||
NL80211_MESHCONF_PLINK_TIMEOUT,
|
||||
NL80211_MESHCONF_CONNECTED_TO_GATE,
|
||||
__NL80211_MESHCONF_ATTR_AFTER_LAST,
|
||||
NL80211_MESHCONF_ATTR_MAX = __NL80211_MESHCONF_ATTR_AFTER_LAST - 1
|
||||
};
|
||||
|
@ -1480,4 +1488,122 @@ enum nl80211_ftm_responder_stats {
|
|||
__NL80211_FTM_STATS_AFTER_LAST,
|
||||
NL80211_FTM_STATS_MAX = __NL80211_FTM_STATS_AFTER_LAST - 1
|
||||
};
|
||||
enum nl80211_preamble {
|
||||
NL80211_PREAMBLE_LEGACY,
|
||||
NL80211_PREAMBLE_HT,
|
||||
NL80211_PREAMBLE_VHT,
|
||||
NL80211_PREAMBLE_DMG,
|
||||
};
|
||||
enum nl80211_peer_measurement_type {
|
||||
NL80211_PMSR_TYPE_INVALID,
|
||||
NL80211_PMSR_TYPE_FTM,
|
||||
NUM_NL80211_PMSR_TYPES,
|
||||
NL80211_PMSR_TYPE_MAX = NUM_NL80211_PMSR_TYPES - 1
|
||||
};
|
||||
enum nl80211_peer_measurement_status {
|
||||
NL80211_PMSR_STATUS_SUCCESS,
|
||||
NL80211_PMSR_STATUS_REFUSED,
|
||||
NL80211_PMSR_STATUS_TIMEOUT,
|
||||
NL80211_PMSR_STATUS_FAILURE,
|
||||
};
|
||||
enum nl80211_peer_measurement_req {
|
||||
__NL80211_PMSR_REQ_ATTR_INVALID,
|
||||
NL80211_PMSR_REQ_ATTR_DATA,
|
||||
NL80211_PMSR_REQ_ATTR_GET_AP_TSF,
|
||||
NUM_NL80211_PMSR_REQ_ATTRS,
|
||||
NL80211_PMSR_REQ_ATTR_MAX = NUM_NL80211_PMSR_REQ_ATTRS - 1
|
||||
};
|
||||
enum nl80211_peer_measurement_resp {
|
||||
__NL80211_PMSR_RESP_ATTR_INVALID,
|
||||
NL80211_PMSR_RESP_ATTR_DATA,
|
||||
NL80211_PMSR_RESP_ATTR_STATUS,
|
||||
NL80211_PMSR_RESP_ATTR_HOST_TIME,
|
||||
NL80211_PMSR_RESP_ATTR_AP_TSF,
|
||||
NL80211_PMSR_RESP_ATTR_FINAL,
|
||||
NL80211_PMSR_RESP_ATTR_PAD,
|
||||
NUM_NL80211_PMSR_RESP_ATTRS,
|
||||
NL80211_PMSR_RESP_ATTR_MAX = NUM_NL80211_PMSR_RESP_ATTRS - 1
|
||||
};
|
||||
enum nl80211_peer_measurement_peer_attrs {
|
||||
__NL80211_PMSR_PEER_ATTR_INVALID,
|
||||
NL80211_PMSR_PEER_ATTR_ADDR,
|
||||
NL80211_PMSR_PEER_ATTR_CHAN,
|
||||
NL80211_PMSR_PEER_ATTR_REQ,
|
||||
NL80211_PMSR_PEER_ATTR_RESP,
|
||||
NUM_NL80211_PMSR_PEER_ATTRS,
|
||||
NL80211_PMSR_PEER_ATTR_MAX = NUM_NL80211_PMSR_PEER_ATTRS - 1,
|
||||
};
|
||||
enum nl80211_peer_measurement_attrs {
|
||||
__NL80211_PMSR_ATTR_INVALID,
|
||||
NL80211_PMSR_ATTR_MAX_PEERS,
|
||||
NL80211_PMSR_ATTR_REPORT_AP_TSF,
|
||||
NL80211_PMSR_ATTR_RANDOMIZE_MAC_ADDR,
|
||||
NL80211_PMSR_ATTR_TYPE_CAPA,
|
||||
NL80211_PMSR_ATTR_PEERS,
|
||||
NUM_NL80211_PMSR_ATTR,
|
||||
NL80211_PMSR_ATTR_MAX = NUM_NL80211_PMSR_ATTR - 1
|
||||
};
|
||||
enum nl80211_peer_measurement_ftm_capa {
|
||||
__NL80211_PMSR_FTM_CAPA_ATTR_INVALID,
|
||||
NL80211_PMSR_FTM_CAPA_ATTR_ASAP,
|
||||
NL80211_PMSR_FTM_CAPA_ATTR_NON_ASAP,
|
||||
NL80211_PMSR_FTM_CAPA_ATTR_REQ_LCI,
|
||||
NL80211_PMSR_FTM_CAPA_ATTR_REQ_CIVICLOC,
|
||||
NL80211_PMSR_FTM_CAPA_ATTR_PREAMBLES,
|
||||
NL80211_PMSR_FTM_CAPA_ATTR_BANDWIDTHS,
|
||||
NL80211_PMSR_FTM_CAPA_ATTR_MAX_BURSTS_EXPONENT,
|
||||
NL80211_PMSR_FTM_CAPA_ATTR_MAX_FTMS_PER_BURST,
|
||||
NUM_NL80211_PMSR_FTM_CAPA_ATTR,
|
||||
NL80211_PMSR_FTM_CAPA_ATTR_MAX = NUM_NL80211_PMSR_FTM_CAPA_ATTR - 1
|
||||
};
|
||||
enum nl80211_peer_measurement_ftm_req {
|
||||
__NL80211_PMSR_FTM_REQ_ATTR_INVALID,
|
||||
NL80211_PMSR_FTM_REQ_ATTR_ASAP,
|
||||
NL80211_PMSR_FTM_REQ_ATTR_PREAMBLE,
|
||||
NL80211_PMSR_FTM_REQ_ATTR_NUM_BURSTS_EXP,
|
||||
NL80211_PMSR_FTM_REQ_ATTR_BURST_PERIOD,
|
||||
NL80211_PMSR_FTM_REQ_ATTR_BURST_DURATION,
|
||||
NL80211_PMSR_FTM_REQ_ATTR_FTMS_PER_BURST,
|
||||
NL80211_PMSR_FTM_REQ_ATTR_NUM_FTMR_RETRIES,
|
||||
NL80211_PMSR_FTM_REQ_ATTR_REQUEST_LCI,
|
||||
NL80211_PMSR_FTM_REQ_ATTR_REQUEST_CIVICLOC,
|
||||
NUM_NL80211_PMSR_FTM_REQ_ATTR,
|
||||
NL80211_PMSR_FTM_REQ_ATTR_MAX = NUM_NL80211_PMSR_FTM_REQ_ATTR - 1
|
||||
};
|
||||
enum nl80211_peer_measurement_ftm_failure_reasons {
|
||||
NL80211_PMSR_FTM_FAILURE_UNSPECIFIED,
|
||||
NL80211_PMSR_FTM_FAILURE_NO_RESPONSE,
|
||||
NL80211_PMSR_FTM_FAILURE_REJECTED,
|
||||
NL80211_PMSR_FTM_FAILURE_WRONG_CHANNEL,
|
||||
NL80211_PMSR_FTM_FAILURE_PEER_NOT_CAPABLE,
|
||||
NL80211_PMSR_FTM_FAILURE_INVALID_TIMESTAMP,
|
||||
NL80211_PMSR_FTM_FAILURE_PEER_BUSY,
|
||||
NL80211_PMSR_FTM_FAILURE_BAD_CHANGED_PARAMS,
|
||||
};
|
||||
enum nl80211_peer_measurement_ftm_resp {
|
||||
__NL80211_PMSR_FTM_RESP_ATTR_INVALID,
|
||||
NL80211_PMSR_FTM_RESP_ATTR_FAIL_REASON,
|
||||
NL80211_PMSR_FTM_RESP_ATTR_BURST_INDEX,
|
||||
NL80211_PMSR_FTM_RESP_ATTR_NUM_FTMR_ATTEMPTS,
|
||||
NL80211_PMSR_FTM_RESP_ATTR_NUM_FTMR_SUCCESSES,
|
||||
NL80211_PMSR_FTM_RESP_ATTR_BUSY_RETRY_TIME,
|
||||
NL80211_PMSR_FTM_RESP_ATTR_NUM_BURSTS_EXP,
|
||||
NL80211_PMSR_FTM_RESP_ATTR_BURST_DURATION,
|
||||
NL80211_PMSR_FTM_RESP_ATTR_FTMS_PER_BURST,
|
||||
NL80211_PMSR_FTM_RESP_ATTR_RSSI_AVG,
|
||||
NL80211_PMSR_FTM_RESP_ATTR_RSSI_SPREAD,
|
||||
NL80211_PMSR_FTM_RESP_ATTR_TX_RATE,
|
||||
NL80211_PMSR_FTM_RESP_ATTR_RX_RATE,
|
||||
NL80211_PMSR_FTM_RESP_ATTR_RTT_AVG,
|
||||
NL80211_PMSR_FTM_RESP_ATTR_RTT_VARIANCE,
|
||||
NL80211_PMSR_FTM_RESP_ATTR_RTT_SPREAD,
|
||||
NL80211_PMSR_FTM_RESP_ATTR_DIST_AVG,
|
||||
NL80211_PMSR_FTM_RESP_ATTR_DIST_VARIANCE,
|
||||
NL80211_PMSR_FTM_RESP_ATTR_DIST_SPREAD,
|
||||
NL80211_PMSR_FTM_RESP_ATTR_LCI,
|
||||
NL80211_PMSR_FTM_RESP_ATTR_CIVICLOC,
|
||||
NL80211_PMSR_FTM_RESP_ATTR_PAD,
|
||||
NUM_NL80211_PMSR_FTM_RESP_ATTR,
|
||||
NL80211_PMSR_FTM_RESP_ATTR_MAX = NUM_NL80211_PMSR_FTM_RESP_ATTR - 1
|
||||
};
|
||||
#endif
|
||||
|
|
|
@ -389,6 +389,10 @@ enum {
|
|||
TCA_FLOWER_KEY_ENC_OPTS,
|
||||
TCA_FLOWER_KEY_ENC_OPTS_MASK,
|
||||
TCA_FLOWER_IN_HW_COUNT,
|
||||
TCA_FLOWER_KEY_PORT_SRC_MIN,
|
||||
TCA_FLOWER_KEY_PORT_SRC_MAX,
|
||||
TCA_FLOWER_KEY_PORT_DST_MIN,
|
||||
TCA_FLOWER_KEY_PORT_DST_MAX,
|
||||
__TCA_FLOWER_MAX,
|
||||
};
|
||||
#define TCA_FLOWER_MAX (__TCA_FLOWER_MAX - 1)
|
||||
|
@ -410,6 +414,7 @@ enum {
|
|||
TCA_FLOWER_KEY_FLAGS_IS_FRAGMENT = (1 << 0),
|
||||
TCA_FLOWER_KEY_FLAGS_FRAG_IS_FIRST = (1 << 1),
|
||||
};
|
||||
#define TCA_FLOWER_MASK_FLAGS_RANGE (1 << 0)
|
||||
enum {
|
||||
TCA_MATCHALL_UNSPEC,
|
||||
TCA_MATCHALL_CLASSID,
|
||||
|
|
|
@ -195,9 +195,33 @@ enum {
|
|||
TCA_GRED_DPS,
|
||||
TCA_GRED_MAX_P,
|
||||
TCA_GRED_LIMIT,
|
||||
TCA_GRED_VQ_LIST,
|
||||
__TCA_GRED_MAX,
|
||||
};
|
||||
#define TCA_GRED_MAX (__TCA_GRED_MAX - 1)
|
||||
enum {
|
||||
TCA_GRED_VQ_ENTRY_UNSPEC,
|
||||
TCA_GRED_VQ_ENTRY,
|
||||
__TCA_GRED_VQ_ENTRY_MAX,
|
||||
};
|
||||
#define TCA_GRED_VQ_ENTRY_MAX (__TCA_GRED_VQ_ENTRY_MAX - 1)
|
||||
enum {
|
||||
TCA_GRED_VQ_UNSPEC,
|
||||
TCA_GRED_VQ_PAD,
|
||||
TCA_GRED_VQ_DP,
|
||||
TCA_GRED_VQ_STAT_BYTES,
|
||||
TCA_GRED_VQ_STAT_PACKETS,
|
||||
TCA_GRED_VQ_STAT_BACKLOG,
|
||||
TCA_GRED_VQ_STAT_PROB_DROP,
|
||||
TCA_GRED_VQ_STAT_PROB_MARK,
|
||||
TCA_GRED_VQ_STAT_FORCED_DROP,
|
||||
TCA_GRED_VQ_STAT_FORCED_MARK,
|
||||
TCA_GRED_VQ_STAT_PDROP,
|
||||
TCA_GRED_VQ_STAT_OTHER,
|
||||
TCA_GRED_VQ_FLAGS,
|
||||
__TCA_GRED_VQ_MAX
|
||||
};
|
||||
#define TCA_GRED_VQ_MAX (__TCA_GRED_VQ_MAX - 1)
|
||||
struct tc_gred_qopt {
|
||||
__u32 limit;
|
||||
__u32 qth_min;
|
||||
|
@ -639,6 +663,7 @@ enum {
|
|||
TCA_FQ_FLOW_REFILL_DELAY,
|
||||
TCA_FQ_ORPHAN_MASK,
|
||||
TCA_FQ_LOW_RATE_THRESHOLD,
|
||||
TCA_FQ_CE_THRESHOLD,
|
||||
__TCA_FQ_MAX
|
||||
};
|
||||
#define TCA_FQ_MAX (__TCA_FQ_MAX - 1)
|
||||
|
@ -655,6 +680,7 @@ struct tc_fq_qd_stats {
|
|||
__u32 inactive_flows;
|
||||
__u32 throttled_flows;
|
||||
__u32 unthrottle_latency_ns;
|
||||
__u64 ce_mark;
|
||||
};
|
||||
enum {
|
||||
TCA_HHF_UNSPEC,
|
||||
|
|
|
@ -143,4 +143,10 @@ struct prctl_mm_map {
|
|||
#define PR_SPEC_ENABLE (1UL << 1)
|
||||
#define PR_SPEC_DISABLE (1UL << 2)
|
||||
#define PR_SPEC_FORCE_DISABLE (1UL << 3)
|
||||
#define PR_PAC_RESET_KEYS 54
|
||||
#define PR_PAC_APIAKEY (1UL << 0)
|
||||
#define PR_PAC_APIBKEY (1UL << 1)
|
||||
#define PR_PAC_APDAKEY (1UL << 2)
|
||||
#define PR_PAC_APDBKEY (1UL << 3)
|
||||
#define PR_PAC_APGAKEY (1UL << 4)
|
||||
#endif
|
||||
|
|
|
@ -56,6 +56,11 @@ struct ptp_sys_offset {
|
|||
unsigned int rsv[3];
|
||||
struct ptp_clock_time ts[2 * PTP_MAX_SAMPLES + 1];
|
||||
};
|
||||
struct ptp_sys_offset_extended {
|
||||
unsigned int n_samples;
|
||||
unsigned int rsv[3];
|
||||
struct ptp_clock_time ts[PTP_MAX_SAMPLES][3];
|
||||
};
|
||||
struct ptp_sys_offset_precise {
|
||||
struct ptp_clock_time device;
|
||||
struct ptp_clock_time sys_realtime;
|
||||
|
@ -84,6 +89,7 @@ struct ptp_pin_desc {
|
|||
#define PTP_PIN_GETFUNC _IOWR(PTP_CLK_MAGIC, 6, struct ptp_pin_desc)
|
||||
#define PTP_PIN_SETFUNC _IOW(PTP_CLK_MAGIC, 7, struct ptp_pin_desc)
|
||||
#define PTP_SYS_OFFSET_PRECISE _IOWR(PTP_CLK_MAGIC, 8, struct ptp_sys_offset_precise)
|
||||
#define PTP_SYS_OFFSET_EXTENDED _IOWR(PTP_CLK_MAGIC, 9, struct ptp_sys_offset_extended)
|
||||
struct ptp_extts_event {
|
||||
struct ptp_clock_time t;
|
||||
unsigned int index;
|
||||
|
|
|
@ -83,6 +83,7 @@ typedef __s32 sctp_assoc_t;
|
|||
#define SCTP_STREAM_SCHEDULER_VALUE 124
|
||||
#define SCTP_INTERLEAVING_SUPPORTED 125
|
||||
#define SCTP_SENDMSG_CONNECT 126
|
||||
#define SCTP_EVENT 127
|
||||
#define SCTP_PR_SCTP_NONE 0x0000
|
||||
#define SCTP_PR_SCTP_TTL 0x0010
|
||||
#define SCTP_PR_SCTP_RTX 0x0020
|
||||
|
@ -360,6 +361,8 @@ union sctp_notification {
|
|||
};
|
||||
enum sctp_sn_type {
|
||||
SCTP_SN_TYPE_BASE = (1 << 15),
|
||||
SCTP_DATA_IO_EVENT = SCTP_SN_TYPE_BASE,
|
||||
#define SCTP_DATA_IO_EVENT SCTP_DATA_IO_EVENT
|
||||
SCTP_ASSOC_CHANGE,
|
||||
#define SCTP_ASSOC_CHANGE SCTP_ASSOC_CHANGE
|
||||
SCTP_PEER_ADDR_CHANGE,
|
||||
|
@ -384,6 +387,8 @@ enum sctp_sn_type {
|
|||
#define SCTP_ASSOC_RESET_EVENT SCTP_ASSOC_RESET_EVENT
|
||||
SCTP_STREAM_CHANGE_EVENT,
|
||||
#define SCTP_STREAM_CHANGE_EVENT SCTP_STREAM_CHANGE_EVENT
|
||||
SCTP_SN_TYPE_MAX = SCTP_STREAM_CHANGE_EVENT,
|
||||
#define SCTP_SN_TYPE_MAX SCTP_SN_TYPE_MAX
|
||||
};
|
||||
typedef enum sctp_sn_error {
|
||||
SCTP_FAILED_THRESHOLD,
|
||||
|
@ -655,6 +660,11 @@ struct sctp_add_streams {
|
|||
uint16_t sas_instrms;
|
||||
uint16_t sas_outstrms;
|
||||
};
|
||||
struct sctp_event {
|
||||
sctp_assoc_t se_assoc_id;
|
||||
uint16_t se_type;
|
||||
uint8_t se_on;
|
||||
};
|
||||
enum sctp_sched_type {
|
||||
SCTP_SS_FCFS,
|
||||
SCTP_SS_DEFAULT = SCTP_SS_FCFS,
|
||||
|
|
|
@ -26,14 +26,17 @@
|
|||
#define SECCOMP_SET_MODE_STRICT 0
|
||||
#define SECCOMP_SET_MODE_FILTER 1
|
||||
#define SECCOMP_GET_ACTION_AVAIL 2
|
||||
#define SECCOMP_GET_NOTIF_SIZES 3
|
||||
#define SECCOMP_FILTER_FLAG_TSYNC (1UL << 0)
|
||||
#define SECCOMP_FILTER_FLAG_LOG (1UL << 1)
|
||||
#define SECCOMP_FILTER_FLAG_SPEC_ALLOW (1UL << 2)
|
||||
#define SECCOMP_FILTER_FLAG_NEW_LISTENER (1UL << 3)
|
||||
#define SECCOMP_RET_KILL_PROCESS 0x80000000U
|
||||
#define SECCOMP_RET_KILL_THREAD 0x00000000U
|
||||
#define SECCOMP_RET_KILL SECCOMP_RET_KILL_THREAD
|
||||
#define SECCOMP_RET_TRAP 0x00030000U
|
||||
#define SECCOMP_RET_ERRNO 0x00050000U
|
||||
#define SECCOMP_RET_USER_NOTIF 0x7fc00000U
|
||||
#define SECCOMP_RET_TRACE 0x7ff00000U
|
||||
#define SECCOMP_RET_LOG 0x7ffc0000U
|
||||
#define SECCOMP_RET_ALLOW 0x7fff0000U
|
||||
|
@ -46,4 +49,29 @@ struct seccomp_data {
|
|||
__u64 instruction_pointer;
|
||||
__u64 args[6];
|
||||
};
|
||||
struct seccomp_notif_sizes {
|
||||
__u16 seccomp_notif;
|
||||
__u16 seccomp_notif_resp;
|
||||
__u16 seccomp_data;
|
||||
};
|
||||
struct seccomp_notif {
|
||||
__u64 id;
|
||||
__u32 pid;
|
||||
__u32 flags;
|
||||
struct seccomp_data data;
|
||||
};
|
||||
struct seccomp_notif_resp {
|
||||
__u64 id;
|
||||
__s64 val;
|
||||
__s32 error;
|
||||
__u32 flags;
|
||||
};
|
||||
#define SECCOMP_IOC_MAGIC '!'
|
||||
#define SECCOMP_IO(nr) _IO(SECCOMP_IOC_MAGIC, nr)
|
||||
#define SECCOMP_IOR(nr,type) _IOR(SECCOMP_IOC_MAGIC, nr, type)
|
||||
#define SECCOMP_IOW(nr,type) _IOW(SECCOMP_IOC_MAGIC, nr, type)
|
||||
#define SECCOMP_IOWR(nr,type) _IOWR(SECCOMP_IOC_MAGIC, nr, type)
|
||||
#define SECCOMP_IOCTL_NOTIF_RECV SECCOMP_IOWR(0, struct seccomp_notif)
|
||||
#define SECCOMP_IOCTL_NOTIF_SEND SECCOMP_IOWR(1, struct seccomp_notif_resp)
|
||||
#define SECCOMP_IOCTL_NOTIF_ID_VALID SECCOMP_IOR(2, __u64)
|
||||
#endif
|
||||
|
|
|
@ -134,4 +134,5 @@
|
|||
#define PORT_PIC32 115
|
||||
#define PORT_MPS2UART 116
|
||||
#define PORT_MTK_BTIF 117
|
||||
#define PORT_RDA 118
|
||||
#endif
|
||||
|
|
|
@ -210,6 +210,7 @@ enum {
|
|||
LINUX_MIB_TCPREQQFULLDROP,
|
||||
LINUX_MIB_TCPRETRANSFAIL,
|
||||
LINUX_MIB_TCPRCVCOALESCE,
|
||||
LINUX_MIB_TCPBACKLOGCOALESCE,
|
||||
LINUX_MIB_TCPOFOQUEUE,
|
||||
LINUX_MIB_TCPOFODROP,
|
||||
LINUX_MIB_TCPOFOMERGE,
|
||||
|
|
|
@ -124,6 +124,7 @@ enum {
|
|||
KERN_NMI_WATCHDOG = 75,
|
||||
KERN_PANIC_ON_NMI = 76,
|
||||
KERN_PANIC_ON_WARN = 77,
|
||||
KERN_PANIC_PRINT = 78,
|
||||
};
|
||||
enum {
|
||||
VM_UNUSED1 = 1,
|
||||
|
|
|
@ -207,6 +207,7 @@ enum {
|
|||
TCP_NLA_BYTES_RETRANS,
|
||||
TCP_NLA_DSACK_DUPS,
|
||||
TCP_NLA_REORD_SEEN,
|
||||
TCP_NLA_SRTT,
|
||||
};
|
||||
#define TCP_MD5SIG_MAXKEYLEN 80
|
||||
#define TCP_MD5SIG_FLAG_PREFIX 1
|
||||
|
|
|
@ -30,6 +30,7 @@ struct __kernel_udphdr {
|
|||
#define UDP_NO_CHECK6_TX 101
|
||||
#define UDP_NO_CHECK6_RX 102
|
||||
#define UDP_SEGMENT 103
|
||||
#define UDP_GRO 104
|
||||
#define UDP_ENCAP_ESPINUDP_NON_IKE 1
|
||||
#define UDP_ENCAP_ESPINUDP 2
|
||||
#define UDP_ENCAP_L2TPINUDP 3
|
||||
|
|
|
@ -27,18 +27,9 @@
|
|||
#define V4L2_SEL_TGT_COMPOSE_DEFAULT 0x0101
|
||||
#define V4L2_SEL_TGT_COMPOSE_BOUNDS 0x0102
|
||||
#define V4L2_SEL_TGT_COMPOSE_PADDED 0x0103
|
||||
#define V4L2_SEL_TGT_CROP_ACTIVE V4L2_SEL_TGT_CROP
|
||||
#define V4L2_SEL_TGT_COMPOSE_ACTIVE V4L2_SEL_TGT_COMPOSE
|
||||
#define V4L2_SUBDEV_SEL_TGT_CROP_ACTUAL V4L2_SEL_TGT_CROP
|
||||
#define V4L2_SUBDEV_SEL_TGT_COMPOSE_ACTUAL V4L2_SEL_TGT_COMPOSE
|
||||
#define V4L2_SUBDEV_SEL_TGT_CROP_BOUNDS V4L2_SEL_TGT_CROP_BOUNDS
|
||||
#define V4L2_SUBDEV_SEL_TGT_COMPOSE_BOUNDS V4L2_SEL_TGT_COMPOSE_BOUNDS
|
||||
#define V4L2_SEL_FLAG_GE (1 << 0)
|
||||
#define V4L2_SEL_FLAG_LE (1 << 1)
|
||||
#define V4L2_SEL_FLAG_KEEP_CONFIG (1 << 2)
|
||||
#define V4L2_SUBDEV_SEL_FLAG_SIZE_GE V4L2_SEL_FLAG_GE
|
||||
#define V4L2_SUBDEV_SEL_FLAG_SIZE_LE V4L2_SEL_FLAG_LE
|
||||
#define V4L2_SUBDEV_SEL_FLAG_KEEP_CONFIG V4L2_SEL_FLAG_KEEP_CONFIG
|
||||
struct v4l2_edid {
|
||||
__u32 pad;
|
||||
__u32 start_block;
|
||||
|
@ -46,4 +37,13 @@ struct v4l2_edid {
|
|||
__u32 reserved[5];
|
||||
__u8 * edid;
|
||||
};
|
||||
#define V4L2_SEL_TGT_CROP_ACTIVE V4L2_SEL_TGT_CROP
|
||||
#define V4L2_SEL_TGT_COMPOSE_ACTIVE V4L2_SEL_TGT_COMPOSE
|
||||
#define V4L2_SUBDEV_SEL_TGT_CROP_ACTUAL V4L2_SEL_TGT_CROP
|
||||
#define V4L2_SUBDEV_SEL_TGT_COMPOSE_ACTUAL V4L2_SEL_TGT_COMPOSE
|
||||
#define V4L2_SUBDEV_SEL_TGT_CROP_BOUNDS V4L2_SEL_TGT_CROP_BOUNDS
|
||||
#define V4L2_SUBDEV_SEL_TGT_COMPOSE_BOUNDS V4L2_SEL_TGT_COMPOSE_BOUNDS
|
||||
#define V4L2_SUBDEV_SEL_FLAG_SIZE_GE V4L2_SEL_FLAG_GE
|
||||
#define V4L2_SUBDEV_SEL_FLAG_SIZE_LE V4L2_SEL_FLAG_LE
|
||||
#define V4L2_SUBDEV_SEL_FLAG_KEEP_CONFIG V4L2_SEL_FLAG_KEEP_CONFIG
|
||||
#endif
|
||||
|
|
|
@ -16,5 +16,5 @@
|
|||
***
|
||||
****************************************************************************
|
||||
****************************************************************************/
|
||||
#define LINUX_VERSION_CODE 267265
|
||||
#define LINUX_VERSION_CODE 327680
|
||||
#define KERNEL_VERSION(a,b,c) (((a) << 16) + ((b) << 8) + (c))
|
||||
|
|
|
@ -114,7 +114,20 @@ struct vfio_region_gfx_edid {
|
|||
#define VFIO_DEVICE_GFX_LINK_STATE_UP 1
|
||||
#define VFIO_DEVICE_GFX_LINK_STATE_DOWN 2
|
||||
};
|
||||
#define VFIO_REGION_SUBTYPE_NVIDIA_NVLINK2_RAM (1)
|
||||
#define VFIO_REGION_SUBTYPE_IBM_NVLINK2_ATSD (1)
|
||||
#define VFIO_REGION_INFO_CAP_MSIX_MAPPABLE 3
|
||||
#define VFIO_REGION_INFO_CAP_NVLINK2_SSATGT 4
|
||||
struct vfio_region_info_cap_nvlink2_ssatgt {
|
||||
struct vfio_info_cap_header header;
|
||||
__u64 tgt;
|
||||
};
|
||||
#define VFIO_REGION_INFO_CAP_NVLINK2_LNKSPD 5
|
||||
struct vfio_region_info_cap_nvlink2_lnkspd {
|
||||
struct vfio_info_cap_header header;
|
||||
__u32 link_speed;
|
||||
__u32 __pad;
|
||||
};
|
||||
struct vfio_irq_info {
|
||||
__u32 argsz;
|
||||
__u32 flags;
|
||||
|
|
|
@ -18,71 +18,9 @@
|
|||
****************************************************************************/
|
||||
#ifndef _LINUX_VHOST_H
|
||||
#define _LINUX_VHOST_H
|
||||
#include <linux/vhost_types.h>
|
||||
#include <linux/types.h>
|
||||
#include <linux/compiler.h>
|
||||
#include <linux/ioctl.h>
|
||||
#include <linux/virtio_config.h>
|
||||
#include <linux/virtio_ring.h>
|
||||
struct vhost_vring_state {
|
||||
unsigned int index;
|
||||
unsigned int num;
|
||||
};
|
||||
struct vhost_vring_file {
|
||||
unsigned int index;
|
||||
int fd;
|
||||
};
|
||||
struct vhost_vring_addr {
|
||||
unsigned int index;
|
||||
unsigned int flags;
|
||||
#define VHOST_VRING_F_LOG 0
|
||||
__u64 desc_user_addr;
|
||||
__u64 used_user_addr;
|
||||
__u64 avail_user_addr;
|
||||
__u64 log_guest_addr;
|
||||
};
|
||||
struct vhost_iotlb_msg {
|
||||
__u64 iova;
|
||||
__u64 size;
|
||||
__u64 uaddr;
|
||||
#define VHOST_ACCESS_RO 0x1
|
||||
#define VHOST_ACCESS_WO 0x2
|
||||
#define VHOST_ACCESS_RW 0x3
|
||||
__u8 perm;
|
||||
#define VHOST_IOTLB_MISS 1
|
||||
#define VHOST_IOTLB_UPDATE 2
|
||||
#define VHOST_IOTLB_INVALIDATE 3
|
||||
#define VHOST_IOTLB_ACCESS_FAIL 4
|
||||
__u8 type;
|
||||
};
|
||||
#define VHOST_IOTLB_MSG 0x1
|
||||
#define VHOST_IOTLB_MSG_V2 0x2
|
||||
struct vhost_msg {
|
||||
int type;
|
||||
union {
|
||||
struct vhost_iotlb_msg iotlb;
|
||||
__u8 padding[64];
|
||||
};
|
||||
};
|
||||
struct vhost_msg_v2 {
|
||||
__u32 type;
|
||||
__u32 reserved;
|
||||
union {
|
||||
struct vhost_iotlb_msg iotlb;
|
||||
__u8 padding[64];
|
||||
};
|
||||
};
|
||||
struct vhost_memory_region {
|
||||
__u64 guest_phys_addr;
|
||||
__u64 memory_size;
|
||||
__u64 userspace_addr;
|
||||
__u64 flags_padding;
|
||||
};
|
||||
#define VHOST_PAGE_SIZE 0x1000
|
||||
struct vhost_memory {
|
||||
__u32 nregions;
|
||||
__u32 padding;
|
||||
struct vhost_memory_region regions[0];
|
||||
};
|
||||
#define VHOST_VIRTIO 0xAF
|
||||
#define VHOST_GET_FEATURES _IOR(VHOST_VIRTIO, 0x00, __u64)
|
||||
#define VHOST_SET_FEATURES _IOW(VHOST_VIRTIO, 0x00, __u64)
|
||||
|
@ -108,15 +46,6 @@ struct vhost_memory {
|
|||
#define VHOST_SET_BACKEND_FEATURES _IOW(VHOST_VIRTIO, 0x25, __u64)
|
||||
#define VHOST_GET_BACKEND_FEATURES _IOR(VHOST_VIRTIO, 0x26, __u64)
|
||||
#define VHOST_NET_SET_BACKEND _IOW(VHOST_VIRTIO, 0x30, struct vhost_vring_file)
|
||||
#define VHOST_F_LOG_ALL 26
|
||||
#define VHOST_NET_F_VIRTIO_NET_HDR 27
|
||||
#define VHOST_SCSI_ABI_VERSION 1
|
||||
struct vhost_scsi_target {
|
||||
int abi_version;
|
||||
char vhost_wwpn[224];
|
||||
unsigned short vhost_tpgt;
|
||||
unsigned short reserved;
|
||||
};
|
||||
#define VHOST_SCSI_SET_ENDPOINT _IOW(VHOST_VIRTIO, 0x40, struct vhost_scsi_target)
|
||||
#define VHOST_SCSI_CLEAR_ENDPOINT _IOW(VHOST_VIRTIO, 0x41, struct vhost_scsi_target)
|
||||
#define VHOST_SCSI_GET_ABI_VERSION _IOW(VHOST_VIRTIO, 0x42, int)
|
||||
|
|
94
libc/kernel/uapi/linux/vhost_types.h
Normal file
94
libc/kernel/uapi/linux/vhost_types.h
Normal file
|
@ -0,0 +1,94 @@
|
|||
/****************************************************************************
|
||||
****************************************************************************
|
||||
***
|
||||
*** This header was automatically generated from a Linux kernel header
|
||||
*** of the same name, to make information necessary for userspace to
|
||||
*** call into the kernel available to libc. It contains only constants,
|
||||
*** structures, and macros generated from the original header, and thus,
|
||||
*** contains no copyrightable information.
|
||||
***
|
||||
*** To edit the content of this header, modify the corresponding
|
||||
*** source file (e.g. under external/kernel-headers/original/) then
|
||||
*** run bionic/libc/kernel/tools/update_all.py
|
||||
***
|
||||
*** Any manual change here will be lost the next time this script will
|
||||
*** be run. You've been warned!
|
||||
***
|
||||
****************************************************************************
|
||||
****************************************************************************/
|
||||
#ifndef _LINUX_VHOST_TYPES_H
|
||||
#define _LINUX_VHOST_TYPES_H
|
||||
#include <linux/types.h>
|
||||
#include <linux/compiler.h>
|
||||
#include <linux/virtio_config.h>
|
||||
#include <linux/virtio_ring.h>
|
||||
struct vhost_vring_state {
|
||||
unsigned int index;
|
||||
unsigned int num;
|
||||
};
|
||||
struct vhost_vring_file {
|
||||
unsigned int index;
|
||||
int fd;
|
||||
};
|
||||
struct vhost_vring_addr {
|
||||
unsigned int index;
|
||||
unsigned int flags;
|
||||
#define VHOST_VRING_F_LOG 0
|
||||
__u64 desc_user_addr;
|
||||
__u64 used_user_addr;
|
||||
__u64 avail_user_addr;
|
||||
__u64 log_guest_addr;
|
||||
};
|
||||
struct vhost_iotlb_msg {
|
||||
__u64 iova;
|
||||
__u64 size;
|
||||
__u64 uaddr;
|
||||
#define VHOST_ACCESS_RO 0x1
|
||||
#define VHOST_ACCESS_WO 0x2
|
||||
#define VHOST_ACCESS_RW 0x3
|
||||
__u8 perm;
|
||||
#define VHOST_IOTLB_MISS 1
|
||||
#define VHOST_IOTLB_UPDATE 2
|
||||
#define VHOST_IOTLB_INVALIDATE 3
|
||||
#define VHOST_IOTLB_ACCESS_FAIL 4
|
||||
__u8 type;
|
||||
};
|
||||
#define VHOST_IOTLB_MSG 0x1
|
||||
#define VHOST_IOTLB_MSG_V2 0x2
|
||||
struct vhost_msg {
|
||||
int type;
|
||||
union {
|
||||
struct vhost_iotlb_msg iotlb;
|
||||
__u8 padding[64];
|
||||
};
|
||||
};
|
||||
struct vhost_msg_v2 {
|
||||
__u32 type;
|
||||
__u32 reserved;
|
||||
union {
|
||||
struct vhost_iotlb_msg iotlb;
|
||||
__u8 padding[64];
|
||||
};
|
||||
};
|
||||
struct vhost_memory_region {
|
||||
__u64 guest_phys_addr;
|
||||
__u64 memory_size;
|
||||
__u64 userspace_addr;
|
||||
__u64 flags_padding;
|
||||
};
|
||||
#define VHOST_PAGE_SIZE 0x1000
|
||||
struct vhost_memory {
|
||||
__u32 nregions;
|
||||
__u32 padding;
|
||||
struct vhost_memory_region regions[0];
|
||||
};
|
||||
#define VHOST_SCSI_ABI_VERSION 1
|
||||
struct vhost_scsi_target {
|
||||
int abi_version;
|
||||
char vhost_wwpn[224];
|
||||
unsigned short vhost_tpgt;
|
||||
unsigned short reserved;
|
||||
};
|
||||
#define VHOST_F_LOG_ALL 26
|
||||
#define VHOST_NET_F_VIRTIO_NET_HDR 27
|
||||
#endif
|
|
@ -58,6 +58,7 @@ enum v4l2_buf_type {
|
|||
V4L2_BUF_TYPE_SDR_CAPTURE = 11,
|
||||
V4L2_BUF_TYPE_SDR_OUTPUT = 12,
|
||||
V4L2_BUF_TYPE_META_CAPTURE = 13,
|
||||
V4L2_BUF_TYPE_META_OUTPUT = 14,
|
||||
V4L2_BUF_TYPE_PRIVATE = 0x80,
|
||||
};
|
||||
#define V4L2_TYPE_IS_MULTIPLANAR(type) ((type) == V4L2_BUF_TYPE_VIDEO_CAPTURE_MPLANE || (type) == V4L2_BUF_TYPE_VIDEO_OUTPUT_MPLANE)
|
||||
|
@ -179,6 +180,7 @@ struct v4l2_capability {
|
|||
#define V4L2_CAP_READWRITE 0x01000000
|
||||
#define V4L2_CAP_ASYNCIO 0x02000000
|
||||
#define V4L2_CAP_STREAMING 0x04000000
|
||||
#define V4L2_CAP_META_OUTPUT 0x08000000
|
||||
#define V4L2_CAP_TOUCH 0x10000000
|
||||
#define V4L2_CAP_DEVICE_CAPS 0x80000000
|
||||
struct v4l2_pix_format {
|
||||
|
@ -356,6 +358,7 @@ struct v4l2_pix_format {
|
|||
#define V4L2_PIX_FMT_MT21C v4l2_fourcc('M', 'T', '2', '1')
|
||||
#define V4L2_PIX_FMT_INZI v4l2_fourcc('I', 'N', 'Z', 'I')
|
||||
#define V4L2_PIX_FMT_SUNXI_TILED_NV12 v4l2_fourcc('S', 'T', '1', '2')
|
||||
#define V4L2_PIX_FMT_CNF4 v4l2_fourcc('C', 'N', 'F', '4')
|
||||
#define V4L2_PIX_FMT_IPU3_SBGGR10 v4l2_fourcc('i', 'p', '3', 'b')
|
||||
#define V4L2_PIX_FMT_IPU3_SGBRG10 v4l2_fourcc('i', 'p', '3', 'g')
|
||||
#define V4L2_PIX_FMT_IPU3_SGRBG10 v4l2_fourcc('i', 'p', '3', 'G')
|
||||
|
@ -481,6 +484,7 @@ struct v4l2_requestbuffers {
|
|||
#define V4L2_BUF_CAP_SUPPORTS_USERPTR (1 << 1)
|
||||
#define V4L2_BUF_CAP_SUPPORTS_DMABUF (1 << 2)
|
||||
#define V4L2_BUF_CAP_SUPPORTS_REQUESTS (1 << 3)
|
||||
#define V4L2_BUF_CAP_SUPPORTS_ORPHANED_BUFS (1 << 4)
|
||||
struct v4l2_plane {
|
||||
__u32 bytesused;
|
||||
__u32 length;
|
||||
|
|
|
@ -29,6 +29,8 @@
|
|||
#define VIRTIO_BLK_F_BLK_SIZE 6
|
||||
#define VIRTIO_BLK_F_TOPOLOGY 10
|
||||
#define VIRTIO_BLK_F_MQ 12
|
||||
#define VIRTIO_BLK_F_DISCARD 13
|
||||
#define VIRTIO_BLK_F_WRITE_ZEROES 14
|
||||
#ifndef VIRTIO_BLK_NO_LEGACY
|
||||
#define VIRTIO_BLK_F_BARRIER 0
|
||||
#define VIRTIO_BLK_F_SCSI 7
|
||||
|
@ -54,6 +56,13 @@ struct virtio_blk_config {
|
|||
__u8 wce;
|
||||
__u8 unused;
|
||||
__u16 num_queues;
|
||||
__u32 max_discard_sectors;
|
||||
__u32 max_discard_seg;
|
||||
__u32 discard_sector_alignment;
|
||||
__u32 max_write_zeroes_sectors;
|
||||
__u32 max_write_zeroes_seg;
|
||||
__u8 write_zeroes_may_unmap;
|
||||
__u8 unused1[3];
|
||||
} __attribute__((packed));
|
||||
#define VIRTIO_BLK_T_IN 0
|
||||
#define VIRTIO_BLK_T_OUT 1
|
||||
|
@ -62,6 +71,8 @@ struct virtio_blk_config {
|
|||
#endif
|
||||
#define VIRTIO_BLK_T_FLUSH 4
|
||||
#define VIRTIO_BLK_T_GET_ID 8
|
||||
#define VIRTIO_BLK_T_DISCARD 11
|
||||
#define VIRTIO_BLK_T_WRITE_ZEROES 13
|
||||
#ifndef VIRTIO_BLK_NO_LEGACY
|
||||
#define VIRTIO_BLK_T_BARRIER 0x80000000
|
||||
#endif
|
||||
|
@ -70,6 +81,12 @@ struct virtio_blk_outhdr {
|
|||
__virtio32 ioprio;
|
||||
__virtio64 sector;
|
||||
};
|
||||
#define VIRTIO_BLK_WRITE_ZEROES_FLAG_UNMAP 0x00000001
|
||||
struct virtio_blk_discard_write_zeroes {
|
||||
__le64 sector;
|
||||
__le32 num_sectors;
|
||||
__le32 flags;
|
||||
};
|
||||
#ifndef VIRTIO_BLK_NO_LEGACY
|
||||
struct virtio_scsi_inhdr {
|
||||
__virtio32 errors;
|
||||
|
|
|
@ -33,5 +33,7 @@
|
|||
#endif
|
||||
#define VIRTIO_F_VERSION_1 32
|
||||
#define VIRTIO_F_IOMMU_PLATFORM 33
|
||||
#define VIRTIO_F_RING_PACKED 34
|
||||
#define VIRTIO_F_ORDER_PLATFORM 36
|
||||
#define VIRTIO_F_SR_IOV 37
|
||||
#endif
|
||||
|
|
|
@ -20,6 +20,7 @@
|
|||
#define VIRTIO_GPU_HW_H
|
||||
#include <linux/types.h>
|
||||
#define VIRTIO_GPU_F_VIRGL 0
|
||||
#define VIRTIO_GPU_F_EDID 1
|
||||
enum virtio_gpu_ctrl_type {
|
||||
VIRTIO_GPU_UNDEFINED = 0,
|
||||
VIRTIO_GPU_CMD_GET_DISPLAY_INFO = 0x0100,
|
||||
|
@ -32,6 +33,7 @@ enum virtio_gpu_ctrl_type {
|
|||
VIRTIO_GPU_CMD_RESOURCE_DETACH_BACKING,
|
||||
VIRTIO_GPU_CMD_GET_CAPSET_INFO,
|
||||
VIRTIO_GPU_CMD_GET_CAPSET,
|
||||
VIRTIO_GPU_CMD_GET_EDID,
|
||||
VIRTIO_GPU_CMD_CTX_CREATE = 0x0200,
|
||||
VIRTIO_GPU_CMD_CTX_DESTROY,
|
||||
VIRTIO_GPU_CMD_CTX_ATTACH_RESOURCE,
|
||||
|
@ -46,6 +48,7 @@ enum virtio_gpu_ctrl_type {
|
|||
VIRTIO_GPU_RESP_OK_DISPLAY_INFO,
|
||||
VIRTIO_GPU_RESP_OK_CAPSET_INFO,
|
||||
VIRTIO_GPU_RESP_OK_CAPSET,
|
||||
VIRTIO_GPU_RESP_OK_EDID,
|
||||
VIRTIO_GPU_RESP_ERR_UNSPEC = 0x1200,
|
||||
VIRTIO_GPU_RESP_ERR_OUT_OF_MEMORY,
|
||||
VIRTIO_GPU_RESP_ERR_INVALID_SCANOUT_ID,
|
||||
|
@ -207,6 +210,17 @@ struct virtio_gpu_resp_capset {
|
|||
struct virtio_gpu_ctrl_hdr hdr;
|
||||
__u8 capset_data[];
|
||||
};
|
||||
struct virtio_gpu_cmd_get_edid {
|
||||
struct virtio_gpu_ctrl_hdr hdr;
|
||||
__le32 scanout;
|
||||
__le32 padding;
|
||||
};
|
||||
struct virtio_gpu_resp_edid {
|
||||
struct virtio_gpu_ctrl_hdr hdr;
|
||||
__le32 size;
|
||||
__le32 padding;
|
||||
__u8 edid[1024];
|
||||
};
|
||||
#define VIRTIO_GPU_EVENT_DISPLAY (1 << 0)
|
||||
struct virtio_gpu_config {
|
||||
__u32 events_read;
|
||||
|
|
|
@ -24,8 +24,14 @@
|
|||
#define VRING_DESC_F_NEXT 1
|
||||
#define VRING_DESC_F_WRITE 2
|
||||
#define VRING_DESC_F_INDIRECT 4
|
||||
#define VRING_PACKED_DESC_F_AVAIL 7
|
||||
#define VRING_PACKED_DESC_F_USED 15
|
||||
#define VRING_USED_F_NO_NOTIFY 1
|
||||
#define VRING_AVAIL_F_NO_INTERRUPT 1
|
||||
#define VRING_PACKED_EVENT_FLAG_ENABLE 0x0
|
||||
#define VRING_PACKED_EVENT_FLAG_DISABLE 0x1
|
||||
#define VRING_PACKED_EVENT_FLAG_DESC 0x2
|
||||
#define VRING_PACKED_EVENT_F_WRAP_CTR 15
|
||||
#define VIRTIO_RING_F_INDIRECT_DESC 28
|
||||
#define VIRTIO_RING_F_EVENT_IDX 29
|
||||
struct vring_desc {
|
||||
|
@ -59,4 +65,14 @@ struct vring {
|
|||
#define VRING_DESC_ALIGN_SIZE 16
|
||||
#define vring_used_event(vr) ((vr)->avail->ring[(vr)->num])
|
||||
#define vring_avail_event(vr) (* (__virtio16 *) & (vr)->used->ring[(vr)->num])
|
||||
struct vring_packed_desc_event {
|
||||
__le16 off_wrap;
|
||||
__le16 flags;
|
||||
};
|
||||
struct vring_packed_desc {
|
||||
__le64 addr;
|
||||
__le32 len;
|
||||
__le16 id;
|
||||
__le16 flags;
|
||||
};
|
||||
#endif
|
||||
|
|
|
@ -28,6 +28,7 @@
|
|||
#define HFI1_CAP_SDMA_AHG (1UL << 2)
|
||||
#define HFI1_CAP_EXTENDED_PSN (1UL << 3)
|
||||
#define HFI1_CAP_HDRSUPP (1UL << 4)
|
||||
#define HFI1_CAP_TID_RDMA (1UL << 5)
|
||||
#define HFI1_CAP_USE_SDMA_HEAD (1UL << 6)
|
||||
#define HFI1_CAP_MULTI_PKT_EGR (1UL << 7)
|
||||
#define HFI1_CAP_NODROP_RHQ_FULL (1UL << 8)
|
||||
|
@ -38,6 +39,7 @@
|
|||
#define HFI1_CAP_NO_INTEGRITY (1UL << 13)
|
||||
#define HFI1_CAP_PKEY_CHECK (1UL << 14)
|
||||
#define HFI1_CAP_STATIC_RATE_CTRL (1UL << 15)
|
||||
#define HFI1_CAP_OPFN (1UL << 16)
|
||||
#define HFI1_CAP_SDMA_HEAD_CHECK (1UL << 17)
|
||||
#define HFI1_CAP_EARLY_CREDIT_RETURN (1UL << 18)
|
||||
#define HFI1_RCVHDR_ENTSIZE_2 (1UL << 0)
|
||||
|
|
|
@ -27,6 +27,15 @@ struct hns_roce_ib_create_cq_resp {
|
|||
__aligned_u64 cqn;
|
||||
__aligned_u64 cap_flags;
|
||||
};
|
||||
struct hns_roce_ib_create_srq {
|
||||
__aligned_u64 buf_addr;
|
||||
__aligned_u64 db_addr;
|
||||
__aligned_u64 que_addr;
|
||||
};
|
||||
struct hns_roce_ib_create_srq_resp {
|
||||
__u32 srqn;
|
||||
__u32 reserved;
|
||||
};
|
||||
struct hns_roce_ib_create_qp {
|
||||
__aligned_u64 buf_addr;
|
||||
__aligned_u64 db_addr;
|
||||
|
|
|
@ -44,6 +44,20 @@ enum {
|
|||
UVERBS_ATTR_UHW_IN = UVERBS_UDATA_DRIVER_DATA_FLAG,
|
||||
UVERBS_ATTR_UHW_OUT,
|
||||
};
|
||||
enum uverbs_methods_device {
|
||||
UVERBS_METHOD_INVOKE_WRITE,
|
||||
UVERBS_METHOD_INFO_HANDLES,
|
||||
UVERBS_METHOD_QUERY_PORT,
|
||||
};
|
||||
enum uverbs_attrs_invoke_write_cmd_attr_ids {
|
||||
UVERBS_ATTR_CORE_IN,
|
||||
UVERBS_ATTR_CORE_OUT,
|
||||
UVERBS_ATTR_WRITE_CMD,
|
||||
};
|
||||
enum uverbs_attrs_query_port_cmd_attr_ids {
|
||||
UVERBS_ATTR_QUERY_PORT_PORT_NUM,
|
||||
UVERBS_ATTR_QUERY_PORT_RESP,
|
||||
};
|
||||
enum uverbs_attrs_create_cq_cmd_attr_ids {
|
||||
UVERBS_ATTR_CREATE_CQ_HANDLE,
|
||||
UVERBS_ATTR_CREATE_CQ_CQE,
|
||||
|
@ -104,6 +118,17 @@ enum uverbs_attrs_reg_dm_mr_cmd_attr_ids {
|
|||
};
|
||||
enum uverbs_methods_mr {
|
||||
UVERBS_METHOD_DM_MR_REG,
|
||||
UVERBS_METHOD_MR_DESTROY,
|
||||
UVERBS_METHOD_ADVISE_MR,
|
||||
};
|
||||
enum uverbs_attrs_mr_destroy_ids {
|
||||
UVERBS_ATTR_DESTROY_MR_HANDLE,
|
||||
};
|
||||
enum uverbs_attrs_advise_mr_cmd_attr_ids {
|
||||
UVERBS_ATTR_ADVISE_MR_PD_HANDLE,
|
||||
UVERBS_ATTR_ADVISE_MR_ADVICE,
|
||||
UVERBS_ATTR_ADVISE_MR_FLAGS,
|
||||
UVERBS_ATTR_ADVISE_MR_SGE_LIST,
|
||||
};
|
||||
enum uverbs_attrs_create_counters_cmd_attr_ids {
|
||||
UVERBS_ATTR_CREATE_COUNTERS_HANDLE,
|
||||
|
@ -121,4 +146,45 @@ enum uverbs_methods_actions_counters_ops {
|
|||
UVERBS_METHOD_COUNTERS_DESTROY,
|
||||
UVERBS_METHOD_COUNTERS_READ,
|
||||
};
|
||||
enum uverbs_attrs_info_handles_id {
|
||||
UVERBS_ATTR_INFO_OBJECT_ID,
|
||||
UVERBS_ATTR_INFO_TOTAL_HANDLES,
|
||||
UVERBS_ATTR_INFO_HANDLES_LIST,
|
||||
};
|
||||
enum uverbs_methods_pd {
|
||||
UVERBS_METHOD_PD_DESTROY,
|
||||
};
|
||||
enum uverbs_attrs_pd_destroy_ids {
|
||||
UVERBS_ATTR_DESTROY_PD_HANDLE,
|
||||
};
|
||||
enum uverbs_methods_mw {
|
||||
UVERBS_METHOD_MW_DESTROY,
|
||||
};
|
||||
enum uverbs_attrs_mw_destroy_ids {
|
||||
UVERBS_ATTR_DESTROY_MW_HANDLE,
|
||||
};
|
||||
enum uverbs_methods_xrcd {
|
||||
UVERBS_METHOD_XRCD_DESTROY,
|
||||
};
|
||||
enum uverbs_attrs_xrcd_destroy_ids {
|
||||
UVERBS_ATTR_DESTROY_XRCD_HANDLE,
|
||||
};
|
||||
enum uverbs_methods_ah {
|
||||
UVERBS_METHOD_AH_DESTROY,
|
||||
};
|
||||
enum uverbs_attrs_ah_destroy_ids {
|
||||
UVERBS_ATTR_DESTROY_AH_HANDLE,
|
||||
};
|
||||
enum uverbs_methods_rwq_ind_tbl {
|
||||
UVERBS_METHOD_RWQ_IND_TBL_DESTROY,
|
||||
};
|
||||
enum uverbs_attrs_rwq_ind_tbl_destroy_ids {
|
||||
UVERBS_ATTR_DESTROY_RWQ_IND_TBL_HANDLE,
|
||||
};
|
||||
enum uverbs_methods_flow {
|
||||
UVERBS_METHOD_FLOW_DESTROY,
|
||||
};
|
||||
enum uverbs_attrs_flow_destroy_ids {
|
||||
UVERBS_ATTR_DESTROY_FLOW_HANDLE,
|
||||
};
|
||||
#endif
|
||||
|
|
|
@ -19,6 +19,7 @@
|
|||
#ifndef IB_USER_IOCTL_VERBS_H
|
||||
#define IB_USER_IOCTL_VERBS_H
|
||||
#include <linux/types.h>
|
||||
#include <rdma/ib_user_verbs.h>
|
||||
#ifndef RDMA_UAPI_PTR
|
||||
#define RDMA_UAPI_PTR(_type,_name) __aligned_u64 _name
|
||||
#endif
|
||||
|
@ -112,4 +113,16 @@ struct ib_uverbs_flow_action_esp {
|
|||
enum ib_uverbs_read_counters_flags {
|
||||
IB_UVERBS_READ_COUNTERS_PREFER_CACHED = 1 << 0,
|
||||
};
|
||||
enum ib_uverbs_advise_mr_advice {
|
||||
IB_UVERBS_ADVISE_MR_ADVICE_PREFETCH,
|
||||
IB_UVERBS_ADVISE_MR_ADVICE_PREFETCH_WRITE,
|
||||
};
|
||||
enum ib_uverbs_advise_mr_flag {
|
||||
IB_UVERBS_ADVISE_MR_FLAG_FLUSH = 1 << 0,
|
||||
};
|
||||
struct ib_uverbs_query_port_resp_ex {
|
||||
struct ib_uverbs_query_port_resp legacy_resp;
|
||||
__u16 port_cap_flags2;
|
||||
__u8 reserved[6];
|
||||
};
|
||||
#endif
|
||||
|
|
|
@ -21,7 +21,7 @@
|
|||
#include <linux/types.h>
|
||||
#define IB_USER_VERBS_ABI_VERSION 6
|
||||
#define IB_USER_VERBS_CMD_THRESHOLD 50
|
||||
enum {
|
||||
enum ib_uverbs_write_cmds {
|
||||
IB_USER_VERBS_CMD_GET_CONTEXT,
|
||||
IB_USER_VERBS_CMD_QUERY_DEVICE,
|
||||
IB_USER_VERBS_CMD_QUERY_PORT,
|
||||
|
@ -111,6 +111,7 @@ struct ib_uverbs_get_context {
|
|||
struct ib_uverbs_get_context_resp {
|
||||
__u32 async_fd;
|
||||
__u32 num_comp_vectors;
|
||||
__aligned_u64 driver_data[0];
|
||||
};
|
||||
struct ib_uverbs_query_device {
|
||||
__aligned_u64 response;
|
||||
|
@ -237,6 +238,7 @@ struct ib_uverbs_alloc_pd {
|
|||
};
|
||||
struct ib_uverbs_alloc_pd_resp {
|
||||
__u32 pd_handle;
|
||||
__u32 driver_data[0];
|
||||
};
|
||||
struct ib_uverbs_dealloc_pd {
|
||||
__u32 pd_handle;
|
||||
|
@ -249,6 +251,7 @@ struct ib_uverbs_open_xrcd {
|
|||
};
|
||||
struct ib_uverbs_open_xrcd_resp {
|
||||
__u32 xrcd_handle;
|
||||
__u32 driver_data[0];
|
||||
};
|
||||
struct ib_uverbs_close_xrcd {
|
||||
__u32 xrcd_handle;
|
||||
|
@ -266,6 +269,7 @@ struct ib_uverbs_reg_mr_resp {
|
|||
__u32 mr_handle;
|
||||
__u32 lkey;
|
||||
__u32 rkey;
|
||||
__u32 driver_data[0];
|
||||
};
|
||||
struct ib_uverbs_rereg_mr {
|
||||
__aligned_u64 response;
|
||||
|
@ -276,10 +280,12 @@ struct ib_uverbs_rereg_mr {
|
|||
__aligned_u64 hca_va;
|
||||
__u32 pd_handle;
|
||||
__u32 access_flags;
|
||||
__aligned_u64 driver_data[0];
|
||||
};
|
||||
struct ib_uverbs_rereg_mr_resp {
|
||||
__u32 lkey;
|
||||
__u32 rkey;
|
||||
__aligned_u64 driver_data[0];
|
||||
};
|
||||
struct ib_uverbs_dereg_mr {
|
||||
__u32 mr_handle;
|
||||
|
@ -289,10 +295,12 @@ struct ib_uverbs_alloc_mw {
|
|||
__u32 pd_handle;
|
||||
__u8 mw_type;
|
||||
__u8 reserved[3];
|
||||
__aligned_u64 driver_data[0];
|
||||
};
|
||||
struct ib_uverbs_alloc_mw_resp {
|
||||
__u32 mw_handle;
|
||||
__u32 rkey;
|
||||
__aligned_u64 driver_data[0];
|
||||
};
|
||||
struct ib_uverbs_dealloc_mw {
|
||||
__u32 mw_handle;
|
||||
|
@ -328,6 +336,7 @@ struct ib_uverbs_ex_create_cq {
|
|||
struct ib_uverbs_create_cq_resp {
|
||||
__u32 cq_handle;
|
||||
__u32 cqe;
|
||||
__aligned_u64 driver_data[0];
|
||||
};
|
||||
struct ib_uverbs_ex_create_cq_resp {
|
||||
struct ib_uverbs_create_cq_resp base;
|
||||
|
@ -507,6 +516,7 @@ struct ib_uverbs_create_qp_resp {
|
|||
__u32 max_recv_sge;
|
||||
__u32 max_inline_data;
|
||||
__u32 reserved;
|
||||
__u32 driver_data[0];
|
||||
};
|
||||
struct ib_uverbs_ex_create_qp_resp {
|
||||
struct ib_uverbs_create_qp_resp base;
|
||||
|
@ -600,8 +610,6 @@ struct ib_uverbs_ex_modify_qp {
|
|||
__u32 rate_limit;
|
||||
__u32 reserved;
|
||||
};
|
||||
struct ib_uverbs_modify_qp_resp {
|
||||
};
|
||||
struct ib_uverbs_ex_modify_qp_resp {
|
||||
__u32 comp_mask;
|
||||
__u32 response_length;
|
||||
|
@ -709,9 +717,11 @@ struct ib_uverbs_create_ah {
|
|||
__u32 pd_handle;
|
||||
__u32 reserved;
|
||||
struct ib_uverbs_ah_attr attr;
|
||||
__aligned_u64 driver_data[0];
|
||||
};
|
||||
struct ib_uverbs_create_ah_resp {
|
||||
__u32 ah_handle;
|
||||
__u32 driver_data[0];
|
||||
};
|
||||
struct ib_uverbs_destroy_ah {
|
||||
__u32 ah_handle;
|
||||
|
@ -970,6 +980,7 @@ struct ib_uverbs_create_srq_resp {
|
|||
__u32 max_wr;
|
||||
__u32 max_sge;
|
||||
__u32 srqn;
|
||||
__u32 driver_data[0];
|
||||
};
|
||||
struct ib_uverbs_modify_srq {
|
||||
__u32 srq_handle;
|
||||
|
|
|
@ -31,6 +31,7 @@ enum {
|
|||
MLX5_QP_FLAG_TIR_ALLOW_SELF_LB_UC = 1 << 6,
|
||||
MLX5_QP_FLAG_TIR_ALLOW_SELF_LB_MC = 1 << 7,
|
||||
MLX5_QP_FLAG_ALLOW_SCATTER_CQE = 1 << 8,
|
||||
MLX5_QP_FLAG_PACKET_BASED_CREDIT_MODE = 1 << 9,
|
||||
};
|
||||
enum {
|
||||
MLX5_SRQ_FLAG_SIGNATURE = 1 << 0,
|
||||
|
@ -162,6 +163,7 @@ struct mlx5_ib_striding_rq_caps {
|
|||
enum mlx5_ib_query_dev_resp_flags {
|
||||
MLX5_IB_QUERY_DEV_RESP_FLAGS_CQE_128B_COMP = 1 << 0,
|
||||
MLX5_IB_QUERY_DEV_RESP_FLAGS_CQE_128B_PAD = 1 << 1,
|
||||
MLX5_IB_QUERY_DEV_RESP_PACKET_BASED_CREDIT_MODE = 1 << 2,
|
||||
};
|
||||
enum mlx5_ib_tunnel_offloads {
|
||||
MLX5_IB_TUNNELED_OFFLOADS_VXLAN = 1 << 0,
|
||||
|
|
|
@ -120,6 +120,7 @@ enum mlx5_ib_create_flow_attrs {
|
|||
MLX5_IB_ATTR_CREATE_FLOW_MATCHER,
|
||||
MLX5_IB_ATTR_CREATE_FLOW_ARR_FLOW_ACTIONS,
|
||||
MLX5_IB_ATTR_CREATE_FLOW_TAG,
|
||||
MLX5_IB_ATTR_CREATE_FLOW_ARR_COUNTERS_DEVX,
|
||||
};
|
||||
enum mlx5_ib_destoy_flow_attrs {
|
||||
MLX5_IB_ATTR_DESTROY_FLOW_HANDLE = (1U << UVERBS_ID_NS_SHIFT),
|
||||
|
|
|
@ -47,6 +47,7 @@ enum pvrdma_wr_opcode {
|
|||
PVRDMA_WR_MASKED_ATOMIC_FETCH_AND_ADD,
|
||||
PVRDMA_WR_BIND_MW,
|
||||
PVRDMA_WR_REG_SIG_MR,
|
||||
PVRDMA_WR_ERROR,
|
||||
};
|
||||
enum pvrdma_wc_status {
|
||||
PVRDMA_WC_SUCCESS,
|
||||
|
|
|
@ -25,6 +25,7 @@
|
|||
#define SNDRV_FIREWIRE_EVENT_EFW_RESPONSE 0x4e617475
|
||||
#define SNDRV_FIREWIRE_EVENT_DIGI00X_MESSAGE 0x746e736c
|
||||
#define SNDRV_FIREWIRE_EVENT_MOTU_NOTIFICATION 0x64776479
|
||||
#define SNDRV_FIREWIRE_EVENT_TASCAM_CONTROL 0x7473636d
|
||||
struct snd_firewire_event_common {
|
||||
unsigned int type;
|
||||
};
|
||||
|
@ -58,17 +59,28 @@ struct snd_firewire_event_motu_notification {
|
|||
unsigned int type;
|
||||
__u32 message;
|
||||
};
|
||||
struct snd_firewire_tascam_change {
|
||||
unsigned int index;
|
||||
__be32 before;
|
||||
__be32 after;
|
||||
};
|
||||
struct snd_firewire_event_tascam_control {
|
||||
unsigned int type;
|
||||
struct snd_firewire_tascam_change changes[0];
|
||||
};
|
||||
union snd_firewire_event {
|
||||
struct snd_firewire_event_common common;
|
||||
struct snd_firewire_event_lock_status lock_status;
|
||||
struct snd_firewire_event_dice_notification dice_notification;
|
||||
struct snd_firewire_event_efw_response efw_response;
|
||||
struct snd_firewire_event_digi00x_message digi00x_message;
|
||||
struct snd_firewire_event_tascam_control tascam_control;
|
||||
struct snd_firewire_event_motu_notification motu_notification;
|
||||
};
|
||||
#define SNDRV_FIREWIRE_IOCTL_GET_INFO _IOR('H', 0xf8, struct snd_firewire_get_info)
|
||||
#define SNDRV_FIREWIRE_IOCTL_LOCK _IO('H', 0xf9)
|
||||
#define SNDRV_FIREWIRE_IOCTL_UNLOCK _IO('H', 0xfa)
|
||||
#define SNDRV_FIREWIRE_IOCTL_TASCAM_STATE _IOR('H', 0xfb, struct snd_firewire_tascam_state)
|
||||
#define SNDRV_FIREWIRE_TYPE_DICE 1
|
||||
#define SNDRV_FIREWIRE_TYPE_FIREWORKS 2
|
||||
#define SNDRV_FIREWIRE_TYPE_BEBOB 3
|
||||
|
@ -83,4 +95,8 @@ struct snd_firewire_get_info {
|
|||
unsigned char guid[8];
|
||||
char device_name[16];
|
||||
};
|
||||
#define SNDRV_FIREWIRE_TASCAM_STATE_COUNT 64
|
||||
struct snd_firewire_tascam_state {
|
||||
__be32 data[SNDRV_FIREWIRE_TASCAM_STATE_COUNT];
|
||||
};
|
||||
#endif
|
||||
|
|
|
@ -584,8 +584,15 @@ class State:
|
|||
"kernel/uapi/asm-arm/asm/unistd-eabi.h",
|
||||
"kernel/uapi/asm-arm/asm/unistd-oabi.h",
|
||||
"kernel/uapi/asm-mips/asm/unistd.h",
|
||||
"kernel/uapi/asm-mips/asm/unistd_n32.h",
|
||||
"kernel/uapi/asm-mips/asm/unistd_n64.h",
|
||||
"kernel/uapi/asm-mips/asm/unistd_nr_n32.h",
|
||||
"kernel/uapi/asm-mips/asm/unistd_nr_n64.h",
|
||||
"kernel/uapi/asm-mips/asm/unistd_nr_o32.h",
|
||||
"kernel/uapi/asm-mips/asm/unistd_o32.h",
|
||||
"kernel/uapi/asm-x86/asm/unistd_32.h",
|
||||
"kernel/uapi/asm-x86/asm/unistd_64.h"]:
|
||||
"kernel/uapi/asm-x86/asm/unistd_64.h",
|
||||
"kernel/uapi/asm-x86/asm/unistd_x32.h"]:
|
||||
for line in open(os.path.join(bionic_libc_root, unistd_h)):
|
||||
m = re.search(pattern, line)
|
||||
if m:
|
||||
|
|
Loading…
Reference in a new issue