4 * Architecture specific compatibility types
6 #include <linux/types.h>
9 #define COMPAT_USER_HZ 100
11 typedef u32 compat_size_t
;
12 typedef s32 compat_ssize_t
;
13 typedef s32 compat_time_t
;
14 typedef s32 compat_clock_t
;
15 typedef s32 compat_suseconds_t
;
17 typedef s32 compat_pid_t
;
18 typedef s32 compat_uid_t
;
19 typedef s32 compat_gid_t
;
20 typedef u32 compat_mode_t
;
21 typedef u32 compat_ino_t
;
22 typedef u32 compat_dev_t
;
23 typedef s32 compat_off_t
;
24 typedef s64 compat_loff_t
;
25 typedef u32 compat_nlink_t
;
26 typedef s32 compat_ipc_pid_t
;
27 typedef s32 compat_daddr_t
;
28 typedef s32 compat_caddr_t
;
32 typedef s32 compat_timer_t
;
34 typedef s32 compat_int_t
;
35 typedef s32 compat_long_t
;
36 typedef u32 compat_uint_t
;
37 typedef u32 compat_ulong_t
;
39 struct compat_timespec
{
44 struct compat_timeval
{
53 compat_mode_t st_mode
;
54 compat_nlink_t st_nlink
;
61 compat_time_t st_atime
;
63 compat_time_t st_mtime
;
65 compat_time_t st_ctime
;
87 struct compat_flock64
{
90 compat_loff_t l_start
;
95 struct compat_statfs
{
104 compat_fsid_t f_fsid
;
109 #define COMPAT_RLIM_INFINITY 0x7fffffffUL
111 typedef u32 compat_old_sigset_t
; /* at least 32 bits */
113 #define _COMPAT_NSIG 128 /* Don't ask !$@#% ... */
114 #define _COMPAT_NSIG_BPW 32
116 typedef u32 compat_sigset_word
;
118 #define COMPAT_OFF_T_MAX 0x7fffffff
119 #define COMPAT_LOFF_T_MAX 0x7fffffffffffffffL
122 * A pointer passed in from user mode. This should not
123 * be used for syscall parameters, just declare them
124 * as pointers because the syscall entry code will have
125 * appropriately comverted them already.
127 typedef u32 compat_uptr_t
;
129 static inline void *compat_ptr(compat_uptr_t uptr
)
131 return (void *)(long)uptr
;
134 static inline void *compat_alloc_user_space(long len
)
136 struct pt_regs
*regs
= (struct pt_regs
*)
137 ((unsigned long) current_thread_info() + THREAD_SIZE
- 32) - 1;
139 return (void *) (regs
->regs
[29] - len
);
141 #if defined (__MIPSEL__)
142 #define __COMPAT_ENDIAN_SWAP__ 1
145 #endif /* _ASM_COMPAT_H */