|
@@ -128,6 +128,11 @@ static inline void __user *compat_ptr(compat_uptr_t uptr)
|
|
return (void __user *)(unsigned long)(uptr & 0x7fffffffUL);
|
|
return (void __user *)(unsigned long)(uptr & 0x7fffffffUL);
|
|
}
|
|
}
|
|
|
|
|
|
|
|
+static inline compat_uptr_t ptr_to_compat(void __user *uptr)
|
|
|
|
+{
|
|
|
|
+ return (u32)(unsigned long)uptr;
|
|
|
|
+}
|
|
|
|
+
|
|
static inline void __user *compat_alloc_user_space(long len)
|
|
static inline void __user *compat_alloc_user_space(long len)
|
|
{
|
|
{
|
|
unsigned long stack;
|
|
unsigned long stack;
|