Blame view

fs/notify/fdinfo.h 558 Bytes
b24413180   Greg Kroah-Hartman   License cleanup: ...
1
  /* SPDX-License-Identifier: GPL-2.0 */
be77196b8   Cyrill Gorcunov   fs, notify: add p...
2
3
4
5
6
7
8
9
10
11
12
13
  #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_...
14
  void inotify_show_fdinfo(struct seq_file *m, struct file *f);
be77196b8   Cyrill Gorcunov   fs, notify: add p...
15
16
17
  #endif
  
  #ifdef CONFIG_FANOTIFY
a3816ab0e   Joe Perches   fs: Convert show_...
18
  void fanotify_show_fdinfo(struct seq_file *m, struct file *f);
be77196b8   Cyrill Gorcunov   fs, notify: add p...
19
20
21
22
23
24
25
26
27
28
  #endif
  
  #else /* CONFIG_PROC_FS */
  
  #define inotify_show_fdinfo	NULL
  #define fanotify_show_fdinfo	NULL
  
  #endif /* CONFIG_PROC_FS */
  
  #endif /* __FSNOTIFY_FDINFO_H__ */