diff options
author | Eric Paris <eparis@redhat.com> | 2009-12-17 21:24:26 -0500 |
---|---|---|
committer | Eric Paris <eparis@redhat.com> | 2010-07-28 09:58:55 -0400 |
commit | bbaa4168b2d2d8cc674e6d35806e8426aef464b8 (patch) | |
tree | de2a601befc44628fc19766a3081bf2e3b73da7a /fs | |
parent | 52c923dd079df49f58016a9e56df184b132611d6 (diff) |
fanotify: sys_fanotify_mark declartion
This patch simply declares the new sys_fanotify_mark syscall
int fanotify_mark(int fanotify_fd, unsigned int flags, u64_mask,
int dfd const char *pathname)
Signed-off-by: Eric Paris <eparis@redhat.com>
Diffstat (limited to 'fs')
-rw-r--r-- | fs/notify/fanotify/fanotify_user.c | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/fs/notify/fanotify/fanotify_user.c b/fs/notify/fanotify/fanotify_user.c index 67c0b5e4a488..55d6e379f2b6 100644 --- a/fs/notify/fanotify/fanotify_user.c +++ b/fs/notify/fanotify/fanotify_user.c | |||
@@ -70,3 +70,9 @@ out_put_group: | |||
70 | fsnotify_put_group(group); | 70 | fsnotify_put_group(group); |
71 | return fd; | 71 | return fd; |
72 | } | 72 | } |
73 | |||
74 | SYSCALL_DEFINE5(fanotify_mark, int, fanotify_fd, unsigned int, flags, | ||
75 | __u64, mask, int, dfd, const char __user *, pathname) | ||
76 | { | ||
77 | return -ENOSYS; | ||
78 | } | ||