diff options
author | Linus Torvalds <torvalds@linux-foundation.org> | 2013-05-10 12:21:05 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2013-05-10 12:21:05 -0400 |
commit | 3644bc2ec7655a249612ea500e2be1c13052c4c2 (patch) | |
tree | 872dabd511e62b7e94f3d903d7b55114175f5b06 /fs | |
parent | 6fad8d02ef9ab12d5e178014a4c5c297e1707f23 (diff) | |
parent | c5ddd2024a87353f73068732cfd38d3dfec22e87 (diff) |
Merge branch 'for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/viro/signal
Pull stray syscall bits from Al Viro:
"Several syscall-related commits that were missing from the original"
* 'for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/viro/signal:
switch compat_sys_sysctl to COMPAT_SYSCALL_DEFINE
unicore32: just use mmap_pgoff()...
unify compat fanotify_mark(2), switch to COMPAT_SYSCALL_DEFINE
x86, vm86: fix VM86 syscalls: use SYSCALL_DEFINEx(...)
Diffstat (limited to 'fs')
-rw-r--r-- | fs/notify/fanotify/fanotify_user.c | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/fs/notify/fanotify/fanotify_user.c b/fs/notify/fanotify/fanotify_user.c index d0be29fa94cf..6c80083a984f 100644 --- a/fs/notify/fanotify/fanotify_user.c +++ b/fs/notify/fanotify/fanotify_user.c | |||
@@ -13,6 +13,7 @@ | |||
13 | #include <linux/slab.h> | 13 | #include <linux/slab.h> |
14 | #include <linux/types.h> | 14 | #include <linux/types.h> |
15 | #include <linux/uaccess.h> | 15 | #include <linux/uaccess.h> |
16 | #include <linux/compat.h> | ||
16 | 17 | ||
17 | #include <asm/ioctls.h> | 18 | #include <asm/ioctls.h> |
18 | 19 | ||
@@ -857,6 +858,22 @@ fput_and_out: | |||
857 | return ret; | 858 | return ret; |
858 | } | 859 | } |
859 | 860 | ||
861 | #ifdef CONFIG_COMPAT | ||
862 | COMPAT_SYSCALL_DEFINE6(fanotify_mark, | ||
863 | int, fanotify_fd, unsigned int, flags, | ||
864 | __u32, mask0, __u32, mask1, int, dfd, | ||
865 | const char __user *, pathname) | ||
866 | { | ||
867 | return sys_fanotify_mark(fanotify_fd, flags, | ||
868 | #ifdef __BIG_ENDIAN | ||
869 | ((__u64)mask1 << 32) | mask0, | ||
870 | #else | ||
871 | ((__u64)mask0 << 32) | mask1, | ||
872 | #endif | ||
873 | dfd, pathname); | ||
874 | } | ||
875 | #endif | ||
876 | |||
860 | /* | 877 | /* |
861 | * fanotify_user_setup - Our initialization function. Note that we cannot return | 878 | * fanotify_user_setup - Our initialization function. Note that we cannot return |
862 | * error because we have compiled-in VFS hooks. So an (unlikely) failure here | 879 | * error because we have compiled-in VFS hooks. So an (unlikely) failure here |