1 #ifndef _ASM_PARISC_COMPAT_H
2 #define _ASM_PARISC_COMPAT_H
4 * Architecture specific compatibility types
6 #include <linux/types.h>
7 #include <linux/sched.h>
8 #include <linux/thread_info.h>
10 #define COMPAT_USER_HZ 100
11 #define COMPAT_UTS_MACHINE "parisc\0\0"
13 typedef u32 compat_size_t
;
14 typedef s32 compat_ssize_t
;
15 typedef s32 compat_time_t
;
16 typedef s32 compat_clock_t
;
17 typedef s32 compat_pid_t
;
18 typedef u32 __compat_uid_t
;
19 typedef u32 __compat_gid_t
;
20 typedef u32 __compat_uid32_t
;
21 typedef u32 __compat_gid32_t
;
22 typedef u16 compat_mode_t
;
23 typedef u32 compat_ino_t
;
24 typedef u32 compat_dev_t
;
25 typedef s32 compat_off_t
;
26 typedef s64 compat_loff_t
;
27 typedef u16 compat_nlink_t
;
28 typedef u16 compat_ipc_pid_t
;
29 typedef s32 compat_daddr_t
;
30 typedef u32 compat_caddr_t
;
31 typedef s32 compat_timer_t
;
33 typedef s32 compat_int_t
;
34 typedef s32 compat_long_t
;
35 typedef s64 compat_s64
;
36 typedef u32 compat_uint_t
;
37 typedef u32 compat_ulong_t
;
38 typedef u64 compat_u64
;
39 typedef u32 compat_uptr_t
;
41 struct compat_timespec
{
46 struct compat_timeval
{
52 compat_dev_t st_dev
; /* dev_t is 32 bits on parisc */
53 compat_ino_t st_ino
; /* 32 bits */
54 compat_mode_t st_mode
; /* 16 bits */
55 compat_nlink_t st_nlink
; /* 16 bits */
56 u16 st_reserved1
; /* old st_uid */
57 u16 st_reserved2
; /* old st_gid */
60 compat_time_t st_atime
;
62 compat_time_t st_mtime
;
64 compat_time_t st_ctime
;
68 u32 __unused1
; /* ACL stuff */
69 compat_dev_t __unused2
; /* network */
70 compat_ino_t __unused3
; /* network */
71 u32 __unused4
; /* cnodes */
72 u16 __unused5
; /* netsite */
74 compat_dev_t st_realdev
;
77 __compat_uid32_t st_uid
;
78 __compat_gid32_t st_gid
;
90 struct compat_flock64
{
93 compat_loff_t l_start
;
98 struct compat_statfs
{
106 __kernel_fsid_t f_fsid
;
113 struct compat_sigcontext
{
114 compat_int_t sc_flags
;
115 compat_int_t sc_gr
[32]; /* PSW in sc_gr[0] */
117 compat_int_t sc_iasq
[2];
118 compat_int_t sc_iaoq
[2];
119 compat_int_t sc_sar
; /* cr11 */
122 #define COMPAT_RLIM_INFINITY 0xffffffff
124 typedef u32 compat_old_sigset_t
; /* at least 32 bits */
126 #define _COMPAT_NSIG 64
127 #define _COMPAT_NSIG_BPW 32
129 typedef u32 compat_sigset_word
;
131 typedef union compat_sigval
{
132 compat_int_t sival_int
;
133 compat_uptr_t sival_ptr
;
136 typedef struct compat_siginfo
{
142 int _pad
[128/sizeof(int) - 3];
146 unsigned int _pid
; /* sender's pid */
147 unsigned int _uid
; /* sender's uid */
150 /* POSIX.1b timers */
152 compat_timer_t _tid
; /* timer id */
153 int _overrun
; /* overrun count */
154 char _pad
[sizeof(unsigned int) - sizeof(int)];
155 compat_sigval_t _sigval
; /* same as below */
156 int _sys_private
; /* not to be passed to user */
159 /* POSIX.1b signals */
161 unsigned int _pid
; /* sender's pid */
162 unsigned int _uid
; /* sender's uid */
163 compat_sigval_t _sigval
;
168 unsigned int _pid
; /* which child */
169 unsigned int _uid
; /* sender's uid */
170 int _status
; /* exit code */
171 compat_clock_t _utime
;
172 compat_clock_t _stime
;
175 /* SIGILL, SIGFPE, SIGSEGV, SIGBUS */
177 unsigned int _addr
; /* faulting insn/memory ref. */
182 int _band
; /* POLL_IN, POLL_OUT, POLL_MSG */
188 #define COMPAT_OFF_T_MAX 0x7fffffff
189 #define COMPAT_LOFF_T_MAX 0x7fffffffffffffffL
192 * A pointer passed in from user mode. This should not
193 * be used for syscall parameters, just declare them
194 * as pointers because the syscall entry code will have
195 * appropriately converted them already.
198 static inline void __user
*compat_ptr(compat_uptr_t uptr
)
200 return (void __user
*)(unsigned long)uptr
;
203 static inline compat_uptr_t
ptr_to_compat(void __user
*uptr
)
205 return (u32
)(unsigned long)uptr
;
208 static __inline__
void __user
*arch_compat_alloc_user_space(long len
)
210 struct pt_regs
*regs
= ¤t
->thread
.regs
;
211 return (void __user
*)regs
->gr
[30];
214 static inline int __is_compat_task(struct task_struct
*t
)
216 return test_ti_thread_flag(task_thread_info(t
), TIF_32BIT
);
219 static inline int is_compat_task(void)
221 return __is_compat_task(current
);
224 #endif /* _ASM_PARISC_COMPAT_H */