aboutsummaryrefslogtreecommitdiffstats
path: root/fs/notify
diff options
context:
space:
mode:
authorCyrill Gorcunov <gorcunov@openvz.org>2012-12-17 19:05:16 -0500
committerLinus Torvalds <torvalds@linux-foundation.org>2012-12-17 20:15:28 -0500
commite6dbcafb744ab94a94142a6e721e16330397fad8 (patch)
tree6ef896651e962003960186fa516b2696ff293b22 /fs/notify
parentf1d8c16298d317dbdeb166a135e85dadd1782858 (diff)
fs, fanotify: add @mflags field to fanotify output
The kernel keeps FAN_MARK_IGNORED_SURV_MODIFY bit separately from fsnotify_mark::mask|ignored_mask thus put it in @mflags (mark flags) field so the user-space reader will be able to detect if such bit were used on mark creation procedure. | pos: 0 | flags: 04002 | fanotify flags:10 event-flags:0 | fanotify mnt_id:12 mflags:40 mask:38 ignored_mask:40000003 | fanotify ino:4f969 sdev:800013 mflags:0 mask:3b ignored_mask:40000000 fhandle-bytes:8 fhandle-type:1 f_handle:69f90400c275b5b4 Signed-off-by: Cyrill Gorcunov <gorcunov@openvz.org> Cc: Pavel Emelyanov <xemul@parallels.com> Cc: Oleg Nesterov <oleg@redhat.com> Cc: Andrey Vagin <avagin@openvz.org> Cc: Al Viro <viro@ZenIV.linux.org.uk> Cc: Alexey Dobriyan <adobriyan@gmail.com> Cc: James Bottomley <jbottomley@parallels.com> Cc: "Aneesh Kumar K.V" <aneesh.kumar@linux.vnet.ibm.com> Cc: Matthew Helsley <matt.helsley@gmail.com> Cc: "J. Bruce Fields" <bfields@fieldses.org> Cc: Tvrtko Ursulin <tvrtko.ursulin@onelan.co.uk> Signed-off-by: Andrew Morton <akpm@linux-foundation.org> Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'fs/notify')
-rw-r--r--fs/notify/fdinfo.c14
1 files changed, 9 insertions, 5 deletions
diff --git a/fs/notify/fdinfo.c b/fs/notify/fdinfo.c
index cb996179abfd..514c4b81483d 100644
--- a/fs/notify/fdinfo.c
+++ b/fs/notify/fdinfo.c
@@ -111,29 +111,33 @@ int inotify_show_fdinfo(struct seq_file *m, struct file *f)
111 111
112static int fanotify_fdinfo(struct seq_file *m, struct fsnotify_mark *mark) 112static int fanotify_fdinfo(struct seq_file *m, struct fsnotify_mark *mark)
113{ 113{
114 unsigned int mflags = 0;
114 struct inode *inode; 115 struct inode *inode;
115 int ret = 0; 116 int ret = 0;
116 117
117 if (!(mark->flags & FSNOTIFY_MARK_FLAG_ALIVE)) 118 if (!(mark->flags & FSNOTIFY_MARK_FLAG_ALIVE))
118 return 0; 119 return 0;
119 120
121 if (mark->flags & FSNOTIFY_MARK_FLAG_IGNORED_SURV_MODIFY)
122 mflags |= FAN_MARK_IGNORED_SURV_MODIFY;
123
120 if (mark->flags & FSNOTIFY_MARK_FLAG_INODE) { 124 if (mark->flags & FSNOTIFY_MARK_FLAG_INODE) {
121 inode = igrab(mark->i.inode); 125 inode = igrab(mark->i.inode);
122 if (!inode) 126 if (!inode)
123 goto out; 127 goto out;
124 ret = seq_printf(m, "fanotify ino:%lx sdev:%x " 128 ret = seq_printf(m, "fanotify ino:%lx sdev:%x "
125 "mask:%x ignored_mask:%x ", 129 "mflags:%x mask:%x ignored_mask:%x ",
126 inode->i_ino, inode->i_sb->s_dev, 130 inode->i_ino, inode->i_sb->s_dev,
127 mark->mask, mark->ignored_mask); 131 mflags, mark->mask, mark->ignored_mask);
128 ret |= show_mark_fhandle(m, inode); 132 ret |= show_mark_fhandle(m, inode);
129 ret |= seq_putc(m, '\n'); 133 ret |= seq_putc(m, '\n');
130 iput(inode); 134 iput(inode);
131 } else if (mark->flags & FSNOTIFY_MARK_FLAG_VFSMOUNT) { 135 } else if (mark->flags & FSNOTIFY_MARK_FLAG_VFSMOUNT) {
132 struct mount *mnt = real_mount(mark->m.mnt); 136 struct mount *mnt = real_mount(mark->m.mnt);
133 137
134 ret = seq_printf(m, "fanotify mnt_id:%x mask:%x " 138 ret = seq_printf(m, "fanotify mnt_id:%x mflags:%x mask:%x "
135 "ignored_mask:%x\n", 139 "ignored_mask:%x\n", mnt->mnt_id, mflags,
136 mnt->mnt_id, mark->mask, mark->ignored_mask); 140 mark->mask, mark->ignored_mask);
137 } 141 }
138out: 142out:
139 return ret; 143 return ret;