summaryrefslogtreecommitdiff
path: root/release/src/linux/linux/include/linux/proc_fs_i.h
blob: d4bde098908441963a586fe8e6416be0d0c5cff1 (plain)
1
2
3
4
5
6
7
8
9
struct proc_inode_info {
	struct task_struct *task;
	int type;
	union {
		int (*proc_get_link)(struct inode *, struct dentry **, struct vfsmount **);
		int (*proc_read)(struct task_struct *task, char *page);
	} op;
	struct file *file;
};