Merge tag 'fixes-for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/arm...
[linux-2.6.git] / fs / notify / fdinfo.h
blob556afda990e9bb76719ea64d6b12697f4f8187a3
1 #ifndef __FSNOTIFY_FDINFO_H__
2 #define __FSNOTIFY_FDINFO_H__
4 #include <linux/errno.h>
5 #include <linux/proc_fs.h>
7 struct seq_file;
8 struct file;
10 #ifdef CONFIG_PROC_FS
12 #ifdef CONFIG_INOTIFY_USER
13 extern int inotify_show_fdinfo(struct seq_file *m, struct file *f);
14 #endif
16 #ifdef CONFIG_FANOTIFY
17 extern int fanotify_show_fdinfo(struct seq_file *m, struct file *f);
18 #endif
20 #else /* CONFIG_PROC_FS */
22 #define inotify_show_fdinfo NULL
23 #define fanotify_show_fdinfo NULL
25 #endif /* CONFIG_PROC_FS */
27 #endif /* __FSNOTIFY_FDINFO_H__ */