Blame view

fs/notify/fdinfo.h 519 Bytes
be77196b8   Cyrill Gorcunov   fs, notify: add p...
1
2
3
4
5
6
7
8
9
10
11
12
  #ifndef __FSNOTIFY_FDINFO_H__
  #define __FSNOTIFY_FDINFO_H__
  
  #include <linux/errno.h>
  #include <linux/proc_fs.h>
  
  struct seq_file;
  struct file;
  
  #ifdef CONFIG_PROC_FS
  
  #ifdef CONFIG_INOTIFY_USER
a3816ab0e   Joe Perches   fs: Convert show_...
13
  void inotify_show_fdinfo(struct seq_file *m, struct file *f);
be77196b8   Cyrill Gorcunov   fs, notify: add p...
14
15
16
  #endif
  
  #ifdef CONFIG_FANOTIFY
a3816ab0e   Joe Perches   fs: Convert show_...
17
  void fanotify_show_fdinfo(struct seq_file *m, struct file *f);
be77196b8   Cyrill Gorcunov   fs, notify: add p...
18
19
20
21
22
23
24
25
26
27
  #endif
  
  #else /* CONFIG_PROC_FS */
  
  #define inotify_show_fdinfo	NULL
  #define fanotify_show_fdinfo	NULL
  
  #endif /* CONFIG_PROC_FS */
  
  #endif /* __FSNOTIFY_FDINFO_H__ */