summaryrefslogtreecommitdiffstats
path: root/fs/notify/fanotify
diff options
context:
space:
mode:
authorAndreas Gruenbacher2009-12-18 03:24:29 +0100
committerEric Paris2010-07-28 15:58:59 +0200
commiteac8e9e80ccbd30801b7b76a2ee4c6c5a681e53c (patch)
treec88fd90edfcf388d03d369c141683c4086b819dc /fs/notify/fanotify
parentfanotify: hooks the fanotify_mark syscall to the vfsmount code (diff)
downloadkernel-qcow2-linux-eac8e9e80ccbd30801b7b76a2ee4c6c5a681e53c.tar.gz
kernel-qcow2-linux-eac8e9e80ccbd30801b7b76a2ee4c6c5a681e53c.tar.xz
kernel-qcow2-linux-eac8e9e80ccbd30801b7b76a2ee4c6c5a681e53c.zip
fanotify: rename FAN_MARK_ON_VFSMOUNT to FAN_MARK_MOUNT
the term 'vfsmount' isn't sensicle to userspace. instead call is 'mount. Signed-off-by: Andreas Gruenbacher <agruen@suse.de> Signed-off-by: Eric Paris <eparis@redhat.com>
Diffstat (limited to 'fs/notify/fanotify')
-rw-r--r--fs/notify/fanotify/fanotify_user.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/fs/notify/fanotify/fanotify_user.c b/fs/notify/fanotify/fanotify_user.c
index 81267260d1b9..091371e1bde3 100644
--- a/fs/notify/fanotify/fanotify_user.c
+++ b/fs/notify/fanotify/fanotify_user.c
@@ -516,7 +516,7 @@ SYSCALL_DEFINE(fanotify_mark)(int fanotify_fd, unsigned int flags,
goto fput_and_out;
/* inode held in place by reference to path; group by fget on fd */
- if (!(flags & FAN_MARK_ON_VFSMOUNT))
+ if (!(flags & FAN_MARK_MOUNT))
inode = path.dentry->d_inode;
else
mnt = path.mnt;
@@ -525,7 +525,7 @@ SYSCALL_DEFINE(fanotify_mark)(int fanotify_fd, unsigned int flags,
/* create/update an inode mark */
switch (flags & (FAN_MARK_ADD | FAN_MARK_REMOVE)) {
case FAN_MARK_ADD:
- if (flags & FAN_MARK_ON_VFSMOUNT)
+ if (flags & FAN_MARK_MOUNT)
ret = fanotify_add_vfsmount_mark(group, mnt, mask);
else
ret = fanotify_add_inode_mark(group, inode, mask);