4 * Architecture specific compatibility types
6 #include <linux/types.h>
8 #include <asm/ptrace.h>
10 #define COMPAT_USER_HZ 100
12 typedef u32 compat_size_t
;
13 typedef s32 compat_ssize_t
;
14 typedef s32 compat_time_t
;
15 typedef s32 compat_clock_t
;
16 typedef s32 compat_suseconds_t
;
18 typedef s32 compat_pid_t
;
19 typedef s32 __compat_uid_t
;
20 typedef s32 __compat_gid_t
;
21 typedef __compat_uid_t __compat_uid32_t
;
22 typedef __compat_gid_t __compat_gid32_t
;
23 typedef u32 compat_mode_t
;
24 typedef u32 compat_ino_t
;
25 typedef u32 compat_dev_t
;
26 typedef s32 compat_off_t
;
27 typedef s64 compat_loff_t
;
28 typedef u32 compat_nlink_t
;
29 typedef s32 compat_ipc_pid_t
;
30 typedef s32 compat_daddr_t
;
31 typedef s32 compat_caddr_t
;
35 typedef s32 compat_timer_t
;
36 typedef s32 compat_key_t
;
38 typedef s32 compat_int_t
;
39 typedef s32 compat_long_t
;
40 typedef s64 compat_s64
;
41 typedef u32 compat_uint_t
;
42 typedef u32 compat_ulong_t
;
43 typedef u64 compat_u64
;
45 struct compat_timespec
{
50 struct compat_timeval
{
59 compat_mode_t st_mode
;
60 compat_nlink_t st_nlink
;
61 __compat_uid_t st_uid
;
62 __compat_gid_t st_gid
;
67 compat_time_t st_atime
;
69 compat_time_t st_mtime
;
71 compat_time_t st_ctime
;
93 struct compat_flock64
{
96 compat_loff_t l_start
;
101 struct compat_statfs
{
110 compat_fsid_t f_fsid
;
115 #define COMPAT_RLIM_INFINITY 0x7fffffffUL
117 typedef u32 compat_old_sigset_t
; /* at least 32 bits */
119 #define _COMPAT_NSIG 128 /* Don't ask !$@#% ... */
120 #define _COMPAT_NSIG_BPW 32
122 typedef u32 compat_sigset_word
;
124 #define COMPAT_OFF_T_MAX 0x7fffffff
125 #define COMPAT_LOFF_T_MAX 0x7fffffffffffffffL
128 * A pointer passed in from user mode. This should not
129 * be used for syscall parameters, just declare them
130 * as pointers because the syscall entry code will have
131 * appropriately converted them already.
133 typedef u32 compat_uptr_t
;
135 static inline void __user
*compat_ptr(compat_uptr_t uptr
)
137 /* cast to a __user pointer via "unsigned long" makes sparse happy */
138 return (void __user
*)(unsigned long)(long)uptr
;
141 static inline compat_uptr_t
ptr_to_compat(void __user
*uptr
)
143 return (u32
)(unsigned long)uptr
;
146 static inline void __user
*compat_alloc_user_space(long len
)
148 struct pt_regs
*regs
= (struct pt_regs
*)
149 ((unsigned long) current_thread_info() + THREAD_SIZE
- 32) - 1;
151 return (void __user
*) (regs
->regs
[29] - len
);
154 struct compat_ipc64_perm
{
156 __compat_uid32_t uid
;
157 __compat_gid32_t gid
;
158 __compat_uid32_t cuid
;
159 __compat_gid32_t cgid
;
162 unsigned short __pad2
;
163 compat_ulong_t __unused1
;
164 compat_ulong_t __unused2
;
167 struct compat_semid64_ds
{
168 struct compat_ipc64_perm sem_perm
;
169 compat_time_t sem_otime
;
170 compat_time_t sem_ctime
;
171 compat_ulong_t sem_nsems
;
172 compat_ulong_t __unused1
;
173 compat_ulong_t __unused2
;
176 struct compat_msqid64_ds
{
177 struct compat_ipc64_perm msg_perm
;
178 #ifndef CONFIG_CPU_LITTLE_ENDIAN
179 compat_ulong_t __unused1
;
181 compat_time_t msg_stime
;
182 #ifdef CONFIG_CPU_LITTLE_ENDIAN
183 compat_ulong_t __unused1
;
185 #ifndef CONFIG_CPU_LITTLE_ENDIAN
186 compat_ulong_t __unused2
;
188 compat_time_t msg_rtime
;
189 #ifdef CONFIG_CPU_LITTLE_ENDIAN
190 compat_ulong_t __unused2
;
192 #ifndef CONFIG_CPU_LITTLE_ENDIAN
193 compat_ulong_t __unused3
;
195 compat_time_t msg_ctime
;
196 #ifdef CONFIG_CPU_LITTLE_ENDIAN
197 compat_ulong_t __unused3
;
199 compat_ulong_t msg_cbytes
;
200 compat_ulong_t msg_qnum
;
201 compat_ulong_t msg_qbytes
;
202 compat_pid_t msg_lspid
;
203 compat_pid_t msg_lrpid
;
204 compat_ulong_t __unused4
;
205 compat_ulong_t __unused5
;
208 struct compat_shmid64_ds
{
209 struct compat_ipc64_perm shm_perm
;
210 compat_size_t shm_segsz
;
211 compat_time_t shm_atime
;
212 compat_time_t shm_dtime
;
213 compat_time_t shm_ctime
;
214 compat_pid_t shm_cpid
;
215 compat_pid_t shm_lpid
;
216 compat_ulong_t shm_nattch
;
217 compat_ulong_t __unused1
;
218 compat_ulong_t __unused2
;
221 #endif /* _ASM_COMPAT_H */