1 #ifndef _ASM_PPC64_COMPAT_H
2 #define _ASM_PPC64_COMPAT_H
4 * Architecture specific compatibility types
6 #include <linux/types.h>
7 #include <linux/sched.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_pid_t;
16 typedef u32 compat_uid_t;
17 typedef u32 compat_gid_t;
18 typedef u32 compat_mode_t;
19 typedef u32 compat_ino_t;
20 typedef u32 compat_dev_t;
21 typedef s32 compat_off_t;
22 typedef s64 compat_loff_t;
23 typedef s16 compat_nlink_t;
24 typedef u16 compat_ipc_pid_t;
25 typedef s32 compat_daddr_t;
26 typedef u32 compat_caddr_t;
27 typedef __kernel_fsid_t compat_fsid_t;
29 typedef s32 compat_int_t;
30 typedef s32 compat_long_t;
31 typedef u32 compat_uint_t;
32 typedef u32 compat_ulong_t;
34 struct compat_timespec {
39 struct compat_timeval {
47 compat_mode_t st_mode;
48 compat_nlink_t st_nlink;
53 compat_off_t st_blksize;
54 compat_off_t st_blocks;
55 compat_time_t st_atime;
57 compat_time_t st_mtime;
59 compat_time_t st_ctime;
72 #define F_GETLK64 12 /* using 'struct flock64' */
76 struct compat_flock64 {
79 compat_loff_t l_start;
84 struct compat_statfs {
93 int f_namelen; /* SunOS ignores this field. */
98 #define COMPAT_RLIM_OLD_INFINITY 0x7fffffff
99 #define COMPAT_RLIM_INFINITY 0xffffffff
101 typedef u32 compat_old_sigset_t;
103 #define _COMPAT_NSIG 64
104 #define _COMPAT_NSIG_BPW 32
106 typedef u32 compat_sigset_word;
108 #define COMPAT_OFF_T_MAX 0x7fffffff
109 #define COMPAT_LOFF_T_MAX 0x7fffffffffffffffL
112 * A pointer passed in from user mode. This should not
113 * be used for syscall parameters, just declare them
114 * as pointers because the syscall entry code will have
115 * appropriately comverted them already.
117 typedef u32 compat_uptr_t;
119 static inline void *compat_ptr(compat_uptr_t uptr)
121 return (void *)(unsigned long)uptr;
124 static inline void *compat_alloc_user_space(long len)
126 struct pt_regs *regs = current->thread.regs;
127 unsigned long usp = regs->gpr[1];
130 * We cant access below the stack pointer in the 32bit ABI and
131 * can access 288 bytes in the 64bit ABI
133 if (!(test_thread_flag(TIF_32BIT)))
136 return (void *) (usp - len);
139 #endif /* _ASM_PPC64_COMPAT_H */