1 #ifndef _ASM_SPARC64_COMPAT_H
2 #define _ASM_SPARC64_COMPAT_H
4 * Architecture specific compatibility types
6 #include <linux/types.h>
8 #define COMPAT_USER_HZ 100
9 #define COMPAT_UTS_MACHINE "sparc\0\0"
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_pid_t
;
16 typedef u16 __compat_uid_t
;
17 typedef u16 __compat_gid_t
;
18 typedef u32 __compat_uid32_t
;
19 typedef u32 __compat_gid32_t
;
20 typedef u16 compat_mode_t
;
21 typedef u32 compat_ino_t
;
22 typedef u16 compat_dev_t
;
23 typedef s32 compat_off_t
;
24 typedef s64 compat_loff_t
;
25 typedef s16 compat_nlink_t
;
26 typedef u16 compat_ipc_pid_t
;
27 typedef s32 compat_daddr_t
;
28 typedef u32 compat_caddr_t
;
29 typedef __kernel_fsid_t compat_fsid_t
;
30 typedef s32 compat_key_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
;
40 struct compat_timespec
{
45 struct compat_timeval
{
53 compat_mode_t st_mode
;
54 compat_nlink_t st_nlink
;
55 __compat_uid_t st_uid
;
56 __compat_gid_t st_gid
;
59 compat_time_t st_atime
;
60 compat_ulong_t st_atime_nsec
;
61 compat_time_t st_mtime
;
62 compat_ulong_t st_mtime_nsec
;
63 compat_time_t st_ctime
;
64 compat_ulong_t st_ctime_nsec
;
65 compat_off_t st_blksize
;
66 compat_off_t st_blocks
;
70 struct compat_stat64
{
71 unsigned long long st_dev
;
73 unsigned long long st_ino
;
76 unsigned int st_nlink
;
81 unsigned long long st_rdev
;
83 unsigned char __pad3
[8];
86 unsigned int st_blksize
;
88 unsigned char __pad4
[8];
89 unsigned int st_blocks
;
91 unsigned int st_atime
;
92 unsigned int st_atime_nsec
;
94 unsigned int st_mtime
;
95 unsigned int st_mtime_nsec
;
97 unsigned int st_ctime
;
98 unsigned int st_ctime_nsec
;
100 unsigned int __unused4
;
101 unsigned int __unused5
;
104 struct compat_flock
{
107 compat_off_t l_start
;
115 #define F_SETLKW64 14
117 struct compat_flock64
{
120 compat_loff_t l_start
;
126 struct compat_statfs
{
134 compat_fsid_t f_fsid
;
135 int f_namelen
; /* SunOS ignores this field. */
140 #define COMPAT_RLIM_INFINITY 0x7fffffff
142 typedef u32 compat_old_sigset_t
;
144 #define _COMPAT_NSIG 64
145 #define _COMPAT_NSIG_BPW 32
147 typedef u32 compat_sigset_word
;
149 #define COMPAT_OFF_T_MAX 0x7fffffff
150 #define COMPAT_LOFF_T_MAX 0x7fffffffffffffffL
153 * A pointer passed in from user mode. This should not
154 * be used for syscall parameters, just declare them
155 * as pointers because the syscall entry code will have
156 * appropriately converted them already.
158 typedef u32 compat_uptr_t
;
160 static inline void __user
*compat_ptr(compat_uptr_t uptr
)
162 return (void __user
*)(unsigned long)uptr
;
165 static inline compat_uptr_t
ptr_to_compat(void __user
*uptr
)
167 return (u32
)(unsigned long)uptr
;
170 static inline void __user
*arch_compat_alloc_user_space(long len
)
172 struct pt_regs
*regs
= current_thread_info()->kregs
;
173 unsigned long usp
= regs
->u_regs
[UREG_I6
];
175 if (!(test_thread_flag(TIF_32BIT
)))
183 return (void __user
*) usp
;
186 struct compat_ipc64_perm
{
188 __compat_uid32_t uid
;
189 __compat_gid32_t gid
;
190 __compat_uid32_t cuid
;
191 __compat_gid32_t cgid
;
192 unsigned short __pad1
;
194 unsigned short __pad2
;
196 unsigned long __unused1
; /* yes they really are 64bit pads */
197 unsigned long __unused2
;
200 struct compat_semid64_ds
{
201 struct compat_ipc64_perm sem_perm
;
203 compat_time_t sem_otime
;
205 compat_time_t sem_ctime
;
211 struct compat_msqid64_ds
{
212 struct compat_ipc64_perm msg_perm
;
214 compat_time_t msg_stime
;
216 compat_time_t msg_rtime
;
218 compat_time_t msg_ctime
;
219 unsigned int msg_cbytes
;
220 unsigned int msg_qnum
;
221 unsigned int msg_qbytes
;
222 compat_pid_t msg_lspid
;
223 compat_pid_t msg_lrpid
;
224 unsigned int __unused1
;
225 unsigned int __unused2
;
228 struct compat_shmid64_ds
{
229 struct compat_ipc64_perm shm_perm
;
231 compat_time_t shm_atime
;
233 compat_time_t shm_dtime
;
235 compat_time_t shm_ctime
;
236 compat_size_t shm_segsz
;
237 compat_pid_t shm_cpid
;
238 compat_pid_t shm_lpid
;
239 unsigned int shm_nattch
;
240 unsigned int __unused1
;
241 unsigned int __unused2
;
244 static inline int is_compat_task(void)
246 return test_thread_flag(TIF_32BIT
);
249 #endif /* _ASM_SPARC64_COMPAT_H */