Greg Kroah-Hartman | b244131 | 2017-11-01 15:07:57 +0100 | [diff] [blame] | 1 | /* SPDX-License-Identifier: GPL-2.0 */ |
Cyrill Gorcunov | be77196 | 2012-12-17 16:05:12 -0800 | [diff] [blame] | 2 | #ifndef __FSNOTIFY_FDINFO_H__ |
| 3 | #define __FSNOTIFY_FDINFO_H__ |
| 4 | |
| 5 | #include <linux/errno.h> |
| 6 | #include <linux/proc_fs.h> |
| 7 | |
| 8 | struct seq_file; |
| 9 | struct file; |
| 10 | |
| 11 | #ifdef CONFIG_PROC_FS |
| 12 | |
| 13 | #ifdef CONFIG_INOTIFY_USER |
Joe Perches | a3816ab | 2014-09-29 16:08:25 -0700 | [diff] [blame] | 14 | void inotify_show_fdinfo(struct seq_file *m, struct file *f); |
Cyrill Gorcunov | be77196 | 2012-12-17 16:05:12 -0800 | [diff] [blame] | 15 | #endif |
| 16 | |
| 17 | #ifdef CONFIG_FANOTIFY |
Joe Perches | a3816ab | 2014-09-29 16:08:25 -0700 | [diff] [blame] | 18 | void fanotify_show_fdinfo(struct seq_file *m, struct file *f); |
Cyrill Gorcunov | be77196 | 2012-12-17 16:05:12 -0800 | [diff] [blame] | 19 | #endif |
| 20 | |
| 21 | #else /* CONFIG_PROC_FS */ |
| 22 | |
| 23 | #define inotify_show_fdinfo NULL |
| 24 | #define fanotify_show_fdinfo NULL |
| 25 | |
| 26 | #endif /* CONFIG_PROC_FS */ |
| 27 | |
| 28 | #endif /* __FSNOTIFY_FDINFO_H__ */ |