|
@@ -468,8 +468,9 @@ out_put_group:
|
|
|
return fd;
|
|
|
}
|
|
|
|
|
|
-SYSCALL_DEFINE5(fanotify_mark, int, fanotify_fd, unsigned int, flags,
|
|
|
- __u64, mask, int, dfd, const char __user *, pathname)
|
|
|
+SYSCALL_DEFINE(fanotify_mark)(int fanotify_fd, unsigned int flags,
|
|
|
+ __u64 mask, int dfd,
|
|
|
+ const char __user * pathname)
|
|
|
{
|
|
|
struct inode *inode;
|
|
|
struct fsnotify_group *group;
|
|
@@ -513,6 +514,17 @@ fput_and_out:
|
|
|
return ret;
|
|
|
}
|
|
|
|
|
|
+#ifdef CONFIG_HAVE_SYSCALL_WRAPPERS
|
|
|
+asmlinkage long SyS_fanotify_mark(long fanotify_fd, long flags, __u64 mask,
|
|
|
+ long dfd, long pathname)
|
|
|
+{
|
|
|
+ return SYSC_fanotify_mark((int) fanotify_fd, (unsigned int) flags,
|
|
|
+ mask, (int) dfd,
|
|
|
+ (const char __user *) pathname);
|
|
|
+}
|
|
|
+SYSCALL_ALIAS(sys_fanotify_mark, SyS_fanotify_mark);
|
|
|
+#endif
|
|
|
+
|
|
|
/*
|
|
|
* fanotify_user_setup - Our initialization function. Note that we cannnot return
|
|
|
* error because we have compiled-in VFS hooks. So an (unlikely) failure here
|