patch-1.3.18 linux/include/linux/proc_fs.h
Next file: linux/include/net/netrom.h
Previous file: linux/include/linux/lp.h
Back to the patch index
Back to the overall index
- Lines: 39
- Date:
Sun Aug 13 14:04:18 1995
- Orig file:
v1.3.17/linux/include/linux/proc_fs.h
- Orig date:
Wed Aug 9 14:55:43 1995
diff -u --recursive --new-file v1.3.17/linux/include/linux/proc_fs.h linux/include/linux/proc_fs.h
@@ -116,11 +116,28 @@
#define PROC_SUPER_MAGIC 0x9fa0
+/*
+ * This is not completely implemented yet. The idea is to
+ * create a in-memory tree (like the actual /proc filesystem
+ * tree) of these proc_dir_entries, so that we can dynamically
+ * add new files to /proc.
+ *
+ * The "next" pointer creates a linked list of one /proc directory,
+ * while parent/subdir create the directory structure (every
+ * /proc file has a parent, but "subdir" is NULL for all
+ * non-directory entries).
+ *
+ * "get_info" is called at "read", while "fill_inode" is used to
+ * fill in file type/protection/owner information specific to the
+ * particular /proc file.
+ */
struct proc_dir_entry {
unsigned short low_ino;
- int (*get_info)(char *, char **, off_t, int, int);
unsigned short namelen;
- const char * name;
+ const char *name;
+ int (*get_info)(char *, char **, off_t, int, int);
+ void (*fill_inode)(struct inode *);
+ struct proc_dir_entry *next, *parent, *subdir;
};
extern struct super_block *proc_read_super(struct super_block *,void *,int);
@@ -136,6 +153,7 @@
extern struct inode_operations proc_root_inode_operations;
extern struct inode_operations proc_base_inode_operations;
extern struct inode_operations proc_net_inode_operations;
+extern struct inode_operations proc_netdir_inode_operations;
extern struct inode_operations proc_scsi_inode_operations;
extern struct inode_operations proc_mem_inode_operations;
extern struct inode_operations proc_array_inode_operations;
FUNET's LINUX-ADM group, linux-adm@nic.funet.fi
TCL-scripts by Sam Shen, slshen@lbl.gov
with Sam's (original) version of this