Blame view

kernel/linux-imx6_3.14.28/fs/notify/fdinfo.h 531 Bytes
6b13f685e   김민수   BSP 최초 추가
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
  #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
  extern int inotify_show_fdinfo(struct seq_file *m, struct file *f);
  #endif
  
  #ifdef CONFIG_FANOTIFY
  extern int fanotify_show_fdinfo(struct seq_file *m, struct file *f);
  #endif
  
  #else /* CONFIG_PROC_FS */
  
  #define inotify_show_fdinfo	NULL
  #define fanotify_show_fdinfo	NULL
  
  #endif /* CONFIG_PROC_FS */
  
  #endif /* __FSNOTIFY_FDINFO_H__ */