root/include/linux/proc_fs.h

/* [previous][next][first][last][top][bottom][index][help] */

INCLUDED FROM


   1 #ifndef _LINUX_PROC_FS_H
   2 #define _LINUX_PROC_FS_H
   3 
   4 /*
   5  * The proc filesystem constants/structures
   6  */
   7 
   8 #define PROC_ROOT_INO 1
   9 
  10 #define PROC_SUPER_MAGIC 0x9fa0
  11 
  12 extern struct super_block *proc_read_super(struct super_block *,void *);
  13 extern void proc_put_inode(struct inode *);
  14 extern void proc_put_super(struct super_block *);
  15 extern void proc_statfs(struct super_block *, struct statfs *);
  16 extern void proc_read_inode(struct inode *);
  17 extern void proc_write_inode(struct inode *);
  18 
  19 extern struct inode_operations proc_root_inode_operations;
  20 extern struct inode_operations proc_base_inode_operations;
  21 extern struct inode_operations proc_mem_inode_operations;
  22 extern struct inode_operations proc_link_inode_operations;
  23 extern struct inode_operations proc_fd_inode_operations;
  24 
  25 #endif

/* [previous][next][first][last][top][bottom][index][help] */