1 /* SPDX-License-Identifier: GPL-2.0 */
5 * Architecture specific compatibility types
7 #include <linux/thread_info.h>
8 #include <linux/types.h>
10 #include <asm/ptrace.h>
12 #define __compat_uid_t __compat_uid_t
13 typedef s32 __compat_uid_t
;
14 typedef s32 __compat_gid_t
;
16 typedef __compat_uid_t __compat_uid32_t
;
17 typedef __compat_gid_t __compat_gid32_t
;
18 #define __compat_uid32_t __compat_uid32_t
20 #define compat_statfs compat_statfs
21 #define compat_ipc64_perm compat_ipc64_perm
23 #define _COMPAT_NSIG 128 /* Don't ask !$@#% ... */
24 #define _COMPAT_NSIG_BPW 32
25 typedef u32 compat_sigset_word
;
27 #define COMPAT_RLIM_INFINITY 0x7fffffffUL
29 #include <asm-generic/compat.h>
31 #define COMPAT_UTS_MACHINE "mips\0\0\0"
33 typedef u32 compat_nlink_t
;
39 compat_mode_t st_mode
;
40 compat_nlink_t st_nlink
;
41 __compat_uid_t st_uid
;
42 __compat_gid_t st_gid
;
47 old_time32_t st_atime
;
49 old_time32_t st_mtime
;
51 old_time32_t st_ctime
;
58 #define __ARCH_COMPAT_FLOCK_EXTRA_SYSID s32 l_sysid;
59 #define __ARCH_COMPAT_FLOCK_PAD s32 pad[4];
61 struct compat_statfs
{
76 struct compat_ipc64_perm
{
80 __compat_uid32_t cuid
;
81 __compat_gid32_t cgid
;
84 unsigned short __pad2
;
85 compat_ulong_t __unused1
;
86 compat_ulong_t __unused2
;
89 struct compat_semid64_ds
{
90 struct compat_ipc64_perm sem_perm
;
91 compat_ulong_t sem_otime
;
92 compat_ulong_t sem_ctime
;
93 compat_ulong_t sem_nsems
;
94 compat_ulong_t sem_otime_high
;
95 compat_ulong_t sem_ctime_high
;
98 struct compat_msqid64_ds
{
99 struct compat_ipc64_perm msg_perm
;
100 #ifndef CONFIG_CPU_LITTLE_ENDIAN
101 compat_ulong_t msg_stime_high
;
103 compat_ulong_t msg_stime
;
104 #ifdef CONFIG_CPU_LITTLE_ENDIAN
105 compat_ulong_t msg_stime_high
;
107 #ifndef CONFIG_CPU_LITTLE_ENDIAN
108 compat_ulong_t msg_rtime_high
;
110 compat_ulong_t msg_rtime
;
111 #ifdef CONFIG_CPU_LITTLE_ENDIAN
112 compat_ulong_t msg_rtime_high
;
114 #ifndef CONFIG_CPU_LITTLE_ENDIAN
115 compat_ulong_t msg_ctime_high
;
117 compat_ulong_t msg_ctime
;
118 #ifdef CONFIG_CPU_LITTLE_ENDIAN
119 compat_ulong_t msg_ctime_high
;
121 compat_ulong_t msg_cbytes
;
122 compat_ulong_t msg_qnum
;
123 compat_ulong_t msg_qbytes
;
124 compat_pid_t msg_lspid
;
125 compat_pid_t msg_lrpid
;
126 compat_ulong_t __unused4
;
127 compat_ulong_t __unused5
;
130 struct compat_shmid64_ds
{
131 struct compat_ipc64_perm shm_perm
;
132 compat_size_t shm_segsz
;
133 compat_ulong_t shm_atime
;
134 compat_ulong_t shm_dtime
;
135 compat_ulong_t shm_ctime
;
136 compat_pid_t shm_cpid
;
137 compat_pid_t shm_lpid
;
138 compat_ulong_t shm_nattch
;
139 compat_ushort_t shm_atime_high
;
140 compat_ushort_t shm_dtime_high
;
141 compat_ushort_t shm_ctime_high
;
142 compat_ushort_t __unused2
;
145 /* MIPS has unusual order of fields in stack_t */
146 typedef struct compat_sigaltstack
{
148 compat_size_t ss_size
;
151 #define compat_sigaltstack compat_sigaltstack
153 static inline int is_compat_task(void)
155 return test_thread_flag(TIF_32BIT_ADDR
);
158 #endif /* _ASM_COMPAT_H */