mirror of
https://github.com/AetherDroid/android_kernel_samsung_on5xelte.git
synced 2025-09-10 01:12:45 -04:00
Fixed MTP to work with TWRP
This commit is contained in:
commit
f6dfaef42e
50820 changed files with 20846062 additions and 0 deletions
43
arch/alpha/include/uapi/asm/Kbuild
Normal file
43
arch/alpha/include/uapi/asm/Kbuild
Normal file
|
@ -0,0 +1,43 @@
|
|||
# UAPI Header export list
|
||||
include include/uapi/asm-generic/Kbuild.asm
|
||||
|
||||
header-y += a.out.h
|
||||
header-y += auxvec.h
|
||||
header-y += bitsperlong.h
|
||||
header-y += byteorder.h
|
||||
header-y += compiler.h
|
||||
header-y += console.h
|
||||
header-y += errno.h
|
||||
header-y += fcntl.h
|
||||
header-y += fpu.h
|
||||
header-y += gentrap.h
|
||||
header-y += ioctl.h
|
||||
header-y += ioctls.h
|
||||
header-y += ipcbuf.h
|
||||
header-y += kvm_para.h
|
||||
header-y += mman.h
|
||||
header-y += msgbuf.h
|
||||
header-y += pal.h
|
||||
header-y += param.h
|
||||
header-y += poll.h
|
||||
header-y += posix_types.h
|
||||
header-y += ptrace.h
|
||||
header-y += reg.h
|
||||
header-y += regdef.h
|
||||
header-y += resource.h
|
||||
header-y += sembuf.h
|
||||
header-y += setup.h
|
||||
header-y += shmbuf.h
|
||||
header-y += sigcontext.h
|
||||
header-y += siginfo.h
|
||||
header-y += signal.h
|
||||
header-y += socket.h
|
||||
header-y += sockios.h
|
||||
header-y += stat.h
|
||||
header-y += statfs.h
|
||||
header-y += swab.h
|
||||
header-y += sysinfo.h
|
||||
header-y += termbits.h
|
||||
header-y += termios.h
|
||||
header-y += types.h
|
||||
header-y += unistd.h
|
91
arch/alpha/include/uapi/asm/a.out.h
Normal file
91
arch/alpha/include/uapi/asm/a.out.h
Normal file
|
@ -0,0 +1,91 @@
|
|||
#ifndef _UAPI__ALPHA_A_OUT_H__
|
||||
#define _UAPI__ALPHA_A_OUT_H__
|
||||
|
||||
#include <linux/types.h>
|
||||
|
||||
/*
|
||||
* OSF/1 ECOFF header structs. ECOFF files consist of:
|
||||
* - a file header (struct filehdr),
|
||||
* - an a.out header (struct aouthdr),
|
||||
* - one or more section headers (struct scnhdr).
|
||||
* The filhdr's "f_nscns" field contains the
|
||||
* number of section headers.
|
||||
*/
|
||||
|
||||
struct filehdr
|
||||
{
|
||||
/* OSF/1 "file" header */
|
||||
__u16 f_magic, f_nscns;
|
||||
__u32 f_timdat;
|
||||
__u64 f_symptr;
|
||||
__u32 f_nsyms;
|
||||
__u16 f_opthdr, f_flags;
|
||||
};
|
||||
|
||||
struct aouthdr
|
||||
{
|
||||
__u64 info; /* after that it looks quite normal.. */
|
||||
__u64 tsize;
|
||||
__u64 dsize;
|
||||
__u64 bsize;
|
||||
__u64 entry;
|
||||
__u64 text_start; /* with a few additions that actually make sense */
|
||||
__u64 data_start;
|
||||
__u64 bss_start;
|
||||
__u32 gprmask, fprmask; /* bitmask of general & floating point regs used in binary */
|
||||
__u64 gpvalue;
|
||||
};
|
||||
|
||||
struct scnhdr
|
||||
{
|
||||
char s_name[8];
|
||||
__u64 s_paddr;
|
||||
__u64 s_vaddr;
|
||||
__u64 s_size;
|
||||
__u64 s_scnptr;
|
||||
__u64 s_relptr;
|
||||
__u64 s_lnnoptr;
|
||||
__u16 s_nreloc;
|
||||
__u16 s_nlnno;
|
||||
__u32 s_flags;
|
||||
};
|
||||
|
||||
struct exec
|
||||
{
|
||||
/* OSF/1 "file" header */
|
||||
struct filehdr fh;
|
||||
struct aouthdr ah;
|
||||
};
|
||||
|
||||
/*
|
||||
* Define's so that the kernel exec code can access the a.out header
|
||||
* fields...
|
||||
*/
|
||||
#define a_info ah.info
|
||||
#define a_text ah.tsize
|
||||
#define a_data ah.dsize
|
||||
#define a_bss ah.bsize
|
||||
#define a_entry ah.entry
|
||||
#define a_textstart ah.text_start
|
||||
#define a_datastart ah.data_start
|
||||
#define a_bssstart ah.bss_start
|
||||
#define a_gprmask ah.gprmask
|
||||
#define a_fprmask ah.fprmask
|
||||
#define a_gpvalue ah.gpvalue
|
||||
|
||||
#define N_TXTADDR(x) ((x).a_textstart)
|
||||
#define N_DATADDR(x) ((x).a_datastart)
|
||||
#define N_BSSADDR(x) ((x).a_bssstart)
|
||||
#define N_DRSIZE(x) 0
|
||||
#define N_TRSIZE(x) 0
|
||||
#define N_SYMSIZE(x) 0
|
||||
|
||||
#define AOUTHSZ sizeof(struct aouthdr)
|
||||
#define SCNHSZ sizeof(struct scnhdr)
|
||||
#define SCNROUND 16
|
||||
|
||||
#define N_TXTOFF(x) \
|
||||
((long) N_MAGIC(x) == ZMAGIC ? 0 : \
|
||||
(sizeof(struct exec) + (x).fh.f_nscns*SCNHSZ + SCNROUND - 1) & ~(SCNROUND - 1))
|
||||
|
||||
#endif /* _UAPI__ALPHA_A_OUT_H__ */
|
26
arch/alpha/include/uapi/asm/auxvec.h
Normal file
26
arch/alpha/include/uapi/asm/auxvec.h
Normal file
|
@ -0,0 +1,26 @@
|
|||
#ifndef __ASM_ALPHA_AUXVEC_H
|
||||
#define __ASM_ALPHA_AUXVEC_H
|
||||
|
||||
/* Reserve these numbers for any future use of a VDSO. */
|
||||
#if 0
|
||||
#define AT_SYSINFO 32
|
||||
#define AT_SYSINFO_EHDR 33
|
||||
#endif
|
||||
|
||||
/* More complete cache descriptions than AT_[DIU]CACHEBSIZE. If the
|
||||
value is -1, then the cache doesn't exist. Otherwise:
|
||||
|
||||
bit 0-3: Cache set-associativity; 0 means fully associative.
|
||||
bit 4-7: Log2 of cacheline size.
|
||||
bit 8-31: Size of the entire cache >> 8.
|
||||
bit 32-63: Reserved.
|
||||
*/
|
||||
|
||||
#define AT_L1I_CACHESHAPE 34
|
||||
#define AT_L1D_CACHESHAPE 35
|
||||
#define AT_L2_CACHESHAPE 36
|
||||
#define AT_L3_CACHESHAPE 37
|
||||
|
||||
#define AT_VECTOR_SIZE_ARCH 4 /* entries in ARCH_DLINFO */
|
||||
|
||||
#endif /* __ASM_ALPHA_AUXVEC_H */
|
8
arch/alpha/include/uapi/asm/bitsperlong.h
Normal file
8
arch/alpha/include/uapi/asm/bitsperlong.h
Normal file
|
@ -0,0 +1,8 @@
|
|||
#ifndef __ASM_ALPHA_BITSPERLONG_H
|
||||
#define __ASM_ALPHA_BITSPERLONG_H
|
||||
|
||||
#define __BITS_PER_LONG 64
|
||||
|
||||
#include <asm-generic/bitsperlong.h>
|
||||
|
||||
#endif /* __ASM_ALPHA_BITSPERLONG_H */
|
6
arch/alpha/include/uapi/asm/byteorder.h
Normal file
6
arch/alpha/include/uapi/asm/byteorder.h
Normal file
|
@ -0,0 +1,6 @@
|
|||
#ifndef _ALPHA_BYTEORDER_H
|
||||
#define _ALPHA_BYTEORDER_H
|
||||
|
||||
#include <linux/byteorder/little_endian.h>
|
||||
|
||||
#endif /* _ALPHA_BYTEORDER_H */
|
117
arch/alpha/include/uapi/asm/compiler.h
Normal file
117
arch/alpha/include/uapi/asm/compiler.h
Normal file
|
@ -0,0 +1,117 @@
|
|||
#ifndef _UAPI__ALPHA_COMPILER_H
|
||||
#define _UAPI__ALPHA_COMPILER_H
|
||||
|
||||
/*
|
||||
* Herein are macros we use when describing various patterns we want to GCC.
|
||||
* In all cases we can get better schedules out of the compiler if we hide
|
||||
* as little as possible inside inline assembly. However, we want to be
|
||||
* able to know what we'll get out before giving up inline assembly. Thus
|
||||
* these tests and macros.
|
||||
*/
|
||||
|
||||
#if __GNUC__ == 3 && __GNUC_MINOR__ >= 4 || __GNUC__ > 3
|
||||
# define __kernel_insbl(val, shift) __builtin_alpha_insbl(val, shift)
|
||||
# define __kernel_inswl(val, shift) __builtin_alpha_inswl(val, shift)
|
||||
# define __kernel_insql(val, shift) __builtin_alpha_insql(val, shift)
|
||||
# define __kernel_inslh(val, shift) __builtin_alpha_inslh(val, shift)
|
||||
# define __kernel_extbl(val, shift) __builtin_alpha_extbl(val, shift)
|
||||
# define __kernel_extwl(val, shift) __builtin_alpha_extwl(val, shift)
|
||||
# define __kernel_cmpbge(a, b) __builtin_alpha_cmpbge(a, b)
|
||||
#else
|
||||
# define __kernel_insbl(val, shift) \
|
||||
({ unsigned long __kir; \
|
||||
__asm__("insbl %2,%1,%0" : "=r"(__kir) : "rI"(shift), "r"(val)); \
|
||||
__kir; })
|
||||
# define __kernel_inswl(val, shift) \
|
||||
({ unsigned long __kir; \
|
||||
__asm__("inswl %2,%1,%0" : "=r"(__kir) : "rI"(shift), "r"(val)); \
|
||||
__kir; })
|
||||
# define __kernel_insql(val, shift) \
|
||||
({ unsigned long __kir; \
|
||||
__asm__("insql %2,%1,%0" : "=r"(__kir) : "rI"(shift), "r"(val)); \
|
||||
__kir; })
|
||||
# define __kernel_inslh(val, shift) \
|
||||
({ unsigned long __kir; \
|
||||
__asm__("inslh %2,%1,%0" : "=r"(__kir) : "rI"(shift), "r"(val)); \
|
||||
__kir; })
|
||||
# define __kernel_extbl(val, shift) \
|
||||
({ unsigned long __kir; \
|
||||
__asm__("extbl %2,%1,%0" : "=r"(__kir) : "rI"(shift), "r"(val)); \
|
||||
__kir; })
|
||||
# define __kernel_extwl(val, shift) \
|
||||
({ unsigned long __kir; \
|
||||
__asm__("extwl %2,%1,%0" : "=r"(__kir) : "rI"(shift), "r"(val)); \
|
||||
__kir; })
|
||||
# define __kernel_cmpbge(a, b) \
|
||||
({ unsigned long __kir; \
|
||||
__asm__("cmpbge %r2,%1,%0" : "=r"(__kir) : "rI"(b), "rJ"(a)); \
|
||||
__kir; })
|
||||
#endif
|
||||
|
||||
#ifdef __alpha_cix__
|
||||
# if __GNUC__ == 3 && __GNUC_MINOR__ >= 4 || __GNUC__ > 3
|
||||
# define __kernel_cttz(x) __builtin_ctzl(x)
|
||||
# define __kernel_ctlz(x) __builtin_clzl(x)
|
||||
# define __kernel_ctpop(x) __builtin_popcountl(x)
|
||||
# else
|
||||
# define __kernel_cttz(x) \
|
||||
({ unsigned long __kir; \
|
||||
__asm__("cttz %1,%0" : "=r"(__kir) : "r"(x)); \
|
||||
__kir; })
|
||||
# define __kernel_ctlz(x) \
|
||||
({ unsigned long __kir; \
|
||||
__asm__("ctlz %1,%0" : "=r"(__kir) : "r"(x)); \
|
||||
__kir; })
|
||||
# define __kernel_ctpop(x) \
|
||||
({ unsigned long __kir; \
|
||||
__asm__("ctpop %1,%0" : "=r"(__kir) : "r"(x)); \
|
||||
__kir; })
|
||||
# endif
|
||||
#else
|
||||
# define __kernel_cttz(x) \
|
||||
({ unsigned long __kir; \
|
||||
__asm__(".arch ev67; cttz %1,%0" : "=r"(__kir) : "r"(x)); \
|
||||
__kir; })
|
||||
# define __kernel_ctlz(x) \
|
||||
({ unsigned long __kir; \
|
||||
__asm__(".arch ev67; ctlz %1,%0" : "=r"(__kir) : "r"(x)); \
|
||||
__kir; })
|
||||
# define __kernel_ctpop(x) \
|
||||
({ unsigned long __kir; \
|
||||
__asm__(".arch ev67; ctpop %1,%0" : "=r"(__kir) : "r"(x)); \
|
||||
__kir; })
|
||||
#endif
|
||||
|
||||
|
||||
/*
|
||||
* Beginning with EGCS 1.1, GCC defines __alpha_bwx__ when the BWX
|
||||
* extension is enabled. Previous versions did not define anything
|
||||
* we could test during compilation -- too bad, so sad.
|
||||
*/
|
||||
|
||||
#if defined(__alpha_bwx__)
|
||||
#define __kernel_ldbu(mem) (mem)
|
||||
#define __kernel_ldwu(mem) (mem)
|
||||
#define __kernel_stb(val,mem) ((mem) = (val))
|
||||
#define __kernel_stw(val,mem) ((mem) = (val))
|
||||
#else
|
||||
#define __kernel_ldbu(mem) \
|
||||
({ unsigned char __kir; \
|
||||
__asm__(".arch ev56; \
|
||||
ldbu %0,%1" : "=r"(__kir) : "m"(mem)); \
|
||||
__kir; })
|
||||
#define __kernel_ldwu(mem) \
|
||||
({ unsigned short __kir; \
|
||||
__asm__(".arch ev56; \
|
||||
ldwu %0,%1" : "=r"(__kir) : "m"(mem)); \
|
||||
__kir; })
|
||||
#define __kernel_stb(val,mem) \
|
||||
__asm__(".arch ev56; \
|
||||
stb %1,%0" : "=m"(mem) : "r"(val))
|
||||
#define __kernel_stw(val,mem) \
|
||||
__asm__(".arch ev56; \
|
||||
stw %1,%0" : "=m"(mem) : "r"(val))
|
||||
#endif
|
||||
|
||||
|
||||
#endif /* _UAPI__ALPHA_COMPILER_H */
|
50
arch/alpha/include/uapi/asm/console.h
Normal file
50
arch/alpha/include/uapi/asm/console.h
Normal file
|
@ -0,0 +1,50 @@
|
|||
#ifndef _UAPI__AXP_CONSOLE_H
|
||||
#define _UAPI__AXP_CONSOLE_H
|
||||
|
||||
/*
|
||||
* Console callback routine numbers
|
||||
*/
|
||||
#define CCB_GETC 0x01
|
||||
#define CCB_PUTS 0x02
|
||||
#define CCB_RESET_TERM 0x03
|
||||
#define CCB_SET_TERM_INT 0x04
|
||||
#define CCB_SET_TERM_CTL 0x05
|
||||
#define CCB_PROCESS_KEYCODE 0x06
|
||||
#define CCB_OPEN_CONSOLE 0x07
|
||||
#define CCB_CLOSE_CONSOLE 0x08
|
||||
|
||||
#define CCB_OPEN 0x10
|
||||
#define CCB_CLOSE 0x11
|
||||
#define CCB_IOCTL 0x12
|
||||
#define CCB_READ 0x13
|
||||
#define CCB_WRITE 0x14
|
||||
|
||||
#define CCB_SET_ENV 0x20
|
||||
#define CCB_RESET_ENV 0x21
|
||||
#define CCB_GET_ENV 0x22
|
||||
#define CCB_SAVE_ENV 0x23
|
||||
|
||||
#define CCB_PSWITCH 0x30
|
||||
#define CCB_BIOS_EMUL 0x32
|
||||
|
||||
/*
|
||||
* Environment variable numbers
|
||||
*/
|
||||
#define ENV_AUTO_ACTION 0x01
|
||||
#define ENV_BOOT_DEV 0x02
|
||||
#define ENV_BOOTDEF_DEV 0x03
|
||||
#define ENV_BOOTED_DEV 0x04
|
||||
#define ENV_BOOT_FILE 0x05
|
||||
#define ENV_BOOTED_FILE 0x06
|
||||
#define ENV_BOOT_OSFLAGS 0x07
|
||||
#define ENV_BOOTED_OSFLAGS 0x08
|
||||
#define ENV_BOOT_RESET 0x09
|
||||
#define ENV_DUMP_DEV 0x0A
|
||||
#define ENV_ENABLE_AUDIT 0x0B
|
||||
#define ENV_LICENSE 0x0C
|
||||
#define ENV_CHAR_SET 0x0D
|
||||
#define ENV_LANGUAGE 0x0E
|
||||
#define ENV_TTY_DEV 0x0F
|
||||
|
||||
|
||||
#endif /* _UAPI__AXP_CONSOLE_H */
|
127
arch/alpha/include/uapi/asm/errno.h
Normal file
127
arch/alpha/include/uapi/asm/errno.h
Normal file
|
@ -0,0 +1,127 @@
|
|||
#ifndef _ALPHA_ERRNO_H
|
||||
#define _ALPHA_ERRNO_H
|
||||
|
||||
#include <asm-generic/errno-base.h>
|
||||
|
||||
#undef EAGAIN /* 11 in errno-base.h */
|
||||
|
||||
#define EDEADLK 11 /* Resource deadlock would occur */
|
||||
|
||||
#define EAGAIN 35 /* Try again */
|
||||
#define EWOULDBLOCK EAGAIN /* Operation would block */
|
||||
#define EINPROGRESS 36 /* Operation now in progress */
|
||||
#define EALREADY 37 /* Operation already in progress */
|
||||
#define ENOTSOCK 38 /* Socket operation on non-socket */
|
||||
#define EDESTADDRREQ 39 /* Destination address required */
|
||||
#define EMSGSIZE 40 /* Message too long */
|
||||
#define EPROTOTYPE 41 /* Protocol wrong type for socket */
|
||||
#define ENOPROTOOPT 42 /* Protocol not available */
|
||||
#define EPROTONOSUPPORT 43 /* Protocol not supported */
|
||||
#define ESOCKTNOSUPPORT 44 /* Socket type not supported */
|
||||
#define EOPNOTSUPP 45 /* Operation not supported on transport endpoint */
|
||||
#define EPFNOSUPPORT 46 /* Protocol family not supported */
|
||||
#define EAFNOSUPPORT 47 /* Address family not supported by protocol */
|
||||
#define EADDRINUSE 48 /* Address already in use */
|
||||
#define EADDRNOTAVAIL 49 /* Cannot assign requested address */
|
||||
#define ENETDOWN 50 /* Network is down */
|
||||
#define ENETUNREACH 51 /* Network is unreachable */
|
||||
#define ENETRESET 52 /* Network dropped connection because of reset */
|
||||
#define ECONNABORTED 53 /* Software caused connection abort */
|
||||
#define ECONNRESET 54 /* Connection reset by peer */
|
||||
#define ENOBUFS 55 /* No buffer space available */
|
||||
#define EISCONN 56 /* Transport endpoint is already connected */
|
||||
#define ENOTCONN 57 /* Transport endpoint is not connected */
|
||||
#define ESHUTDOWN 58 /* Cannot send after transport endpoint shutdown */
|
||||
#define ETOOMANYREFS 59 /* Too many references: cannot splice */
|
||||
#define ETIMEDOUT 60 /* Connection timed out */
|
||||
#define ECONNREFUSED 61 /* Connection refused */
|
||||
#define ELOOP 62 /* Too many symbolic links encountered */
|
||||
#define ENAMETOOLONG 63 /* File name too long */
|
||||
#define EHOSTDOWN 64 /* Host is down */
|
||||
#define EHOSTUNREACH 65 /* No route to host */
|
||||
#define ENOTEMPTY 66 /* Directory not empty */
|
||||
|
||||
#define EUSERS 68 /* Too many users */
|
||||
#define EDQUOT 69 /* Quota exceeded */
|
||||
#define ESTALE 70 /* Stale file handle */
|
||||
#define EREMOTE 71 /* Object is remote */
|
||||
|
||||
#define ENOLCK 77 /* No record locks available */
|
||||
#define ENOSYS 78 /* Function not implemented */
|
||||
|
||||
#define ENOMSG 80 /* No message of desired type */
|
||||
#define EIDRM 81 /* Identifier removed */
|
||||
#define ENOSR 82 /* Out of streams resources */
|
||||
#define ETIME 83 /* Timer expired */
|
||||
#define EBADMSG 84 /* Not a data message */
|
||||
#define EPROTO 85 /* Protocol error */
|
||||
#define ENODATA 86 /* No data available */
|
||||
#define ENOSTR 87 /* Device not a stream */
|
||||
|
||||
#define ENOPKG 92 /* Package not installed */
|
||||
|
||||
#define EILSEQ 116 /* Illegal byte sequence */
|
||||
|
||||
/* The following are just random noise.. */
|
||||
#define ECHRNG 88 /* Channel number out of range */
|
||||
#define EL2NSYNC 89 /* Level 2 not synchronized */
|
||||
#define EL3HLT 90 /* Level 3 halted */
|
||||
#define EL3RST 91 /* Level 3 reset */
|
||||
|
||||
#define ELNRNG 93 /* Link number out of range */
|
||||
#define EUNATCH 94 /* Protocol driver not attached */
|
||||
#define ENOCSI 95 /* No CSI structure available */
|
||||
#define EL2HLT 96 /* Level 2 halted */
|
||||
#define EBADE 97 /* Invalid exchange */
|
||||
#define EBADR 98 /* Invalid request descriptor */
|
||||
#define EXFULL 99 /* Exchange full */
|
||||
#define ENOANO 100 /* No anode */
|
||||
#define EBADRQC 101 /* Invalid request code */
|
||||
#define EBADSLT 102 /* Invalid slot */
|
||||
|
||||
#define EDEADLOCK EDEADLK
|
||||
|
||||
#define EBFONT 104 /* Bad font file format */
|
||||
#define ENONET 105 /* Machine is not on the network */
|
||||
#define ENOLINK 106 /* Link has been severed */
|
||||
#define EADV 107 /* Advertise error */
|
||||
#define ESRMNT 108 /* Srmount error */
|
||||
#define ECOMM 109 /* Communication error on send */
|
||||
#define EMULTIHOP 110 /* Multihop attempted */
|
||||
#define EDOTDOT 111 /* RFS specific error */
|
||||
#define EOVERFLOW 112 /* Value too large for defined data type */
|
||||
#define ENOTUNIQ 113 /* Name not unique on network */
|
||||
#define EBADFD 114 /* File descriptor in bad state */
|
||||
#define EREMCHG 115 /* Remote address changed */
|
||||
|
||||
#define EUCLEAN 117 /* Structure needs cleaning */
|
||||
#define ENOTNAM 118 /* Not a XENIX named type file */
|
||||
#define ENAVAIL 119 /* No XENIX semaphores available */
|
||||
#define EISNAM 120 /* Is a named type file */
|
||||
#define EREMOTEIO 121 /* Remote I/O error */
|
||||
|
||||
#define ELIBACC 122 /* Can not access a needed shared library */
|
||||
#define ELIBBAD 123 /* Accessing a corrupted shared library */
|
||||
#define ELIBSCN 124 /* .lib section in a.out corrupted */
|
||||
#define ELIBMAX 125 /* Attempting to link in too many shared libraries */
|
||||
#define ELIBEXEC 126 /* Cannot exec a shared library directly */
|
||||
#define ERESTART 127 /* Interrupted system call should be restarted */
|
||||
#define ESTRPIPE 128 /* Streams pipe error */
|
||||
|
||||
#define ENOMEDIUM 129 /* No medium found */
|
||||
#define EMEDIUMTYPE 130 /* Wrong medium type */
|
||||
#define ECANCELED 131 /* Operation Cancelled */
|
||||
#define ENOKEY 132 /* Required key not available */
|
||||
#define EKEYEXPIRED 133 /* Key has expired */
|
||||
#define EKEYREVOKED 134 /* Key has been revoked */
|
||||
#define EKEYREJECTED 135 /* Key was rejected by service */
|
||||
|
||||
/* for robust mutexes */
|
||||
#define EOWNERDEAD 136 /* Owner died */
|
||||
#define ENOTRECOVERABLE 137 /* State not recoverable */
|
||||
|
||||
#define ERFKILL 138 /* Operation not possible due to RF-kill */
|
||||
|
||||
#define EHWPOISON 139 /* Memory page has hardware error */
|
||||
|
||||
#endif
|
57
arch/alpha/include/uapi/asm/fcntl.h
Normal file
57
arch/alpha/include/uapi/asm/fcntl.h
Normal file
|
@ -0,0 +1,57 @@
|
|||
#ifndef _ALPHA_FCNTL_H
|
||||
#define _ALPHA_FCNTL_H
|
||||
|
||||
#define O_CREAT 01000 /* not fcntl */
|
||||
#define O_TRUNC 02000 /* not fcntl */
|
||||
#define O_EXCL 04000 /* not fcntl */
|
||||
#define O_NOCTTY 010000 /* not fcntl */
|
||||
|
||||
#define O_NONBLOCK 00004
|
||||
#define O_APPEND 00010
|
||||
#define O_DSYNC 040000 /* used to be O_SYNC, see below */
|
||||
#define O_DIRECTORY 0100000 /* must be a directory */
|
||||
#define O_NOFOLLOW 0200000 /* don't follow links */
|
||||
#define O_LARGEFILE 0400000 /* will be set by the kernel on every open */
|
||||
#define O_DIRECT 02000000 /* direct disk access - should check with OSF/1 */
|
||||
#define O_NOATIME 04000000
|
||||
#define O_CLOEXEC 010000000 /* set close_on_exec */
|
||||
/*
|
||||
* Before Linux 2.6.33 only O_DSYNC semantics were implemented, but using
|
||||
* the O_SYNC flag. We continue to use the existing numerical value
|
||||
* for O_DSYNC semantics now, but using the correct symbolic name for it.
|
||||
* This new value is used to request true Posix O_SYNC semantics. It is
|
||||
* defined in this strange way to make sure applications compiled against
|
||||
* new headers get at least O_DSYNC semantics on older kernels.
|
||||
*
|
||||
* This has the nice side-effect that we can simply test for O_DSYNC
|
||||
* wherever we do not care if O_DSYNC or O_SYNC is used.
|
||||
*
|
||||
* Note: __O_SYNC must never be used directly.
|
||||
*/
|
||||
#define __O_SYNC 020000000
|
||||
#define O_SYNC (__O_SYNC|O_DSYNC)
|
||||
|
||||
#define O_PATH 040000000
|
||||
#define __O_TMPFILE 0100000000
|
||||
|
||||
#define F_GETLK 7
|
||||
#define F_SETLK 8
|
||||
#define F_SETLKW 9
|
||||
|
||||
#define F_SETOWN 5 /* for sockets. */
|
||||
#define F_GETOWN 6 /* for sockets. */
|
||||
#define F_SETSIG 10 /* for sockets. */
|
||||
#define F_GETSIG 11 /* for sockets. */
|
||||
|
||||
/* for posix fcntl() and lockf() */
|
||||
#define F_RDLCK 1
|
||||
#define F_WRLCK 2
|
||||
#define F_UNLCK 8
|
||||
|
||||
/* for old implementation of bsd flock () */
|
||||
#define F_EXLCK 16 /* or 3 */
|
||||
#define F_SHLCK 32 /* or 4 */
|
||||
|
||||
#include <asm-generic/fcntl.h>
|
||||
|
||||
#endif
|
123
arch/alpha/include/uapi/asm/fpu.h
Normal file
123
arch/alpha/include/uapi/asm/fpu.h
Normal file
|
@ -0,0 +1,123 @@
|
|||
#ifndef _UAPI__ASM_ALPHA_FPU_H
|
||||
#define _UAPI__ASM_ALPHA_FPU_H
|
||||
|
||||
|
||||
/*
|
||||
* Alpha floating-point control register defines:
|
||||
*/
|
||||
#define FPCR_DNOD (1UL<<47) /* denorm INV trap disable */
|
||||
#define FPCR_DNZ (1UL<<48) /* denorms to zero */
|
||||
#define FPCR_INVD (1UL<<49) /* invalid op disable (opt.) */
|
||||
#define FPCR_DZED (1UL<<50) /* division by zero disable (opt.) */
|
||||
#define FPCR_OVFD (1UL<<51) /* overflow disable (optional) */
|
||||
#define FPCR_INV (1UL<<52) /* invalid operation */
|
||||
#define FPCR_DZE (1UL<<53) /* division by zero */
|
||||
#define FPCR_OVF (1UL<<54) /* overflow */
|
||||
#define FPCR_UNF (1UL<<55) /* underflow */
|
||||
#define FPCR_INE (1UL<<56) /* inexact */
|
||||
#define FPCR_IOV (1UL<<57) /* integer overflow */
|
||||
#define FPCR_UNDZ (1UL<<60) /* underflow to zero (opt.) */
|
||||
#define FPCR_UNFD (1UL<<61) /* underflow disable (opt.) */
|
||||
#define FPCR_INED (1UL<<62) /* inexact disable (opt.) */
|
||||
#define FPCR_SUM (1UL<<63) /* summary bit */
|
||||
|
||||
#define FPCR_DYN_SHIFT 58 /* first dynamic rounding mode bit */
|
||||
#define FPCR_DYN_CHOPPED (0x0UL << FPCR_DYN_SHIFT) /* towards 0 */
|
||||
#define FPCR_DYN_MINUS (0x1UL << FPCR_DYN_SHIFT) /* towards -INF */
|
||||
#define FPCR_DYN_NORMAL (0x2UL << FPCR_DYN_SHIFT) /* towards nearest */
|
||||
#define FPCR_DYN_PLUS (0x3UL << FPCR_DYN_SHIFT) /* towards +INF */
|
||||
#define FPCR_DYN_MASK (0x3UL << FPCR_DYN_SHIFT)
|
||||
|
||||
#define FPCR_MASK 0xffff800000000000L
|
||||
|
||||
/*
|
||||
* IEEE trap enables are implemented in software. These per-thread
|
||||
* bits are stored in the "ieee_state" field of "struct thread_info".
|
||||
* Thus, the bits are defined so as not to conflict with the
|
||||
* floating-point enable bit (which is architected). On top of that,
|
||||
* we want to make these bits compatible with OSF/1 so
|
||||
* ieee_set_fp_control() etc. can be implemented easily and
|
||||
* compatibly. The corresponding definitions are in
|
||||
* /usr/include/machine/fpu.h under OSF/1.
|
||||
*/
|
||||
#define IEEE_TRAP_ENABLE_INV (1UL<<1) /* invalid op */
|
||||
#define IEEE_TRAP_ENABLE_DZE (1UL<<2) /* division by zero */
|
||||
#define IEEE_TRAP_ENABLE_OVF (1UL<<3) /* overflow */
|
||||
#define IEEE_TRAP_ENABLE_UNF (1UL<<4) /* underflow */
|
||||
#define IEEE_TRAP_ENABLE_INE (1UL<<5) /* inexact */
|
||||
#define IEEE_TRAP_ENABLE_DNO (1UL<<6) /* denorm */
|
||||
#define IEEE_TRAP_ENABLE_MASK (IEEE_TRAP_ENABLE_INV | IEEE_TRAP_ENABLE_DZE |\
|
||||
IEEE_TRAP_ENABLE_OVF | IEEE_TRAP_ENABLE_UNF |\
|
||||
IEEE_TRAP_ENABLE_INE | IEEE_TRAP_ENABLE_DNO)
|
||||
|
||||
/* Denorm and Underflow flushing */
|
||||
#define IEEE_MAP_DMZ (1UL<<12) /* Map denorm inputs to zero */
|
||||
#define IEEE_MAP_UMZ (1UL<<13) /* Map underflowed outputs to zero */
|
||||
|
||||
#define IEEE_MAP_MASK (IEEE_MAP_DMZ | IEEE_MAP_UMZ)
|
||||
|
||||
/* status bits coming from fpcr: */
|
||||
#define IEEE_STATUS_INV (1UL<<17)
|
||||
#define IEEE_STATUS_DZE (1UL<<18)
|
||||
#define IEEE_STATUS_OVF (1UL<<19)
|
||||
#define IEEE_STATUS_UNF (1UL<<20)
|
||||
#define IEEE_STATUS_INE (1UL<<21)
|
||||
#define IEEE_STATUS_DNO (1UL<<22)
|
||||
|
||||
#define IEEE_STATUS_MASK (IEEE_STATUS_INV | IEEE_STATUS_DZE | \
|
||||
IEEE_STATUS_OVF | IEEE_STATUS_UNF | \
|
||||
IEEE_STATUS_INE | IEEE_STATUS_DNO)
|
||||
|
||||
#define IEEE_SW_MASK (IEEE_TRAP_ENABLE_MASK | \
|
||||
IEEE_STATUS_MASK | IEEE_MAP_MASK)
|
||||
|
||||
#define IEEE_CURRENT_RM_SHIFT 32
|
||||
#define IEEE_CURRENT_RM_MASK (3UL<<IEEE_CURRENT_RM_SHIFT)
|
||||
|
||||
#define IEEE_STATUS_TO_EXCSUM_SHIFT 16
|
||||
|
||||
#define IEEE_INHERIT (1UL<<63) /* inherit on thread create? */
|
||||
|
||||
/*
|
||||
* Convert the software IEEE trap enable and status bits into the
|
||||
* hardware fpcr format.
|
||||
*
|
||||
* Digital Unix engineers receive my thanks for not defining the
|
||||
* software bits identical to the hardware bits. The chip designers
|
||||
* receive my thanks for making all the not-implemented fpcr bits
|
||||
* RAZ forcing us to use system calls to read/write this value.
|
||||
*/
|
||||
|
||||
static inline unsigned long
|
||||
ieee_swcr_to_fpcr(unsigned long sw)
|
||||
{
|
||||
unsigned long fp;
|
||||
fp = (sw & IEEE_STATUS_MASK) << 35;
|
||||
fp |= (sw & IEEE_MAP_DMZ) << 36;
|
||||
fp |= (sw & IEEE_STATUS_MASK ? FPCR_SUM : 0);
|
||||
fp |= (~sw & (IEEE_TRAP_ENABLE_INV
|
||||
| IEEE_TRAP_ENABLE_DZE
|
||||
| IEEE_TRAP_ENABLE_OVF)) << 48;
|
||||
fp |= (~sw & (IEEE_TRAP_ENABLE_UNF | IEEE_TRAP_ENABLE_INE)) << 57;
|
||||
fp |= (sw & IEEE_MAP_UMZ ? FPCR_UNDZ | FPCR_UNFD : 0);
|
||||
fp |= (~sw & IEEE_TRAP_ENABLE_DNO) << 41;
|
||||
return fp;
|
||||
}
|
||||
|
||||
static inline unsigned long
|
||||
ieee_fpcr_to_swcr(unsigned long fp)
|
||||
{
|
||||
unsigned long sw;
|
||||
sw = (fp >> 35) & IEEE_STATUS_MASK;
|
||||
sw |= (fp >> 36) & IEEE_MAP_DMZ;
|
||||
sw |= (~fp >> 48) & (IEEE_TRAP_ENABLE_INV
|
||||
| IEEE_TRAP_ENABLE_DZE
|
||||
| IEEE_TRAP_ENABLE_OVF);
|
||||
sw |= (~fp >> 57) & (IEEE_TRAP_ENABLE_UNF | IEEE_TRAP_ENABLE_INE);
|
||||
sw |= (fp >> 47) & IEEE_MAP_UMZ;
|
||||
sw |= (~fp >> 41) & IEEE_TRAP_ENABLE_DNO;
|
||||
return sw;
|
||||
}
|
||||
|
||||
|
||||
#endif /* _UAPI__ASM_ALPHA_FPU_H */
|
37
arch/alpha/include/uapi/asm/gentrap.h
Normal file
37
arch/alpha/include/uapi/asm/gentrap.h
Normal file
|
@ -0,0 +1,37 @@
|
|||
#ifndef _ASMAXP_GENTRAP_H
|
||||
#define _ASMAXP_GENTRAP_H
|
||||
|
||||
/*
|
||||
* Definitions for gentrap causes. They are generated by user-level
|
||||
* programs and therefore should be compatible with the corresponding
|
||||
* OSF/1 definitions.
|
||||
*/
|
||||
#define GEN_INTOVF -1 /* integer overflow */
|
||||
#define GEN_INTDIV -2 /* integer division by zero */
|
||||
#define GEN_FLTOVF -3 /* fp overflow */
|
||||
#define GEN_FLTDIV -4 /* fp division by zero */
|
||||
#define GEN_FLTUND -5 /* fp underflow */
|
||||
#define GEN_FLTINV -6 /* invalid fp operand */
|
||||
#define GEN_FLTINE -7 /* inexact fp operand */
|
||||
#define GEN_DECOVF -8 /* decimal overflow (for COBOL??) */
|
||||
#define GEN_DECDIV -9 /* decimal division by zero */
|
||||
#define GEN_DECINV -10 /* invalid decimal operand */
|
||||
#define GEN_ROPRAND -11 /* reserved operand */
|
||||
#define GEN_ASSERTERR -12 /* assertion error */
|
||||
#define GEN_NULPTRERR -13 /* null pointer error */
|
||||
#define GEN_STKOVF -14 /* stack overflow */
|
||||
#define GEN_STRLENERR -15 /* string length error */
|
||||
#define GEN_SUBSTRERR -16 /* substring error */
|
||||
#define GEN_RANGERR -17 /* range error */
|
||||
#define GEN_SUBRNG -18
|
||||
#define GEN_SUBRNG1 -19
|
||||
#define GEN_SUBRNG2 -20
|
||||
#define GEN_SUBRNG3 -21 /* these report range errors for */
|
||||
#define GEN_SUBRNG4 -22 /* subscripting (indexing) at levels 0..7 */
|
||||
#define GEN_SUBRNG5 -23
|
||||
#define GEN_SUBRNG6 -24
|
||||
#define GEN_SUBRNG7 -25
|
||||
|
||||
/* the remaining codes (-26..-1023) are reserved. */
|
||||
|
||||
#endif /* _ASMAXP_GENTRAP_H */
|
66
arch/alpha/include/uapi/asm/ioctl.h
Normal file
66
arch/alpha/include/uapi/asm/ioctl.h
Normal file
|
@ -0,0 +1,66 @@
|
|||
#ifndef _ALPHA_IOCTL_H
|
||||
#define _ALPHA_IOCTL_H
|
||||
|
||||
/*
|
||||
* The original linux ioctl numbering scheme was just a general
|
||||
* "anything goes" setup, where more or less random numbers were
|
||||
* assigned. Sorry, I was clueless when I started out on this.
|
||||
*
|
||||
* On the alpha, we'll try to clean it up a bit, using a more sane
|
||||
* ioctl numbering, and also trying to be compatible with OSF/1 in
|
||||
* the process. I'd like to clean it up for the i386 as well, but
|
||||
* it's so painful recognizing both the new and the old numbers..
|
||||
*/
|
||||
|
||||
#define _IOC_NRBITS 8
|
||||
#define _IOC_TYPEBITS 8
|
||||
#define _IOC_SIZEBITS 13
|
||||
#define _IOC_DIRBITS 3
|
||||
|
||||
#define _IOC_NRMASK ((1 << _IOC_NRBITS)-1)
|
||||
#define _IOC_TYPEMASK ((1 << _IOC_TYPEBITS)-1)
|
||||
#define _IOC_SIZEMASK ((1 << _IOC_SIZEBITS)-1)
|
||||
#define _IOC_DIRMASK ((1 << _IOC_DIRBITS)-1)
|
||||
|
||||
#define _IOC_NRSHIFT 0
|
||||
#define _IOC_TYPESHIFT (_IOC_NRSHIFT+_IOC_NRBITS)
|
||||
#define _IOC_SIZESHIFT (_IOC_TYPESHIFT+_IOC_TYPEBITS)
|
||||
#define _IOC_DIRSHIFT (_IOC_SIZESHIFT+_IOC_SIZEBITS)
|
||||
|
||||
/*
|
||||
* Direction bits _IOC_NONE could be 0, but OSF/1 gives it a bit.
|
||||
* And this turns out useful to catch old ioctl numbers in header
|
||||
* files for us.
|
||||
*/
|
||||
#define _IOC_NONE 1U
|
||||
#define _IOC_READ 2U
|
||||
#define _IOC_WRITE 4U
|
||||
|
||||
#define _IOC(dir,type,nr,size) \
|
||||
((unsigned int) \
|
||||
(((dir) << _IOC_DIRSHIFT) | \
|
||||
((type) << _IOC_TYPESHIFT) | \
|
||||
((nr) << _IOC_NRSHIFT) | \
|
||||
((size) << _IOC_SIZESHIFT)))
|
||||
|
||||
/* used to create numbers */
|
||||
#define _IO(type,nr) _IOC(_IOC_NONE,(type),(nr),0)
|
||||
#define _IOR(type,nr,size) _IOC(_IOC_READ,(type),(nr),sizeof(size))
|
||||
#define _IOW(type,nr,size) _IOC(_IOC_WRITE,(type),(nr),sizeof(size))
|
||||
#define _IOWR(type,nr,size) _IOC(_IOC_READ|_IOC_WRITE,(type),(nr),sizeof(size))
|
||||
|
||||
/* used to decode them.. */
|
||||
#define _IOC_DIR(nr) (((nr) >> _IOC_DIRSHIFT) & _IOC_DIRMASK)
|
||||
#define _IOC_TYPE(nr) (((nr) >> _IOC_TYPESHIFT) & _IOC_TYPEMASK)
|
||||
#define _IOC_NR(nr) (((nr) >> _IOC_NRSHIFT) & _IOC_NRMASK)
|
||||
#define _IOC_SIZE(nr) (((nr) >> _IOC_SIZESHIFT) & _IOC_SIZEMASK)
|
||||
|
||||
/* ...and for the drivers/sound files... */
|
||||
|
||||
#define IOC_IN (_IOC_WRITE << _IOC_DIRSHIFT)
|
||||
#define IOC_OUT (_IOC_READ << _IOC_DIRSHIFT)
|
||||
#define IOC_INOUT ((_IOC_WRITE|_IOC_READ) << _IOC_DIRSHIFT)
|
||||
#define IOCSIZE_MASK (_IOC_SIZEMASK << _IOC_SIZESHIFT)
|
||||
#define IOCSIZE_SHIFT (_IOC_SIZESHIFT)
|
||||
|
||||
#endif /* _ALPHA_IOCTL_H */
|
119
arch/alpha/include/uapi/asm/ioctls.h
Normal file
119
arch/alpha/include/uapi/asm/ioctls.h
Normal file
|
@ -0,0 +1,119 @@
|
|||
#ifndef _ASM_ALPHA_IOCTLS_H
|
||||
#define _ASM_ALPHA_IOCTLS_H
|
||||
|
||||
#include <asm/ioctl.h>
|
||||
|
||||
#define FIOCLEX _IO('f', 1)
|
||||
#define FIONCLEX _IO('f', 2)
|
||||
#define FIOASYNC _IOW('f', 125, int)
|
||||
#define FIONBIO _IOW('f', 126, int)
|
||||
#define FIONREAD _IOR('f', 127, int)
|
||||
#define TIOCINQ FIONREAD
|
||||
#define FIOQSIZE _IOR('f', 128, loff_t)
|
||||
|
||||
#define TIOCGETP _IOR('t', 8, struct sgttyb)
|
||||
#define TIOCSETP _IOW('t', 9, struct sgttyb)
|
||||
#define TIOCSETN _IOW('t', 10, struct sgttyb) /* TIOCSETP wo flush */
|
||||
|
||||
#define TIOCSETC _IOW('t', 17, struct tchars)
|
||||
#define TIOCGETC _IOR('t', 18, struct tchars)
|
||||
#define TCGETS _IOR('t', 19, struct termios)
|
||||
#define TCSETS _IOW('t', 20, struct termios)
|
||||
#define TCSETSW _IOW('t', 21, struct termios)
|
||||
#define TCSETSF _IOW('t', 22, struct termios)
|
||||
|
||||
#define TCGETA _IOR('t', 23, struct termio)
|
||||
#define TCSETA _IOW('t', 24, struct termio)
|
||||
#define TCSETAW _IOW('t', 25, struct termio)
|
||||
#define TCSETAF _IOW('t', 28, struct termio)
|
||||
|
||||
#define TCSBRK _IO('t', 29)
|
||||
#define TCXONC _IO('t', 30)
|
||||
#define TCFLSH _IO('t', 31)
|
||||
|
||||
#define TIOCSWINSZ _IOW('t', 103, struct winsize)
|
||||
#define TIOCGWINSZ _IOR('t', 104, struct winsize)
|
||||
#define TIOCSTART _IO('t', 110) /* start output, like ^Q */
|
||||
#define TIOCSTOP _IO('t', 111) /* stop output, like ^S */
|
||||
#define TIOCOUTQ _IOR('t', 115, int) /* output queue size */
|
||||
|
||||
#define TIOCGLTC _IOR('t', 116, struct ltchars)
|
||||
#define TIOCSLTC _IOW('t', 117, struct ltchars)
|
||||
#define TIOCSPGRP _IOW('t', 118, int)
|
||||
#define TIOCGPGRP _IOR('t', 119, int)
|
||||
|
||||
#define TIOCEXCL 0x540C
|
||||
#define TIOCNXCL 0x540D
|
||||
#define TIOCSCTTY 0x540E
|
||||
|
||||
#define TIOCSTI 0x5412
|
||||
#define TIOCMGET 0x5415
|
||||
#define TIOCMBIS 0x5416
|
||||
#define TIOCMBIC 0x5417
|
||||
#define TIOCMSET 0x5418
|
||||
# define TIOCM_LE 0x001
|
||||
# define TIOCM_DTR 0x002
|
||||
# define TIOCM_RTS 0x004
|
||||
# define TIOCM_ST 0x008
|
||||
# define TIOCM_SR 0x010
|
||||
# define TIOCM_CTS 0x020
|
||||
# define TIOCM_CAR 0x040
|
||||
# define TIOCM_RNG 0x080
|
||||
# define TIOCM_DSR 0x100
|
||||
# define TIOCM_CD TIOCM_CAR
|
||||
# define TIOCM_RI TIOCM_RNG
|
||||
# define TIOCM_OUT1 0x2000
|
||||
# define TIOCM_OUT2 0x4000
|
||||
# define TIOCM_LOOP 0x8000
|
||||
|
||||
#define TIOCGSOFTCAR 0x5419
|
||||
#define TIOCSSOFTCAR 0x541A
|
||||
#define TIOCLINUX 0x541C
|
||||
#define TIOCCONS 0x541D
|
||||
#define TIOCGSERIAL 0x541E
|
||||
#define TIOCSSERIAL 0x541F
|
||||
#define TIOCPKT 0x5420
|
||||
# define TIOCPKT_DATA 0
|
||||
# define TIOCPKT_FLUSHREAD 1
|
||||
# define TIOCPKT_FLUSHWRITE 2
|
||||
# define TIOCPKT_STOP 4
|
||||
# define TIOCPKT_START 8
|
||||
# define TIOCPKT_NOSTOP 16
|
||||
# define TIOCPKT_DOSTOP 32
|
||||
# define TIOCPKT_IOCTL 64
|
||||
|
||||
|
||||
#define TIOCNOTTY 0x5422
|
||||
#define TIOCSETD 0x5423
|
||||
#define TIOCGETD 0x5424
|
||||
#define TCSBRKP 0x5425 /* Needed for POSIX tcsendbreak() */
|
||||
#define TIOCSBRK 0x5427 /* BSD compatibility */
|
||||
#define TIOCCBRK 0x5428 /* BSD compatibility */
|
||||
#define TIOCGSID 0x5429 /* Return the session ID of FD */
|
||||
#define TIOCGRS485 _IOR('T', 0x2E, struct serial_rs485)
|
||||
#define TIOCSRS485 _IOWR('T', 0x2F, struct serial_rs485)
|
||||
#define TIOCGPTN _IOR('T',0x30, unsigned int) /* Get Pty Number (of pty-mux device) */
|
||||
#define TIOCSPTLCK _IOW('T',0x31, int) /* Lock/unlock Pty */
|
||||
#define TIOCGDEV _IOR('T',0x32, unsigned int) /* Get primary device node of /dev/console */
|
||||
#define TIOCSIG _IOW('T',0x36, int) /* Generate signal on Pty slave */
|
||||
#define TIOCVHANGUP 0x5437
|
||||
#define TIOCGPKT _IOR('T', 0x38, int) /* Get packet mode state */
|
||||
#define TIOCGPTLCK _IOR('T', 0x39, int) /* Get Pty lock state */
|
||||
#define TIOCGEXCL _IOR('T', 0x40, int) /* Get exclusive mode state */
|
||||
|
||||
#define TIOCSERCONFIG 0x5453
|
||||
#define TIOCSERGWILD 0x5454
|
||||
#define TIOCSERSWILD 0x5455
|
||||
#define TIOCGLCKTRMIOS 0x5456
|
||||
#define TIOCSLCKTRMIOS 0x5457
|
||||
#define TIOCSERGSTRUCT 0x5458 /* For debugging only */
|
||||
#define TIOCSERGETLSR 0x5459 /* Get line status register */
|
||||
/* ioctl (fd, TIOCSERGETLSR, &result) where result may be as below */
|
||||
# define TIOCSER_TEMT 0x01 /* Transmitter physically empty */
|
||||
#define TIOCSERGETMULTI 0x545A /* Get multiport config */
|
||||
#define TIOCSERSETMULTI 0x545B /* Set multiport config */
|
||||
|
||||
#define TIOCMIWAIT 0x545C /* wait for a change on serial input line(s) */
|
||||
#define TIOCGICOUNT 0x545D /* read serial port inline interrupt counts */
|
||||
|
||||
#endif /* _ASM_ALPHA_IOCTLS_H */
|
1
arch/alpha/include/uapi/asm/ipcbuf.h
Normal file
1
arch/alpha/include/uapi/asm/ipcbuf.h
Normal file
|
@ -0,0 +1 @@
|
|||
#include <asm-generic/ipcbuf.h>
|
1
arch/alpha/include/uapi/asm/kvm_para.h
Normal file
1
arch/alpha/include/uapi/asm/kvm_para.h
Normal file
|
@ -0,0 +1 @@
|
|||
#include <asm-generic/kvm_para.h>
|
77
arch/alpha/include/uapi/asm/mman.h
Normal file
77
arch/alpha/include/uapi/asm/mman.h
Normal file
|
@ -0,0 +1,77 @@
|
|||
#ifndef __ALPHA_MMAN_H__
|
||||
#define __ALPHA_MMAN_H__
|
||||
|
||||
#define PROT_READ 0x1 /* page can be read */
|
||||
#define PROT_WRITE 0x2 /* page can be written */
|
||||
#define PROT_EXEC 0x4 /* page can be executed */
|
||||
#define PROT_SEM 0x8 /* page may be used for atomic ops */
|
||||
#define PROT_NONE 0x0 /* page can not be accessed */
|
||||
#define PROT_GROWSDOWN 0x01000000 /* mprotect flag: extend change to start of growsdown vma */
|
||||
#define PROT_GROWSUP 0x02000000 /* mprotect flag: extend change to end of growsup vma */
|
||||
|
||||
#define MAP_SHARED 0x01 /* Share changes */
|
||||
#define MAP_PRIVATE 0x02 /* Changes are private */
|
||||
#define MAP_TYPE 0x0f /* Mask for type of mapping (OSF/1 is _wrong_) */
|
||||
#define MAP_FIXED 0x100 /* Interpret addr exactly */
|
||||
#define MAP_ANONYMOUS 0x10 /* don't use a file */
|
||||
|
||||
/* not used by linux, but here to make sure we don't clash with OSF/1 defines */
|
||||
#define _MAP_HASSEMAPHORE 0x0200
|
||||
#define _MAP_INHERIT 0x0400
|
||||
#define _MAP_UNALIGNED 0x0800
|
||||
|
||||
/* These are linux-specific */
|
||||
#define MAP_GROWSDOWN 0x01000 /* stack-like segment */
|
||||
#define MAP_DENYWRITE 0x02000 /* ETXTBSY */
|
||||
#define MAP_EXECUTABLE 0x04000 /* mark it as an executable */
|
||||
#define MAP_LOCKED 0x08000 /* lock the mapping */
|
||||
#define MAP_NORESERVE 0x10000 /* don't check for reservations */
|
||||
#define MAP_POPULATE 0x20000 /* populate (prefault) pagetables */
|
||||
#define MAP_NONBLOCK 0x40000 /* do not block on IO */
|
||||
#define MAP_STACK 0x80000 /* give out an address that is best suited for process/thread stacks */
|
||||
#define MAP_HUGETLB 0x100000 /* create a huge page mapping */
|
||||
|
||||
#define MS_ASYNC 1 /* sync memory asynchronously */
|
||||
#define MS_SYNC 2 /* synchronous memory sync */
|
||||
#define MS_INVALIDATE 4 /* invalidate the caches */
|
||||
|
||||
#define MCL_CURRENT 8192 /* lock all currently mapped pages */
|
||||
#define MCL_FUTURE 16384 /* lock all additions to address space */
|
||||
|
||||
#define MADV_NORMAL 0 /* no further special treatment */
|
||||
#define MADV_RANDOM 1 /* expect random page references */
|
||||
#define MADV_SEQUENTIAL 2 /* expect sequential page references */
|
||||
#define MADV_WILLNEED 3 /* will need these pages */
|
||||
#define MADV_SPACEAVAIL 5 /* ensure resources are available */
|
||||
#define MADV_DONTNEED 6 /* don't need these pages */
|
||||
|
||||
/* common/generic parameters */
|
||||
#define MADV_REMOVE 9 /* remove these pages & resources */
|
||||
#define MADV_DONTFORK 10 /* don't inherit across fork */
|
||||
#define MADV_DOFORK 11 /* do inherit across fork */
|
||||
|
||||
#define MADV_MERGEABLE 12 /* KSM may merge identical pages */
|
||||
#define MADV_UNMERGEABLE 13 /* KSM may not merge identical pages */
|
||||
|
||||
#define MADV_HUGEPAGE 14 /* Worth backing with hugepages */
|
||||
#define MADV_NOHUGEPAGE 15 /* Not worth backing with hugepages */
|
||||
|
||||
#define MADV_DONTDUMP 16 /* Explicity exclude from the core dump,
|
||||
overrides the coredump filter bits */
|
||||
#define MADV_DODUMP 17 /* Clear the MADV_NODUMP flag */
|
||||
|
||||
/* compatibility flags */
|
||||
#define MAP_FILE 0
|
||||
|
||||
/*
|
||||
* When MAP_HUGETLB is set bits [26:31] encode the log2 of the huge page size.
|
||||
* This gives us 6 bits, which is enough until someone invents 128 bit address
|
||||
* spaces.
|
||||
*
|
||||
* Assume these are all power of twos.
|
||||
* When 0 use the default page size.
|
||||
*/
|
||||
#define MAP_HUGE_SHIFT 26
|
||||
#define MAP_HUGE_MASK 0x3f
|
||||
|
||||
#endif /* __ALPHA_MMAN_H__ */
|
27
arch/alpha/include/uapi/asm/msgbuf.h
Normal file
27
arch/alpha/include/uapi/asm/msgbuf.h
Normal file
|
@ -0,0 +1,27 @@
|
|||
#ifndef _ALPHA_MSGBUF_H
|
||||
#define _ALPHA_MSGBUF_H
|
||||
|
||||
/*
|
||||
* The msqid64_ds structure for alpha architecture.
|
||||
* Note extra padding because this structure is passed back and forth
|
||||
* between kernel and user space.
|
||||
*
|
||||
* Pad space is left for:
|
||||
* - 2 miscellaneous 64-bit values
|
||||
*/
|
||||
|
||||
struct msqid64_ds {
|
||||
struct ipc64_perm msg_perm;
|
||||
__kernel_time_t msg_stime; /* last msgsnd time */
|
||||
__kernel_time_t msg_rtime; /* last msgrcv time */
|
||||
__kernel_time_t msg_ctime; /* last change time */
|
||||
unsigned long msg_cbytes; /* current number of bytes on queue */
|
||||
unsigned long msg_qnum; /* number of messages in queue */
|
||||
unsigned long msg_qbytes; /* max number of bytes on queue */
|
||||
__kernel_pid_t msg_lspid; /* pid of last msgsnd */
|
||||
__kernel_pid_t msg_lrpid; /* last receive pid */
|
||||
unsigned long __unused1;
|
||||
unsigned long __unused2;
|
||||
};
|
||||
|
||||
#endif /* _ALPHA_MSGBUF_H */
|
53
arch/alpha/include/uapi/asm/pal.h
Normal file
53
arch/alpha/include/uapi/asm/pal.h
Normal file
|
@ -0,0 +1,53 @@
|
|||
#ifndef _UAPI__ALPHA_PAL_H
|
||||
#define _UAPI__ALPHA_PAL_H
|
||||
|
||||
/*
|
||||
* Common PAL-code
|
||||
*/
|
||||
#define PAL_halt 0
|
||||
#define PAL_cflush 1
|
||||
#define PAL_draina 2
|
||||
#define PAL_bpt 128
|
||||
#define PAL_bugchk 129
|
||||
#define PAL_chmk 131
|
||||
#define PAL_callsys 131
|
||||
#define PAL_imb 134
|
||||
#define PAL_rduniq 158
|
||||
#define PAL_wruniq 159
|
||||
#define PAL_gentrap 170
|
||||
#define PAL_nphalt 190
|
||||
|
||||
/*
|
||||
* VMS specific PAL-code
|
||||
*/
|
||||
#define PAL_swppal 10
|
||||
#define PAL_mfpr_vptb 41
|
||||
|
||||
/*
|
||||
* OSF specific PAL-code
|
||||
*/
|
||||
#define PAL_cserve 9
|
||||
#define PAL_wripir 13
|
||||
#define PAL_rdmces 16
|
||||
#define PAL_wrmces 17
|
||||
#define PAL_wrfen 43
|
||||
#define PAL_wrvptptr 45
|
||||
#define PAL_jtopal 46
|
||||
#define PAL_swpctx 48
|
||||
#define PAL_wrval 49
|
||||
#define PAL_rdval 50
|
||||
#define PAL_tbi 51
|
||||
#define PAL_wrent 52
|
||||
#define PAL_swpipl 53
|
||||
#define PAL_rdps 54
|
||||
#define PAL_wrkgp 55
|
||||
#define PAL_wrusp 56
|
||||
#define PAL_wrperfmon 57
|
||||
#define PAL_rdusp 58
|
||||
#define PAL_whami 60
|
||||
#define PAL_retsys 61
|
||||
#define PAL_wtint 62
|
||||
#define PAL_rti 63
|
||||
|
||||
|
||||
#endif /* _UAPI__ALPHA_PAL_H */
|
14
arch/alpha/include/uapi/asm/param.h
Normal file
14
arch/alpha/include/uapi/asm/param.h
Normal file
|
@ -0,0 +1,14 @@
|
|||
#ifndef _UAPI_ASM_ALPHA_PARAM_H
|
||||
#define _UAPI_ASM_ALPHA_PARAM_H
|
||||
|
||||
#define HZ 1024
|
||||
|
||||
#define EXEC_PAGESIZE 8192
|
||||
|
||||
#ifndef NOGROUP
|
||||
#define NOGROUP (-1)
|
||||
#endif
|
||||
|
||||
#define MAXHOSTNAMELEN 64 /* max length of hostname */
|
||||
|
||||
#endif /* _UAPI_ASM_ALPHA_PARAM_H */
|
1
arch/alpha/include/uapi/asm/poll.h
Normal file
1
arch/alpha/include/uapi/asm/poll.h
Normal file
|
@ -0,0 +1 @@
|
|||
#include <asm-generic/poll.h>
|
17
arch/alpha/include/uapi/asm/posix_types.h
Normal file
17
arch/alpha/include/uapi/asm/posix_types.h
Normal file
|
@ -0,0 +1,17 @@
|
|||
#ifndef _ALPHA_POSIX_TYPES_H
|
||||
#define _ALPHA_POSIX_TYPES_H
|
||||
|
||||
/*
|
||||
* This file is generally used by user-level software, so you need to
|
||||
* be a little careful about namespace pollution etc. Also, we cannot
|
||||
* assume GCC is being used.
|
||||
*/
|
||||
|
||||
typedef unsigned int __kernel_ino_t;
|
||||
#define __kernel_ino_t __kernel_ino_t
|
||||
|
||||
typedef unsigned long __kernel_sigset_t; /* at least 32 bits */
|
||||
|
||||
#include <asm-generic/posix_types.h>
|
||||
|
||||
#endif /* _ALPHA_POSIX_TYPES_H */
|
70
arch/alpha/include/uapi/asm/ptrace.h
Normal file
70
arch/alpha/include/uapi/asm/ptrace.h
Normal file
|
@ -0,0 +1,70 @@
|
|||
#ifndef _UAPI_ASMAXP_PTRACE_H
|
||||
#define _UAPI_ASMAXP_PTRACE_H
|
||||
|
||||
|
||||
/*
|
||||
* This struct defines the way the registers are stored on the
|
||||
* kernel stack during a system call or other kernel entry
|
||||
*
|
||||
* NOTE! I want to minimize the overhead of system calls, so this
|
||||
* struct has as little information as possible. I does not have
|
||||
*
|
||||
* - floating point regs: the kernel doesn't change those
|
||||
* - r9-15: saved by the C compiler
|
||||
*
|
||||
* This makes "fork()" and "exec()" a bit more complex, but should
|
||||
* give us low system call latency.
|
||||
*/
|
||||
|
||||
struct pt_regs {
|
||||
unsigned long r0;
|
||||
unsigned long r1;
|
||||
unsigned long r2;
|
||||
unsigned long r3;
|
||||
unsigned long r4;
|
||||
unsigned long r5;
|
||||
unsigned long r6;
|
||||
unsigned long r7;
|
||||
unsigned long r8;
|
||||
unsigned long r19;
|
||||
unsigned long r20;
|
||||
unsigned long r21;
|
||||
unsigned long r22;
|
||||
unsigned long r23;
|
||||
unsigned long r24;
|
||||
unsigned long r25;
|
||||
unsigned long r26;
|
||||
unsigned long r27;
|
||||
unsigned long r28;
|
||||
unsigned long hae;
|
||||
/* JRP - These are the values provided to a0-a2 by PALcode */
|
||||
unsigned long trap_a0;
|
||||
unsigned long trap_a1;
|
||||
unsigned long trap_a2;
|
||||
/* These are saved by PAL-code: */
|
||||
unsigned long ps;
|
||||
unsigned long pc;
|
||||
unsigned long gp;
|
||||
unsigned long r16;
|
||||
unsigned long r17;
|
||||
unsigned long r18;
|
||||
};
|
||||
|
||||
/*
|
||||
* This is the extended stack used by signal handlers and the context
|
||||
* switcher: it's pushed after the normal "struct pt_regs".
|
||||
*/
|
||||
struct switch_stack {
|
||||
unsigned long r9;
|
||||
unsigned long r10;
|
||||
unsigned long r11;
|
||||
unsigned long r12;
|
||||
unsigned long r13;
|
||||
unsigned long r14;
|
||||
unsigned long r15;
|
||||
unsigned long r26;
|
||||
unsigned long fp[32]; /* fp[31] is fpcr */
|
||||
};
|
||||
|
||||
|
||||
#endif /* _UAPI_ASMAXP_PTRACE_H */
|
52
arch/alpha/include/uapi/asm/reg.h
Normal file
52
arch/alpha/include/uapi/asm/reg.h
Normal file
|
@ -0,0 +1,52 @@
|
|||
#ifndef __reg_h__
|
||||
#define __reg_h__
|
||||
|
||||
/*
|
||||
* Exception frame offsets.
|
||||
*/
|
||||
#define EF_V0 0
|
||||
#define EF_T0 1
|
||||
#define EF_T1 2
|
||||
#define EF_T2 3
|
||||
#define EF_T3 4
|
||||
#define EF_T4 5
|
||||
#define EF_T5 6
|
||||
#define EF_T6 7
|
||||
#define EF_T7 8
|
||||
#define EF_S0 9
|
||||
#define EF_S1 10
|
||||
#define EF_S2 11
|
||||
#define EF_S3 12
|
||||
#define EF_S4 13
|
||||
#define EF_S5 14
|
||||
#define EF_S6 15
|
||||
#define EF_A3 16
|
||||
#define EF_A4 17
|
||||
#define EF_A5 18
|
||||
#define EF_T8 19
|
||||
#define EF_T9 20
|
||||
#define EF_T10 21
|
||||
#define EF_T11 22
|
||||
#define EF_RA 23
|
||||
#define EF_T12 24
|
||||
#define EF_AT 25
|
||||
#define EF_SP 26
|
||||
#define EF_PS 27
|
||||
#define EF_PC 28
|
||||
#define EF_GP 29
|
||||
#define EF_A0 30
|
||||
#define EF_A1 31
|
||||
#define EF_A2 32
|
||||
|
||||
#define EF_SIZE (33*8)
|
||||
#define HWEF_SIZE (6*8) /* size of PAL frame (PS-A2) */
|
||||
|
||||
#define EF_SSIZE (EF_SIZE - HWEF_SIZE)
|
||||
|
||||
/*
|
||||
* Map register number into core file offset.
|
||||
*/
|
||||
#define CORE_REG(reg, ubase) \
|
||||
(((unsigned long *)((unsigned long)(ubase)))[reg])
|
||||
|
||||
#endif /* __reg_h__ */
|
44
arch/alpha/include/uapi/asm/regdef.h
Normal file
44
arch/alpha/include/uapi/asm/regdef.h
Normal file
|
@ -0,0 +1,44 @@
|
|||
#ifndef __alpha_regdef_h__
|
||||
#define __alpha_regdef_h__
|
||||
|
||||
#define v0 $0 /* function return value */
|
||||
|
||||
#define t0 $1 /* temporary registers (caller-saved) */
|
||||
#define t1 $2
|
||||
#define t2 $3
|
||||
#define t3 $4
|
||||
#define t4 $5
|
||||
#define t5 $6
|
||||
#define t6 $7
|
||||
#define t7 $8
|
||||
|
||||
#define s0 $9 /* saved-registers (callee-saved registers) */
|
||||
#define s1 $10
|
||||
#define s2 $11
|
||||
#define s3 $12
|
||||
#define s4 $13
|
||||
#define s5 $14
|
||||
#define s6 $15
|
||||
#define fp s6 /* frame-pointer (s6 in frame-less procedures) */
|
||||
|
||||
#define a0 $16 /* argument registers (caller-saved) */
|
||||
#define a1 $17
|
||||
#define a2 $18
|
||||
#define a3 $19
|
||||
#define a4 $20
|
||||
#define a5 $21
|
||||
|
||||
#define t8 $22 /* more temps (caller-saved) */
|
||||
#define t9 $23
|
||||
#define t10 $24
|
||||
#define t11 $25
|
||||
#define ra $26 /* return address register */
|
||||
#define t12 $27
|
||||
|
||||
#define pv t12 /* procedure-variable register */
|
||||
#define AT $at /* assembler temporary */
|
||||
#define gp $29 /* global pointer */
|
||||
#define sp $30 /* stack pointer */
|
||||
#define zero $31 /* reads as zero, writes are noops */
|
||||
|
||||
#endif /* __alpha_regdef_h__ */
|
22
arch/alpha/include/uapi/asm/resource.h
Normal file
22
arch/alpha/include/uapi/asm/resource.h
Normal file
|
@ -0,0 +1,22 @@
|
|||
#ifndef _ALPHA_RESOURCE_H
|
||||
#define _ALPHA_RESOURCE_H
|
||||
|
||||
/*
|
||||
* Alpha/Linux-specific ordering of these four resource limit IDs,
|
||||
* the rest comes from the generic header:
|
||||
*/
|
||||
#define RLIMIT_NOFILE 6 /* max number of open files */
|
||||
#define RLIMIT_AS 7 /* address space limit */
|
||||
#define RLIMIT_NPROC 8 /* max number of processes */
|
||||
#define RLIMIT_MEMLOCK 9 /* max locked-in-memory address space */
|
||||
|
||||
/*
|
||||
* SuS says limits have to be unsigned. Fine, it's unsigned, but
|
||||
* we retain the old value for compatibility, especially with DU.
|
||||
* When you run into the 2^63 barrier, you call me.
|
||||
*/
|
||||
#define RLIM_INFINITY 0x7ffffffffffffffful
|
||||
|
||||
#include <asm-generic/resource.h>
|
||||
|
||||
#endif /* _ALPHA_RESOURCE_H */
|
22
arch/alpha/include/uapi/asm/sembuf.h
Normal file
22
arch/alpha/include/uapi/asm/sembuf.h
Normal file
|
@ -0,0 +1,22 @@
|
|||
#ifndef _ALPHA_SEMBUF_H
|
||||
#define _ALPHA_SEMBUF_H
|
||||
|
||||
/*
|
||||
* The semid64_ds structure for alpha architecture.
|
||||
* Note extra padding because this structure is passed back and forth
|
||||
* between kernel and user space.
|
||||
*
|
||||
* Pad space is left for:
|
||||
* - 2 miscellaneous 64-bit values
|
||||
*/
|
||||
|
||||
struct semid64_ds {
|
||||
struct ipc64_perm sem_perm; /* permissions .. see ipc.h */
|
||||
__kernel_time_t sem_otime; /* last semop time */
|
||||
__kernel_time_t sem_ctime; /* last change time */
|
||||
unsigned long sem_nsems; /* no. of semaphores in array */
|
||||
unsigned long __unused1;
|
||||
unsigned long __unused2;
|
||||
};
|
||||
|
||||
#endif /* _ALPHA_SEMBUF_H */
|
42
arch/alpha/include/uapi/asm/setup.h
Normal file
42
arch/alpha/include/uapi/asm/setup.h
Normal file
|
@ -0,0 +1,42 @@
|
|||
#ifndef __ALPHA_SETUP_H
|
||||
#define __ALPHA_SETUP_H
|
||||
|
||||
#define COMMAND_LINE_SIZE 256
|
||||
|
||||
/*
|
||||
* We leave one page for the initial stack page, and one page for
|
||||
* the initial process structure. Also, the console eats 3 MB for
|
||||
* the initial bootloader (one of which we can reclaim later).
|
||||
*/
|
||||
#define BOOT_PCB 0x20000000
|
||||
#define BOOT_ADDR 0x20000000
|
||||
/* Remove when official MILO sources have ELF support: */
|
||||
#define BOOT_SIZE (16*1024)
|
||||
|
||||
#ifdef CONFIG_ALPHA_LEGACY_START_ADDRESS
|
||||
#define KERNEL_START_PHYS 0x300000 /* Old bootloaders hardcoded this. */
|
||||
#else
|
||||
#define KERNEL_START_PHYS 0x1000000 /* required: Wildfire/Titan/Marvel */
|
||||
#endif
|
||||
|
||||
#define KERNEL_START (PAGE_OFFSET+KERNEL_START_PHYS)
|
||||
#define SWAPPER_PGD KERNEL_START
|
||||
#define INIT_STACK (PAGE_OFFSET+KERNEL_START_PHYS+0x02000)
|
||||
#define EMPTY_PGT (PAGE_OFFSET+KERNEL_START_PHYS+0x04000)
|
||||
#define EMPTY_PGE (PAGE_OFFSET+KERNEL_START_PHYS+0x08000)
|
||||
#define ZERO_PGE (PAGE_OFFSET+KERNEL_START_PHYS+0x0A000)
|
||||
|
||||
#define START_ADDR (PAGE_OFFSET+KERNEL_START_PHYS+0x10000)
|
||||
|
||||
/*
|
||||
* This is setup by the secondary bootstrap loader. Because
|
||||
* the zero page is zeroed out as soon as the vm system is
|
||||
* initialized, we need to copy things out into a more permanent
|
||||
* place.
|
||||
*/
|
||||
#define PARAM ZERO_PGE
|
||||
#define COMMAND_LINE ((char*)(PARAM + 0x0000))
|
||||
#define INITRD_START (*(unsigned long *) (PARAM+0x100))
|
||||
#define INITRD_SIZE (*(unsigned long *) (PARAM+0x108))
|
||||
|
||||
#endif
|
38
arch/alpha/include/uapi/asm/shmbuf.h
Normal file
38
arch/alpha/include/uapi/asm/shmbuf.h
Normal file
|
@ -0,0 +1,38 @@
|
|||
#ifndef _ALPHA_SHMBUF_H
|
||||
#define _ALPHA_SHMBUF_H
|
||||
|
||||
/*
|
||||
* The shmid64_ds structure for alpha architecture.
|
||||
* Note extra padding because this structure is passed back and forth
|
||||
* between kernel and user space.
|
||||
*
|
||||
* Pad space is left for:
|
||||
* - 2 miscellaneous 64-bit values
|
||||
*/
|
||||
|
||||
struct shmid64_ds {
|
||||
struct ipc64_perm shm_perm; /* operation perms */
|
||||
size_t shm_segsz; /* size of segment (bytes) */
|
||||
__kernel_time_t shm_atime; /* last attach time */
|
||||
__kernel_time_t shm_dtime; /* last detach time */
|
||||
__kernel_time_t shm_ctime; /* last change time */
|
||||
__kernel_pid_t shm_cpid; /* pid of creator */
|
||||
__kernel_pid_t shm_lpid; /* pid of last operator */
|
||||
unsigned long shm_nattch; /* no. of current attaches */
|
||||
unsigned long __unused1;
|
||||
unsigned long __unused2;
|
||||
};
|
||||
|
||||
struct shminfo64 {
|
||||
unsigned long shmmax;
|
||||
unsigned long shmmin;
|
||||
unsigned long shmmni;
|
||||
unsigned long shmseg;
|
||||
unsigned long shmall;
|
||||
unsigned long __unused1;
|
||||
unsigned long __unused2;
|
||||
unsigned long __unused3;
|
||||
unsigned long __unused4;
|
||||
};
|
||||
|
||||
#endif /* _ALPHA_SHMBUF_H */
|
34
arch/alpha/include/uapi/asm/sigcontext.h
Normal file
34
arch/alpha/include/uapi/asm/sigcontext.h
Normal file
|
@ -0,0 +1,34 @@
|
|||
#ifndef _ASMAXP_SIGCONTEXT_H
|
||||
#define _ASMAXP_SIGCONTEXT_H
|
||||
|
||||
struct sigcontext {
|
||||
/*
|
||||
* What should we have here? I'd probably better use the same
|
||||
* stack layout as OSF/1, just in case we ever want to try
|
||||
* running their binaries..
|
||||
*
|
||||
* This is the basic layout, but I don't know if we'll ever
|
||||
* actually fill in all the values..
|
||||
*/
|
||||
long sc_onstack;
|
||||
long sc_mask;
|
||||
long sc_pc;
|
||||
long sc_ps;
|
||||
long sc_regs[32];
|
||||
long sc_ownedfp;
|
||||
long sc_fpregs[32];
|
||||
unsigned long sc_fpcr;
|
||||
unsigned long sc_fp_control;
|
||||
unsigned long sc_reserved1, sc_reserved2;
|
||||
unsigned long sc_ssize;
|
||||
char * sc_sbase;
|
||||
unsigned long sc_traparg_a0;
|
||||
unsigned long sc_traparg_a1;
|
||||
unsigned long sc_traparg_a2;
|
||||
unsigned long sc_fp_trap_pc;
|
||||
unsigned long sc_fp_trigger_sum;
|
||||
unsigned long sc_fp_trigger_inst;
|
||||
};
|
||||
|
||||
|
||||
#endif
|
9
arch/alpha/include/uapi/asm/siginfo.h
Normal file
9
arch/alpha/include/uapi/asm/siginfo.h
Normal file
|
@ -0,0 +1,9 @@
|
|||
#ifndef _ALPHA_SIGINFO_H
|
||||
#define _ALPHA_SIGINFO_H
|
||||
|
||||
#define __ARCH_SI_PREAMBLE_SIZE (4 * sizeof(int))
|
||||
#define __ARCH_SI_TRAPNO
|
||||
|
||||
#include <asm-generic/siginfo.h>
|
||||
|
||||
#endif
|
129
arch/alpha/include/uapi/asm/signal.h
Normal file
129
arch/alpha/include/uapi/asm/signal.h
Normal file
|
@ -0,0 +1,129 @@
|
|||
#ifndef _UAPI_ASMAXP_SIGNAL_H
|
||||
#define _UAPI_ASMAXP_SIGNAL_H
|
||||
|
||||
#include <linux/types.h>
|
||||
|
||||
/* Avoid too many header ordering problems. */
|
||||
struct siginfo;
|
||||
|
||||
#ifndef __KERNEL__
|
||||
/* Here we must cater to libcs that poke about in kernel headers. */
|
||||
|
||||
#define NSIG 32
|
||||
typedef unsigned long sigset_t;
|
||||
|
||||
#endif /* __KERNEL__ */
|
||||
|
||||
|
||||
/*
|
||||
* Linux/AXP has different signal numbers that Linux/i386: I'm trying
|
||||
* to make it OSF/1 binary compatible, at least for normal binaries.
|
||||
*/
|
||||
#define SIGHUP 1
|
||||
#define SIGINT 2
|
||||
#define SIGQUIT 3
|
||||
#define SIGILL 4
|
||||
#define SIGTRAP 5
|
||||
#define SIGABRT 6
|
||||
#define SIGEMT 7
|
||||
#define SIGFPE 8
|
||||
#define SIGKILL 9
|
||||
#define SIGBUS 10
|
||||
#define SIGSEGV 11
|
||||
#define SIGSYS 12
|
||||
#define SIGPIPE 13
|
||||
#define SIGALRM 14
|
||||
#define SIGTERM 15
|
||||
#define SIGURG 16
|
||||
#define SIGSTOP 17
|
||||
#define SIGTSTP 18
|
||||
#define SIGCONT 19
|
||||
#define SIGCHLD 20
|
||||
#define SIGTTIN 21
|
||||
#define SIGTTOU 22
|
||||
#define SIGIO 23
|
||||
#define SIGXCPU 24
|
||||
#define SIGXFSZ 25
|
||||
#define SIGVTALRM 26
|
||||
#define SIGPROF 27
|
||||
#define SIGWINCH 28
|
||||
#define SIGINFO 29
|
||||
#define SIGUSR1 30
|
||||
#define SIGUSR2 31
|
||||
|
||||
#define SIGPOLL SIGIO
|
||||
#define SIGPWR SIGINFO
|
||||
#define SIGIOT SIGABRT
|
||||
|
||||
/* These should not be considered constants from userland. */
|
||||
#define SIGRTMIN 32
|
||||
#define SIGRTMAX _NSIG
|
||||
|
||||
/*
|
||||
* SA_FLAGS values:
|
||||
*
|
||||
* SA_ONSTACK indicates that a registered stack_t will be used.
|
||||
* SA_RESTART flag to get restarting signals (which were the default long ago)
|
||||
* SA_NOCLDSTOP flag to turn off SIGCHLD when children stop.
|
||||
* SA_RESETHAND clears the handler when the signal is delivered.
|
||||
* SA_NOCLDWAIT flag on SIGCHLD to inhibit zombies.
|
||||
* SA_NODEFER prevents the current signal from being masked in the handler.
|
||||
*
|
||||
* SA_ONESHOT and SA_NOMASK are the historical Linux names for the Single
|
||||
* Unix names RESETHAND and NODEFER respectively.
|
||||
*/
|
||||
|
||||
#define SA_ONSTACK 0x00000001
|
||||
#define SA_RESTART 0x00000002
|
||||
#define SA_NOCLDSTOP 0x00000004
|
||||
#define SA_NODEFER 0x00000008
|
||||
#define SA_RESETHAND 0x00000010
|
||||
#define SA_NOCLDWAIT 0x00000020
|
||||
#define SA_SIGINFO 0x00000040
|
||||
|
||||
#define SA_ONESHOT SA_RESETHAND
|
||||
#define SA_NOMASK SA_NODEFER
|
||||
|
||||
#define MINSIGSTKSZ 4096
|
||||
#define SIGSTKSZ 16384
|
||||
|
||||
#define SIG_BLOCK 1 /* for blocking signals */
|
||||
#define SIG_UNBLOCK 2 /* for unblocking signals */
|
||||
#define SIG_SETMASK 3 /* for setting the signal mask */
|
||||
|
||||
#include <asm-generic/signal-defs.h>
|
||||
|
||||
#ifndef __KERNEL__
|
||||
/* Here we must cater to libcs that poke about in kernel headers. */
|
||||
|
||||
struct sigaction {
|
||||
union {
|
||||
__sighandler_t _sa_handler;
|
||||
void (*_sa_sigaction)(int, struct siginfo *, void *);
|
||||
} _u;
|
||||
sigset_t sa_mask;
|
||||
int sa_flags;
|
||||
};
|
||||
|
||||
#define sa_handler _u._sa_handler
|
||||
#define sa_sigaction _u._sa_sigaction
|
||||
|
||||
#endif /* __KERNEL__ */
|
||||
|
||||
typedef struct sigaltstack {
|
||||
void __user *ss_sp;
|
||||
int ss_flags;
|
||||
size_t ss_size;
|
||||
} stack_t;
|
||||
|
||||
/* sigstack(2) is deprecated, and will be withdrawn in a future version
|
||||
of the X/Open CAE Specification. Use sigaltstack instead. It is only
|
||||
implemented here for OSF/1 compatibility. */
|
||||
|
||||
struct sigstack {
|
||||
void __user *ss_sp;
|
||||
int ss_onstack;
|
||||
};
|
||||
|
||||
|
||||
#endif /* _UAPI_ASMAXP_SIGNAL_H */
|
90
arch/alpha/include/uapi/asm/socket.h
Normal file
90
arch/alpha/include/uapi/asm/socket.h
Normal file
|
@ -0,0 +1,90 @@
|
|||
#ifndef _UAPI_ASM_SOCKET_H
|
||||
#define _UAPI_ASM_SOCKET_H
|
||||
|
||||
#include <asm/sockios.h>
|
||||
|
||||
/* For setsockopt(2) */
|
||||
/*
|
||||
* Note: we only bother about making the SOL_SOCKET options
|
||||
* same as OSF/1, as that's all that "normal" programs are
|
||||
* likely to set. We don't necessarily want to be binary
|
||||
* compatible with _everything_.
|
||||
*/
|
||||
#define SOL_SOCKET 0xffff
|
||||
|
||||
#define SO_DEBUG 0x0001
|
||||
#define SO_REUSEADDR 0x0004
|
||||
#define SO_KEEPALIVE 0x0008
|
||||
#define SO_DONTROUTE 0x0010
|
||||
#define SO_BROADCAST 0x0020
|
||||
#define SO_LINGER 0x0080
|
||||
#define SO_OOBINLINE 0x0100
|
||||
#define SO_REUSEPORT 0x0200
|
||||
|
||||
#define SO_TYPE 0x1008
|
||||
#define SO_ERROR 0x1007
|
||||
#define SO_SNDBUF 0x1001
|
||||
#define SO_RCVBUF 0x1002
|
||||
#define SO_SNDBUFFORCE 0x100a
|
||||
#define SO_RCVBUFFORCE 0x100b
|
||||
#define SO_RCVLOWAT 0x1010
|
||||
#define SO_SNDLOWAT 0x1011
|
||||
#define SO_RCVTIMEO 0x1012
|
||||
#define SO_SNDTIMEO 0x1013
|
||||
#define SO_ACCEPTCONN 0x1014
|
||||
#define SO_PROTOCOL 0x1028
|
||||
#define SO_DOMAIN 0x1029
|
||||
|
||||
/* linux-specific, might as well be the same as on i386 */
|
||||
#define SO_NO_CHECK 11
|
||||
#define SO_PRIORITY 12
|
||||
#define SO_BSDCOMPAT 14
|
||||
|
||||
#define SO_PASSCRED 17
|
||||
#define SO_PEERCRED 18
|
||||
#define SO_BINDTODEVICE 25
|
||||
|
||||
/* Socket filtering */
|
||||
#define SO_ATTACH_FILTER 26
|
||||
#define SO_DETACH_FILTER 27
|
||||
#define SO_GET_FILTER SO_ATTACH_FILTER
|
||||
|
||||
#define SO_PEERNAME 28
|
||||
#define SO_TIMESTAMP 29
|
||||
#define SCM_TIMESTAMP SO_TIMESTAMP
|
||||
|
||||
#define SO_PEERSEC 30
|
||||
#define SO_PASSSEC 34
|
||||
#define SO_TIMESTAMPNS 35
|
||||
#define SCM_TIMESTAMPNS SO_TIMESTAMPNS
|
||||
|
||||
/* Security levels - as per NRL IPv6 - don't actually do anything */
|
||||
#define SO_SECURITY_AUTHENTICATION 19
|
||||
#define SO_SECURITY_ENCRYPTION_TRANSPORT 20
|
||||
#define SO_SECURITY_ENCRYPTION_NETWORK 21
|
||||
|
||||
#define SO_MARK 36
|
||||
|
||||
#define SO_TIMESTAMPING 37
|
||||
#define SCM_TIMESTAMPING SO_TIMESTAMPING
|
||||
|
||||
#define SO_RXQ_OVFL 40
|
||||
|
||||
#define SO_WIFI_STATUS 41
|
||||
#define SCM_WIFI_STATUS SO_WIFI_STATUS
|
||||
#define SO_PEEK_OFF 42
|
||||
|
||||
/* Instruct lower device to use last 4-bytes of skb data as FCS */
|
||||
#define SO_NOFCS 43
|
||||
|
||||
#define SO_LOCK_FILTER 44
|
||||
|
||||
#define SO_SELECT_ERR_QUEUE 45
|
||||
|
||||
#define SO_BUSY_POLL 46
|
||||
|
||||
#define SO_MAX_PACING_RATE 47
|
||||
|
||||
#define SO_BPF_EXTENSIONS 48
|
||||
|
||||
#endif /* _UAPI_ASM_SOCKET_H */
|
16
arch/alpha/include/uapi/asm/sockios.h
Normal file
16
arch/alpha/include/uapi/asm/sockios.h
Normal file
|
@ -0,0 +1,16 @@
|
|||
#ifndef _ASM_ALPHA_SOCKIOS_H
|
||||
#define _ASM_ALPHA_SOCKIOS_H
|
||||
|
||||
/* Socket-level I/O control calls. */
|
||||
|
||||
#define FIOGETOWN _IOR('f', 123, int)
|
||||
#define FIOSETOWN _IOW('f', 124, int)
|
||||
|
||||
#define SIOCATMARK _IOR('s', 7, int)
|
||||
#define SIOCSPGRP _IOW('s', 8, pid_t)
|
||||
#define SIOCGPGRP _IOR('s', 9, pid_t)
|
||||
|
||||
#define SIOCGSTAMP 0x8906 /* Get stamp (timeval) */
|
||||
#define SIOCGSTAMPNS 0x8907 /* Get stamp (timespec) */
|
||||
|
||||
#endif /* _ASM_ALPHA_SOCKIOS_H */
|
48
arch/alpha/include/uapi/asm/stat.h
Normal file
48
arch/alpha/include/uapi/asm/stat.h
Normal file
|
@ -0,0 +1,48 @@
|
|||
#ifndef _ALPHA_STAT_H
|
||||
#define _ALPHA_STAT_H
|
||||
|
||||
struct stat {
|
||||
unsigned int st_dev;
|
||||
unsigned int st_ino;
|
||||
unsigned int st_mode;
|
||||
unsigned int st_nlink;
|
||||
unsigned int st_uid;
|
||||
unsigned int st_gid;
|
||||
unsigned int st_rdev;
|
||||
long st_size;
|
||||
unsigned long st_atime;
|
||||
unsigned long st_mtime;
|
||||
unsigned long st_ctime;
|
||||
unsigned int st_blksize;
|
||||
unsigned int st_blocks;
|
||||
unsigned int st_flags;
|
||||
unsigned int st_gen;
|
||||
};
|
||||
|
||||
/* The stat64 structure increases the size of dev_t, blkcnt_t, adds
|
||||
nanosecond resolution times, and padding for expansion. */
|
||||
|
||||
struct stat64 {
|
||||
unsigned long st_dev;
|
||||
unsigned long st_ino;
|
||||
unsigned long st_rdev;
|
||||
long st_size;
|
||||
unsigned long st_blocks;
|
||||
|
||||
unsigned int st_mode;
|
||||
unsigned int st_uid;
|
||||
unsigned int st_gid;
|
||||
unsigned int st_blksize;
|
||||
unsigned int st_nlink;
|
||||
unsigned int __pad0;
|
||||
|
||||
unsigned long st_atime;
|
||||
unsigned long st_atime_nsec;
|
||||
unsigned long st_mtime;
|
||||
unsigned long st_mtime_nsec;
|
||||
unsigned long st_ctime;
|
||||
unsigned long st_ctime_nsec;
|
||||
long __unused[3];
|
||||
};
|
||||
|
||||
#endif
|
12
arch/alpha/include/uapi/asm/statfs.h
Normal file
12
arch/alpha/include/uapi/asm/statfs.h
Normal file
|
@ -0,0 +1,12 @@
|
|||
#ifndef _ALPHA_STATFS_H
|
||||
#define _ALPHA_STATFS_H
|
||||
|
||||
#include <linux/types.h>
|
||||
|
||||
/* Alpha is the only 64-bit platform with 32-bit statfs. And doesn't
|
||||
even seem to implement statfs64 */
|
||||
#define __statfs_word __u32
|
||||
|
||||
#include <asm-generic/statfs.h>
|
||||
|
||||
#endif
|
42
arch/alpha/include/uapi/asm/swab.h
Normal file
42
arch/alpha/include/uapi/asm/swab.h
Normal file
|
@ -0,0 +1,42 @@
|
|||
#ifndef _ALPHA_SWAB_H
|
||||
#define _ALPHA_SWAB_H
|
||||
|
||||
#include <linux/types.h>
|
||||
#include <linux/compiler.h>
|
||||
#include <asm/compiler.h>
|
||||
|
||||
#ifdef __GNUC__
|
||||
|
||||
static inline __attribute_const__ __u32 __arch_swab32(__u32 x)
|
||||
{
|
||||
/*
|
||||
* Unfortunately, we can't use the 6 instruction sequence
|
||||
* on ev6 since the latency of the UNPKBW is 3, which is
|
||||
* pretty hard to hide. Just in case a future implementation
|
||||
* has a lower latency, here's the sequence (also by Mike Burrows)
|
||||
*
|
||||
* UNPKBW a0, v0 v0: 00AA00BB00CC00DD
|
||||
* SLL v0, 24, a0 a0: BB00CC00DD000000
|
||||
* BIS v0, a0, a0 a0: BBAACCBBDDCC00DD
|
||||
* EXTWL a0, 6, v0 v0: 000000000000BBAA
|
||||
* ZAP a0, 0xf3, a0 a0: 00000000DDCC0000
|
||||
* ADDL a0, v0, v0 v0: ssssssssDDCCBBAA
|
||||
*/
|
||||
|
||||
__u64 t0, t1, t2, t3;
|
||||
|
||||
t0 = __kernel_inslh(x, 7); /* t0 : 0000000000AABBCC */
|
||||
t1 = __kernel_inswl(x, 3); /* t1 : 000000CCDD000000 */
|
||||
t1 |= t0; /* t1 : 000000CCDDAABBCC */
|
||||
t2 = t1 >> 16; /* t2 : 0000000000CCDDAA */
|
||||
t0 = t1 & 0xFF00FF00; /* t0 : 00000000DD00BB00 */
|
||||
t3 = t2 & 0x00FF00FF; /* t3 : 0000000000CC00AA */
|
||||
t1 = t0 + t3; /* t1 : ssssssssDDCCBBAA */
|
||||
|
||||
return t1;
|
||||
}
|
||||
#define __arch_swab32 __arch_swab32
|
||||
|
||||
#endif /* __GNUC__ */
|
||||
|
||||
#endif /* _ALPHA_SWAB_H */
|
31
arch/alpha/include/uapi/asm/sysinfo.h
Normal file
31
arch/alpha/include/uapi/asm/sysinfo.h
Normal file
|
@ -0,0 +1,31 @@
|
|||
/*
|
||||
* include/asm-alpha/sysinfo.h
|
||||
*/
|
||||
|
||||
#ifndef __ASM_ALPHA_SYSINFO_H
|
||||
#define __ASM_ALPHA_SYSINFO_H
|
||||
|
||||
/* This defines the subset of the OSF/1 getsysinfo/setsysinfo calls
|
||||
that we support. */
|
||||
|
||||
#define GSI_UACPROC 8
|
||||
#define GSI_IEEE_FP_CONTROL 45
|
||||
#define GSI_IEEE_STATE_AT_SIGNAL 46
|
||||
#define GSI_PROC_TYPE 60
|
||||
#define GSI_GET_HWRPB 101
|
||||
|
||||
#define SSI_NVPAIRS 1
|
||||
#define SSI_LMF 7
|
||||
#define SSI_IEEE_FP_CONTROL 14
|
||||
#define SSI_IEEE_STATE_AT_SIGNAL 15
|
||||
#define SSI_IEEE_IGNORE_STATE_AT_SIGNAL 16
|
||||
#define SSI_IEEE_RAISE_EXCEPTION 1001 /* linux specific */
|
||||
|
||||
#define SSIN_UACPROC 6
|
||||
|
||||
#define UAC_BITMASK 7
|
||||
#define UAC_NOPRINT 1
|
||||
#define UAC_NOFIX 2
|
||||
#define UAC_SIGBUS 4
|
||||
|
||||
#endif /* __ASM_ALPHA_SYSINFO_H */
|
201
arch/alpha/include/uapi/asm/termbits.h
Normal file
201
arch/alpha/include/uapi/asm/termbits.h
Normal file
|
@ -0,0 +1,201 @@
|
|||
#ifndef _ALPHA_TERMBITS_H
|
||||
#define _ALPHA_TERMBITS_H
|
||||
|
||||
#include <linux/posix_types.h>
|
||||
|
||||
typedef unsigned char cc_t;
|
||||
typedef unsigned int speed_t;
|
||||
typedef unsigned int tcflag_t;
|
||||
|
||||
/*
|
||||
* termios type and macro definitions. Be careful about adding stuff
|
||||
* to this file since it's used in GNU libc and there are strict rules
|
||||
* concerning namespace pollution.
|
||||
*/
|
||||
|
||||
#define NCCS 19
|
||||
struct termios {
|
||||
tcflag_t c_iflag; /* input mode flags */
|
||||
tcflag_t c_oflag; /* output mode flags */
|
||||
tcflag_t c_cflag; /* control mode flags */
|
||||
tcflag_t c_lflag; /* local mode flags */
|
||||
cc_t c_cc[NCCS]; /* control characters */
|
||||
cc_t c_line; /* line discipline (== c_cc[19]) */
|
||||
speed_t c_ispeed; /* input speed */
|
||||
speed_t c_ospeed; /* output speed */
|
||||
};
|
||||
|
||||
/* Alpha has matching termios and ktermios */
|
||||
|
||||
struct ktermios {
|
||||
tcflag_t c_iflag; /* input mode flags */
|
||||
tcflag_t c_oflag; /* output mode flags */
|
||||
tcflag_t c_cflag; /* control mode flags */
|
||||
tcflag_t c_lflag; /* local mode flags */
|
||||
cc_t c_cc[NCCS]; /* control characters */
|
||||
cc_t c_line; /* line discipline (== c_cc[19]) */
|
||||
speed_t c_ispeed; /* input speed */
|
||||
speed_t c_ospeed; /* output speed */
|
||||
};
|
||||
|
||||
/* c_cc characters */
|
||||
#define VEOF 0
|
||||
#define VEOL 1
|
||||
#define VEOL2 2
|
||||
#define VERASE 3
|
||||
#define VWERASE 4
|
||||
#define VKILL 5
|
||||
#define VREPRINT 6
|
||||
#define VSWTC 7
|
||||
#define VINTR 8
|
||||
#define VQUIT 9
|
||||
#define VSUSP 10
|
||||
#define VSTART 12
|
||||
#define VSTOP 13
|
||||
#define VLNEXT 14
|
||||
#define VDISCARD 15
|
||||
#define VMIN 16
|
||||
#define VTIME 17
|
||||
|
||||
/* c_iflag bits */
|
||||
#define IGNBRK 0000001
|
||||
#define BRKINT 0000002
|
||||
#define IGNPAR 0000004
|
||||
#define PARMRK 0000010
|
||||
#define INPCK 0000020
|
||||
#define ISTRIP 0000040
|
||||
#define INLCR 0000100
|
||||
#define IGNCR 0000200
|
||||
#define ICRNL 0000400
|
||||
#define IXON 0001000
|
||||
#define IXOFF 0002000
|
||||
#define IXANY 0004000
|
||||
#define IUCLC 0010000
|
||||
#define IMAXBEL 0020000
|
||||
#define IUTF8 0040000
|
||||
|
||||
/* c_oflag bits */
|
||||
#define OPOST 0000001
|
||||
#define ONLCR 0000002
|
||||
#define OLCUC 0000004
|
||||
|
||||
#define OCRNL 0000010
|
||||
#define ONOCR 0000020
|
||||
#define ONLRET 0000040
|
||||
|
||||
#define OFILL 00000100
|
||||
#define OFDEL 00000200
|
||||
#define NLDLY 00001400
|
||||
#define NL0 00000000
|
||||
#define NL1 00000400
|
||||
#define NL2 00001000
|
||||
#define NL3 00001400
|
||||
#define TABDLY 00006000
|
||||
#define TAB0 00000000
|
||||
#define TAB1 00002000
|
||||
#define TAB2 00004000
|
||||
#define TAB3 00006000
|
||||
#define CRDLY 00030000
|
||||
#define CR0 00000000
|
||||
#define CR1 00010000
|
||||
#define CR2 00020000
|
||||
#define CR3 00030000
|
||||
#define FFDLY 00040000
|
||||
#define FF0 00000000
|
||||
#define FF1 00040000
|
||||
#define BSDLY 00100000
|
||||
#define BS0 00000000
|
||||
#define BS1 00100000
|
||||
#define VTDLY 00200000
|
||||
#define VT0 00000000
|
||||
#define VT1 00200000
|
||||
#define XTABS 01000000 /* Hmm.. Linux/i386 considers this part of TABDLY.. */
|
||||
|
||||
/* c_cflag bit meaning */
|
||||
#define CBAUD 0000037
|
||||
#define B0 0000000 /* hang up */
|
||||
#define B50 0000001
|
||||
#define B75 0000002
|
||||
#define B110 0000003
|
||||
#define B134 0000004
|
||||
#define B150 0000005
|
||||
#define B200 0000006
|
||||
#define B300 0000007
|
||||
#define B600 0000010
|
||||
#define B1200 0000011
|
||||
#define B1800 0000012
|
||||
#define B2400 0000013
|
||||
#define B4800 0000014
|
||||
#define B9600 0000015
|
||||
#define B19200 0000016
|
||||
#define B38400 0000017
|
||||
#define EXTA B19200
|
||||
#define EXTB B38400
|
||||
#define CBAUDEX 0000000
|
||||
#define B57600 00020
|
||||
#define B115200 00021
|
||||
#define B230400 00022
|
||||
#define B460800 00023
|
||||
#define B500000 00024
|
||||
#define B576000 00025
|
||||
#define B921600 00026
|
||||
#define B1000000 00027
|
||||
#define B1152000 00030
|
||||
#define B1500000 00031
|
||||
#define B2000000 00032
|
||||
#define B2500000 00033
|
||||
#define B3000000 00034
|
||||
#define B3500000 00035
|
||||
#define B4000000 00036
|
||||
|
||||
#define CSIZE 00001400
|
||||
#define CS5 00000000
|
||||
#define CS6 00000400
|
||||
#define CS7 00001000
|
||||
#define CS8 00001400
|
||||
|
||||
#define CSTOPB 00002000
|
||||
#define CREAD 00004000
|
||||
#define PARENB 00010000
|
||||
#define PARODD 00020000
|
||||
#define HUPCL 00040000
|
||||
|
||||
#define CLOCAL 00100000
|
||||
#define CMSPAR 010000000000 /* mark or space (stick) parity */
|
||||
#define CRTSCTS 020000000000 /* flow control */
|
||||
|
||||
/* c_lflag bits */
|
||||
#define ISIG 0x00000080
|
||||
#define ICANON 0x00000100
|
||||
#define XCASE 0x00004000
|
||||
#define ECHO 0x00000008
|
||||
#define ECHOE 0x00000002
|
||||
#define ECHOK 0x00000004
|
||||
#define ECHONL 0x00000010
|
||||
#define NOFLSH 0x80000000
|
||||
#define TOSTOP 0x00400000
|
||||
#define ECHOCTL 0x00000040
|
||||
#define ECHOPRT 0x00000020
|
||||
#define ECHOKE 0x00000001
|
||||
#define FLUSHO 0x00800000
|
||||
#define PENDIN 0x20000000
|
||||
#define IEXTEN 0x00000400
|
||||
#define EXTPROC 0x10000000
|
||||
|
||||
/* Values for the ACTION argument to `tcflow'. */
|
||||
#define TCOOFF 0
|
||||
#define TCOON 1
|
||||
#define TCIOFF 2
|
||||
#define TCION 3
|
||||
|
||||
/* Values for the QUEUE_SELECTOR argument to `tcflush'. */
|
||||
#define TCIFLUSH 0
|
||||
#define TCOFLUSH 1
|
||||
#define TCIOFLUSH 2
|
||||
|
||||
/* Values for the OPTIONAL_ACTIONS argument to `tcsetattr'. */
|
||||
#define TCSANOW 0
|
||||
#define TCSADRAIN 1
|
||||
#define TCSAFLUSH 2
|
||||
|
||||
#endif /* _ALPHA_TERMBITS_H */
|
70
arch/alpha/include/uapi/asm/termios.h
Normal file
70
arch/alpha/include/uapi/asm/termios.h
Normal file
|
@ -0,0 +1,70 @@
|
|||
#ifndef _UAPI_ALPHA_TERMIOS_H
|
||||
#define _UAPI_ALPHA_TERMIOS_H
|
||||
|
||||
#include <asm/ioctls.h>
|
||||
#include <asm/termbits.h>
|
||||
|
||||
struct sgttyb {
|
||||
char sg_ispeed;
|
||||
char sg_ospeed;
|
||||
char sg_erase;
|
||||
char sg_kill;
|
||||
short sg_flags;
|
||||
};
|
||||
|
||||
struct tchars {
|
||||
char t_intrc;
|
||||
char t_quitc;
|
||||
char t_startc;
|
||||
char t_stopc;
|
||||
char t_eofc;
|
||||
char t_brkc;
|
||||
};
|
||||
|
||||
struct ltchars {
|
||||
char t_suspc;
|
||||
char t_dsuspc;
|
||||
char t_rprntc;
|
||||
char t_flushc;
|
||||
char t_werasc;
|
||||
char t_lnextc;
|
||||
};
|
||||
|
||||
struct winsize {
|
||||
unsigned short ws_row;
|
||||
unsigned short ws_col;
|
||||
unsigned short ws_xpixel;
|
||||
unsigned short ws_ypixel;
|
||||
};
|
||||
|
||||
#define NCC 8
|
||||
struct termio {
|
||||
unsigned short c_iflag; /* input mode flags */
|
||||
unsigned short c_oflag; /* output mode flags */
|
||||
unsigned short c_cflag; /* control mode flags */
|
||||
unsigned short c_lflag; /* local mode flags */
|
||||
unsigned char c_line; /* line discipline */
|
||||
unsigned char c_cc[NCC]; /* control characters */
|
||||
};
|
||||
|
||||
/*
|
||||
* c_cc characters in the termio structure. Oh, how I love being
|
||||
* backwardly compatible. Notice that character 4 and 5 are
|
||||
* interpreted differently depending on whether ICANON is set in
|
||||
* c_lflag. If it's set, they are used as _VEOF and _VEOL, otherwise
|
||||
* as _VMIN and V_TIME. This is for compatibility with OSF/1 (which
|
||||
* is compatible with sysV)...
|
||||
*/
|
||||
#define _VINTR 0
|
||||
#define _VQUIT 1
|
||||
#define _VERASE 2
|
||||
#define _VKILL 3
|
||||
#define _VEOF 4
|
||||
#define _VMIN 4
|
||||
#define _VEOL 5
|
||||
#define _VTIME 5
|
||||
#define _VEOL2 6
|
||||
#define _VSWTC 7
|
||||
|
||||
|
||||
#endif /* _UAPI_ALPHA_TERMIOS_H */
|
16
arch/alpha/include/uapi/asm/types.h
Normal file
16
arch/alpha/include/uapi/asm/types.h
Normal file
|
@ -0,0 +1,16 @@
|
|||
#ifndef _UAPI_ALPHA_TYPES_H
|
||||
#define _UAPI_ALPHA_TYPES_H
|
||||
|
||||
/*
|
||||
* This file is never included by application software unless
|
||||
* explicitly requested (e.g., via linux/types.h) in which case the
|
||||
* application is Linux specific so (user-) name space pollution is
|
||||
* not a major issue. However, for interoperability, libraries still
|
||||
* need to be careful to avoid a name clashes.
|
||||
*/
|
||||
|
||||
#ifndef __KERNEL__
|
||||
#include <asm-generic/int-l64.h>
|
||||
#endif
|
||||
|
||||
#endif /* _UAPI_ALPHA_TYPES_H */
|
476
arch/alpha/include/uapi/asm/unistd.h
Normal file
476
arch/alpha/include/uapi/asm/unistd.h
Normal file
|
@ -0,0 +1,476 @@
|
|||
#ifndef _UAPI_ALPHA_UNISTD_H
|
||||
#define _UAPI_ALPHA_UNISTD_H
|
||||
|
||||
#define __NR_osf_syscall 0 /* not implemented */
|
||||
#define __NR_exit 1
|
||||
#define __NR_fork 2
|
||||
#define __NR_read 3
|
||||
#define __NR_write 4
|
||||
#define __NR_osf_old_open 5 /* not implemented */
|
||||
#define __NR_close 6
|
||||
#define __NR_osf_wait4 7
|
||||
#define __NR_osf_old_creat 8 /* not implemented */
|
||||
#define __NR_link 9
|
||||
#define __NR_unlink 10
|
||||
#define __NR_osf_execve 11 /* not implemented */
|
||||
#define __NR_chdir 12
|
||||
#define __NR_fchdir 13
|
||||
#define __NR_mknod 14
|
||||
#define __NR_chmod 15
|
||||
#define __NR_chown 16
|
||||
#define __NR_brk 17
|
||||
#define __NR_osf_getfsstat 18 /* not implemented */
|
||||
#define __NR_lseek 19
|
||||
#define __NR_getxpid 20
|
||||
#define __NR_osf_mount 21
|
||||
#define __NR_umount 22
|
||||
#define __NR_setuid 23
|
||||
#define __NR_getxuid 24
|
||||
#define __NR_exec_with_loader 25 /* not implemented */
|
||||
#define __NR_ptrace 26
|
||||
#define __NR_osf_nrecvmsg 27 /* not implemented */
|
||||
#define __NR_osf_nsendmsg 28 /* not implemented */
|
||||
#define __NR_osf_nrecvfrom 29 /* not implemented */
|
||||
#define __NR_osf_naccept 30 /* not implemented */
|
||||
#define __NR_osf_ngetpeername 31 /* not implemented */
|
||||
#define __NR_osf_ngetsockname 32 /* not implemented */
|
||||
#define __NR_access 33
|
||||
#define __NR_osf_chflags 34 /* not implemented */
|
||||
#define __NR_osf_fchflags 35 /* not implemented */
|
||||
#define __NR_sync 36
|
||||
#define __NR_kill 37
|
||||
#define __NR_osf_old_stat 38 /* not implemented */
|
||||
#define __NR_setpgid 39
|
||||
#define __NR_osf_old_lstat 40 /* not implemented */
|
||||
#define __NR_dup 41
|
||||
#define __NR_pipe 42
|
||||
#define __NR_osf_set_program_attributes 43
|
||||
#define __NR_osf_profil 44 /* not implemented */
|
||||
#define __NR_open 45
|
||||
#define __NR_osf_old_sigaction 46 /* not implemented */
|
||||
#define __NR_getxgid 47
|
||||
#define __NR_osf_sigprocmask 48
|
||||
#define __NR_osf_getlogin 49 /* not implemented */
|
||||
#define __NR_osf_setlogin 50 /* not implemented */
|
||||
#define __NR_acct 51
|
||||
#define __NR_sigpending 52
|
||||
|
||||
#define __NR_ioctl 54
|
||||
#define __NR_osf_reboot 55 /* not implemented */
|
||||
#define __NR_osf_revoke 56 /* not implemented */
|
||||
#define __NR_symlink 57
|
||||
#define __NR_readlink 58
|
||||
#define __NR_execve 59
|
||||
#define __NR_umask 60
|
||||
#define __NR_chroot 61
|
||||
#define __NR_osf_old_fstat 62 /* not implemented */
|
||||
#define __NR_getpgrp 63
|
||||
#define __NR_getpagesize 64
|
||||
#define __NR_osf_mremap 65 /* not implemented */
|
||||
#define __NR_vfork 66
|
||||
#define __NR_stat 67
|
||||
#define __NR_lstat 68
|
||||
#define __NR_osf_sbrk 69 /* not implemented */
|
||||
#define __NR_osf_sstk 70 /* not implemented */
|
||||
#define __NR_mmap 71 /* OSF/1 mmap is superset of Linux */
|
||||
#define __NR_osf_old_vadvise 72 /* not implemented */
|
||||
#define __NR_munmap 73
|
||||
#define __NR_mprotect 74
|
||||
#define __NR_madvise 75
|
||||
#define __NR_vhangup 76
|
||||
#define __NR_osf_kmodcall 77 /* not implemented */
|
||||
#define __NR_osf_mincore 78 /* not implemented */
|
||||
#define __NR_getgroups 79
|
||||
#define __NR_setgroups 80
|
||||
#define __NR_osf_old_getpgrp 81 /* not implemented */
|
||||
#define __NR_setpgrp 82 /* BSD alias for setpgid */
|
||||
#define __NR_osf_setitimer 83
|
||||
#define __NR_osf_old_wait 84 /* not implemented */
|
||||
#define __NR_osf_table 85 /* not implemented */
|
||||
#define __NR_osf_getitimer 86
|
||||
#define __NR_gethostname 87
|
||||
#define __NR_sethostname 88
|
||||
#define __NR_getdtablesize 89
|
||||
#define __NR_dup2 90
|
||||
#define __NR_fstat 91
|
||||
#define __NR_fcntl 92
|
||||
#define __NR_osf_select 93
|
||||
#define __NR_poll 94
|
||||
#define __NR_fsync 95
|
||||
#define __NR_setpriority 96
|
||||
#define __NR_socket 97
|
||||
#define __NR_connect 98
|
||||
#define __NR_accept 99
|
||||
#define __NR_getpriority 100
|
||||
#define __NR_send 101
|
||||
#define __NR_recv 102
|
||||
#define __NR_sigreturn 103
|
||||
#define __NR_bind 104
|
||||
#define __NR_setsockopt 105
|
||||
#define __NR_listen 106
|
||||
#define __NR_osf_plock 107 /* not implemented */
|
||||
#define __NR_osf_old_sigvec 108 /* not implemented */
|
||||
#define __NR_osf_old_sigblock 109 /* not implemented */
|
||||
#define __NR_osf_old_sigsetmask 110 /* not implemented */
|
||||
#define __NR_sigsuspend 111
|
||||
#define __NR_osf_sigstack 112
|
||||
#define __NR_recvmsg 113
|
||||
#define __NR_sendmsg 114
|
||||
#define __NR_osf_old_vtrace 115 /* not implemented */
|
||||
#define __NR_osf_gettimeofday 116
|
||||
#define __NR_osf_getrusage 117
|
||||
#define __NR_getsockopt 118
|
||||
|
||||
#define __NR_readv 120
|
||||
#define __NR_writev 121
|
||||
#define __NR_osf_settimeofday 122
|
||||
#define __NR_fchown 123
|
||||
#define __NR_fchmod 124
|
||||
#define __NR_recvfrom 125
|
||||
#define __NR_setreuid 126
|
||||
#define __NR_setregid 127
|
||||
#define __NR_rename 128
|
||||
#define __NR_truncate 129
|
||||
#define __NR_ftruncate 130
|
||||
#define __NR_flock 131
|
||||
#define __NR_setgid 132
|
||||
#define __NR_sendto 133
|
||||
#define __NR_shutdown 134
|
||||
#define __NR_socketpair 135
|
||||
#define __NR_mkdir 136
|
||||
#define __NR_rmdir 137
|
||||
#define __NR_osf_utimes 138
|
||||
#define __NR_osf_old_sigreturn 139 /* not implemented */
|
||||
#define __NR_osf_adjtime 140 /* not implemented */
|
||||
#define __NR_getpeername 141
|
||||
#define __NR_osf_gethostid 142 /* not implemented */
|
||||
#define __NR_osf_sethostid 143 /* not implemented */
|
||||
#define __NR_getrlimit 144
|
||||
#define __NR_setrlimit 145
|
||||
#define __NR_osf_old_killpg 146 /* not implemented */
|
||||
#define __NR_setsid 147
|
||||
#define __NR_quotactl 148
|
||||
#define __NR_osf_oldquota 149 /* not implemented */
|
||||
#define __NR_getsockname 150
|
||||
|
||||
#define __NR_osf_pid_block 153 /* not implemented */
|
||||
#define __NR_osf_pid_unblock 154 /* not implemented */
|
||||
|
||||
#define __NR_sigaction 156
|
||||
#define __NR_osf_sigwaitprim 157 /* not implemented */
|
||||
#define __NR_osf_nfssvc 158 /* not implemented */
|
||||
#define __NR_osf_getdirentries 159
|
||||
#define __NR_osf_statfs 160
|
||||
#define __NR_osf_fstatfs 161
|
||||
|
||||
#define __NR_osf_asynch_daemon 163 /* not implemented */
|
||||
#define __NR_osf_getfh 164 /* not implemented */
|
||||
#define __NR_osf_getdomainname 165
|
||||
#define __NR_setdomainname 166
|
||||
|
||||
#define __NR_osf_exportfs 169 /* not implemented */
|
||||
|
||||
#define __NR_osf_alt_plock 181 /* not implemented */
|
||||
|
||||
#define __NR_osf_getmnt 184 /* not implemented */
|
||||
|
||||
#define __NR_osf_alt_sigpending 187 /* not implemented */
|
||||
#define __NR_osf_alt_setsid 188 /* not implemented */
|
||||
|
||||
#define __NR_osf_swapon 199
|
||||
#define __NR_msgctl 200
|
||||
#define __NR_msgget 201
|
||||
#define __NR_msgrcv 202
|
||||
#define __NR_msgsnd 203
|
||||
#define __NR_semctl 204
|
||||
#define __NR_semget 205
|
||||
#define __NR_semop 206
|
||||
#define __NR_osf_utsname 207
|
||||
#define __NR_lchown 208
|
||||
#define __NR_osf_shmat 209
|
||||
#define __NR_shmctl 210
|
||||
#define __NR_shmdt 211
|
||||
#define __NR_shmget 212
|
||||
#define __NR_osf_mvalid 213 /* not implemented */
|
||||
#define __NR_osf_getaddressconf 214 /* not implemented */
|
||||
#define __NR_osf_msleep 215 /* not implemented */
|
||||
#define __NR_osf_mwakeup 216 /* not implemented */
|
||||
#define __NR_msync 217
|
||||
#define __NR_osf_signal 218 /* not implemented */
|
||||
#define __NR_osf_utc_gettime 219 /* not implemented */
|
||||
#define __NR_osf_utc_adjtime 220 /* not implemented */
|
||||
|
||||
#define __NR_osf_security 222 /* not implemented */
|
||||
#define __NR_osf_kloadcall 223 /* not implemented */
|
||||
|
||||
#define __NR_osf_stat 224
|
||||
#define __NR_osf_lstat 225
|
||||
#define __NR_osf_fstat 226
|
||||
#define __NR_osf_statfs64 227
|
||||
#define __NR_osf_fstatfs64 228
|
||||
|
||||
#define __NR_getpgid 233
|
||||
#define __NR_getsid 234
|
||||
#define __NR_sigaltstack 235
|
||||
#define __NR_osf_waitid 236 /* not implemented */
|
||||
#define __NR_osf_priocntlset 237 /* not implemented */
|
||||
#define __NR_osf_sigsendset 238 /* not implemented */
|
||||
#define __NR_osf_set_speculative 239 /* not implemented */
|
||||
#define __NR_osf_msfs_syscall 240 /* not implemented */
|
||||
#define __NR_osf_sysinfo 241
|
||||
#define __NR_osf_uadmin 242 /* not implemented */
|
||||
#define __NR_osf_fuser 243 /* not implemented */
|
||||
#define __NR_osf_proplist_syscall 244
|
||||
#define __NR_osf_ntp_adjtime 245 /* not implemented */
|
||||
#define __NR_osf_ntp_gettime 246 /* not implemented */
|
||||
#define __NR_osf_pathconf 247 /* not implemented */
|
||||
#define __NR_osf_fpathconf 248 /* not implemented */
|
||||
|
||||
#define __NR_osf_uswitch 250 /* not implemented */
|
||||
#define __NR_osf_usleep_thread 251
|
||||
#define __NR_osf_audcntl 252 /* not implemented */
|
||||
#define __NR_osf_audgen 253 /* not implemented */
|
||||
#define __NR_sysfs 254
|
||||
#define __NR_osf_subsys_info 255 /* not implemented */
|
||||
#define __NR_osf_getsysinfo 256
|
||||
#define __NR_osf_setsysinfo 257
|
||||
#define __NR_osf_afs_syscall 258 /* not implemented */
|
||||
#define __NR_osf_swapctl 259 /* not implemented */
|
||||
#define __NR_osf_memcntl 260 /* not implemented */
|
||||
#define __NR_osf_fdatasync 261 /* not implemented */
|
||||
|
||||
/*
|
||||
* Ignore legacy syscalls that we don't use.
|
||||
*/
|
||||
#define __IGNORE_alarm
|
||||
#define __IGNORE_creat
|
||||
#define __IGNORE_getegid
|
||||
#define __IGNORE_geteuid
|
||||
#define __IGNORE_getgid
|
||||
#define __IGNORE_getpid
|
||||
#define __IGNORE_getppid
|
||||
#define __IGNORE_getuid
|
||||
#define __IGNORE_pause
|
||||
#define __IGNORE_time
|
||||
#define __IGNORE_utime
|
||||
#define __IGNORE_umount2
|
||||
|
||||
/*
|
||||
* Linux-specific system calls begin at 300
|
||||
*/
|
||||
#define __NR_bdflush 300
|
||||
#define __NR_sethae 301
|
||||
#define __NR_mount 302
|
||||
#define __NR_old_adjtimex 303
|
||||
#define __NR_swapoff 304
|
||||
#define __NR_getdents 305
|
||||
#define __NR_create_module 306
|
||||
#define __NR_init_module 307
|
||||
#define __NR_delete_module 308
|
||||
#define __NR_get_kernel_syms 309
|
||||
#define __NR_syslog 310
|
||||
#define __NR_reboot 311
|
||||
#define __NR_clone 312
|
||||
#define __NR_uselib 313
|
||||
#define __NR_mlock 314
|
||||
#define __NR_munlock 315
|
||||
#define __NR_mlockall 316
|
||||
#define __NR_munlockall 317
|
||||
#define __NR_sysinfo 318
|
||||
#define __NR__sysctl 319
|
||||
/* 320 was sys_idle. */
|
||||
#define __NR_oldumount 321
|
||||
#define __NR_swapon 322
|
||||
#define __NR_times 323
|
||||
#define __NR_personality 324
|
||||
#define __NR_setfsuid 325
|
||||
#define __NR_setfsgid 326
|
||||
#define __NR_ustat 327
|
||||
#define __NR_statfs 328
|
||||
#define __NR_fstatfs 329
|
||||
#define __NR_sched_setparam 330
|
||||
#define __NR_sched_getparam 331
|
||||
#define __NR_sched_setscheduler 332
|
||||
#define __NR_sched_getscheduler 333
|
||||
#define __NR_sched_yield 334
|
||||
#define __NR_sched_get_priority_max 335
|
||||
#define __NR_sched_get_priority_min 336
|
||||
#define __NR_sched_rr_get_interval 337
|
||||
#define __NR_afs_syscall 338
|
||||
#define __NR_uname 339
|
||||
#define __NR_nanosleep 340
|
||||
#define __NR_mremap 341
|
||||
#define __NR_nfsservctl 342
|
||||
#define __NR_setresuid 343
|
||||
#define __NR_getresuid 344
|
||||
#define __NR_pciconfig_read 345
|
||||
#define __NR_pciconfig_write 346
|
||||
#define __NR_query_module 347
|
||||
#define __NR_prctl 348
|
||||
#define __NR_pread64 349
|
||||
#define __NR_pwrite64 350
|
||||
#define __NR_rt_sigreturn 351
|
||||
#define __NR_rt_sigaction 352
|
||||
#define __NR_rt_sigprocmask 353
|
||||
#define __NR_rt_sigpending 354
|
||||
#define __NR_rt_sigtimedwait 355
|
||||
#define __NR_rt_sigqueueinfo 356
|
||||
#define __NR_rt_sigsuspend 357
|
||||
#define __NR_select 358
|
||||
#define __NR_gettimeofday 359
|
||||
#define __NR_settimeofday 360
|
||||
#define __NR_getitimer 361
|
||||
#define __NR_setitimer 362
|
||||
#define __NR_utimes 363
|
||||
#define __NR_getrusage 364
|
||||
#define __NR_wait4 365
|
||||
#define __NR_adjtimex 366
|
||||
#define __NR_getcwd 367
|
||||
#define __NR_capget 368
|
||||
#define __NR_capset 369
|
||||
#define __NR_sendfile 370
|
||||
#define __NR_setresgid 371
|
||||
#define __NR_getresgid 372
|
||||
#define __NR_dipc 373
|
||||
#define __NR_pivot_root 374
|
||||
#define __NR_mincore 375
|
||||
#define __NR_pciconfig_iobase 376
|
||||
#define __NR_getdents64 377
|
||||
#define __NR_gettid 378
|
||||
#define __NR_readahead 379
|
||||
/* 380 is unused */
|
||||
#define __NR_tkill 381
|
||||
#define __NR_setxattr 382
|
||||
#define __NR_lsetxattr 383
|
||||
#define __NR_fsetxattr 384
|
||||
#define __NR_getxattr 385
|
||||
#define __NR_lgetxattr 386
|
||||
#define __NR_fgetxattr 387
|
||||
#define __NR_listxattr 388
|
||||
#define __NR_llistxattr 389
|
||||
#define __NR_flistxattr 390
|
||||
#define __NR_removexattr 391
|
||||
#define __NR_lremovexattr 392
|
||||
#define __NR_fremovexattr 393
|
||||
#define __NR_futex 394
|
||||
#define __NR_sched_setaffinity 395
|
||||
#define __NR_sched_getaffinity 396
|
||||
#define __NR_tuxcall 397
|
||||
#define __NR_io_setup 398
|
||||
#define __NR_io_destroy 399
|
||||
#define __NR_io_getevents 400
|
||||
#define __NR_io_submit 401
|
||||
#define __NR_io_cancel 402
|
||||
#define __NR_exit_group 405
|
||||
#define __NR_lookup_dcookie 406
|
||||
#define __NR_epoll_create 407
|
||||
#define __NR_epoll_ctl 408
|
||||
#define __NR_epoll_wait 409
|
||||
/* Feb 2007: These three sys_epoll defines shouldn't be here but culling
|
||||
* them would break userspace apps ... we'll kill them off in 2010 :) */
|
||||
#define __NR_sys_epoll_create __NR_epoll_create
|
||||
#define __NR_sys_epoll_ctl __NR_epoll_ctl
|
||||
#define __NR_sys_epoll_wait __NR_epoll_wait
|
||||
#define __NR_remap_file_pages 410
|
||||
#define __NR_set_tid_address 411
|
||||
#define __NR_restart_syscall 412
|
||||
#define __NR_fadvise64 413
|
||||
#define __NR_timer_create 414
|
||||
#define __NR_timer_settime 415
|
||||
#define __NR_timer_gettime 416
|
||||
#define __NR_timer_getoverrun 417
|
||||
#define __NR_timer_delete 418
|
||||
#define __NR_clock_settime 419
|
||||
#define __NR_clock_gettime 420
|
||||
#define __NR_clock_getres 421
|
||||
#define __NR_clock_nanosleep 422
|
||||
#define __NR_semtimedop 423
|
||||
#define __NR_tgkill 424
|
||||
#define __NR_stat64 425
|
||||
#define __NR_lstat64 426
|
||||
#define __NR_fstat64 427
|
||||
#define __NR_vserver 428
|
||||
#define __NR_mbind 429
|
||||
#define __NR_get_mempolicy 430
|
||||
#define __NR_set_mempolicy 431
|
||||
#define __NR_mq_open 432
|
||||
#define __NR_mq_unlink 433
|
||||
#define __NR_mq_timedsend 434
|
||||
#define __NR_mq_timedreceive 435
|
||||
#define __NR_mq_notify 436
|
||||
#define __NR_mq_getsetattr 437
|
||||
#define __NR_waitid 438
|
||||
#define __NR_add_key 439
|
||||
#define __NR_request_key 440
|
||||
#define __NR_keyctl 441
|
||||
#define __NR_ioprio_set 442
|
||||
#define __NR_ioprio_get 443
|
||||
#define __NR_inotify_init 444
|
||||
#define __NR_inotify_add_watch 445
|
||||
#define __NR_inotify_rm_watch 446
|
||||
#define __NR_fdatasync 447
|
||||
#define __NR_kexec_load 448
|
||||
#define __NR_migrate_pages 449
|
||||
#define __NR_openat 450
|
||||
#define __NR_mkdirat 451
|
||||
#define __NR_mknodat 452
|
||||
#define __NR_fchownat 453
|
||||
#define __NR_futimesat 454
|
||||
#define __NR_fstatat64 455
|
||||
#define __NR_unlinkat 456
|
||||
#define __NR_renameat 457
|
||||
#define __NR_linkat 458
|
||||
#define __NR_symlinkat 459
|
||||
#define __NR_readlinkat 460
|
||||
#define __NR_fchmodat 461
|
||||
#define __NR_faccessat 462
|
||||
#define __NR_pselect6 463
|
||||
#define __NR_ppoll 464
|
||||
#define __NR_unshare 465
|
||||
#define __NR_set_robust_list 466
|
||||
#define __NR_get_robust_list 467
|
||||
#define __NR_splice 468
|
||||
#define __NR_sync_file_range 469
|
||||
#define __NR_tee 470
|
||||
#define __NR_vmsplice 471
|
||||
#define __NR_move_pages 472
|
||||
#define __NR_getcpu 473
|
||||
#define __NR_epoll_pwait 474
|
||||
#define __NR_utimensat 475
|
||||
#define __NR_signalfd 476
|
||||
#define __NR_timerfd 477
|
||||
#define __NR_eventfd 478
|
||||
#define __NR_recvmmsg 479
|
||||
#define __NR_fallocate 480
|
||||
#define __NR_timerfd_create 481
|
||||
#define __NR_timerfd_settime 482
|
||||
#define __NR_timerfd_gettime 483
|
||||
#define __NR_signalfd4 484
|
||||
#define __NR_eventfd2 485
|
||||
#define __NR_epoll_create1 486
|
||||
#define __NR_dup3 487
|
||||
#define __NR_pipe2 488
|
||||
#define __NR_inotify_init1 489
|
||||
#define __NR_preadv 490
|
||||
#define __NR_pwritev 491
|
||||
#define __NR_rt_tgsigqueueinfo 492
|
||||
#define __NR_perf_event_open 493
|
||||
#define __NR_fanotify_init 494
|
||||
#define __NR_fanotify_mark 495
|
||||
#define __NR_prlimit64 496
|
||||
#define __NR_name_to_handle_at 497
|
||||
#define __NR_open_by_handle_at 498
|
||||
#define __NR_clock_adjtime 499
|
||||
#define __NR_syncfs 500
|
||||
#define __NR_setns 501
|
||||
#define __NR_accept4 502
|
||||
#define __NR_sendmmsg 503
|
||||
#define __NR_process_vm_readv 504
|
||||
#define __NR_process_vm_writev 505
|
||||
#define __NR_kcmp 506
|
||||
#define __NR_finit_module 507
|
||||
#define __NR_sched_setattr 508
|
||||
#define __NR_sched_getattr 509
|
||||
#define __NR_renameat2 510
|
||||
|
||||
#endif /* _UAPI_ALPHA_UNISTD_H */
|
Loading…
Add table
Add a link
Reference in a new issue