diff options
author | Al Viro <viro@zeniv.linux.org.uk> | 2013-03-31 18:16:14 -0400 |
---|---|---|
committer | Al Viro <viro@zeniv.linux.org.uk> | 2013-04-09 14:13:32 -0400 |
commit | d9dda78bad879595d8c4220a067fc029d6484a16 (patch) | |
tree | 376c47ed566b719009e753e917104b150a639b11 /arch/alpha | |
parent | 8510e30b46cd5467b2f930bef68a276dbc2c7d7c (diff) |
procfs: new helper - PDE_DATA(inode)
The only part of proc_dir_entry the code outside of fs/proc
really cares about is PDE(inode)->data. Provide a helper
for that; static inline for now, eventually will be moved
to fs/proc, along with the knowledge of struct proc_dir_entry
layout.
Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
Diffstat (limited to 'arch/alpha')
-rw-r--r-- | arch/alpha/kernel/srm_env.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/arch/alpha/kernel/srm_env.c b/arch/alpha/kernel/srm_env.c index e64559f0a82d..ef8769b6c98b 100644 --- a/arch/alpha/kernel/srm_env.c +++ b/arch/alpha/kernel/srm_env.c | |||
@@ -104,14 +104,14 @@ static int srm_env_proc_show(struct seq_file *m, void *v) | |||
104 | 104 | ||
105 | static int srm_env_proc_open(struct inode *inode, struct file *file) | 105 | static int srm_env_proc_open(struct inode *inode, struct file *file) |
106 | { | 106 | { |
107 | return single_open(file, srm_env_proc_show, PDE(inode)->data); | 107 | return single_open(file, srm_env_proc_show, PDE_DATA(inode)); |
108 | } | 108 | } |
109 | 109 | ||
110 | static ssize_t srm_env_proc_write(struct file *file, const char __user *buffer, | 110 | static ssize_t srm_env_proc_write(struct file *file, const char __user *buffer, |
111 | size_t count, loff_t *pos) | 111 | size_t count, loff_t *pos) |
112 | { | 112 | { |
113 | int res; | 113 | int res; |
114 | srm_env_t *entry = PDE(file_inode(file))->data; | 114 | srm_env_t *entry = PDE_DATA(file_inode(file)); |
115 | char *buf = (char *) __get_free_page(GFP_USER); | 115 | char *buf = (char *) __get_free_page(GFP_USER); |
116 | unsigned long ret1, ret2; | 116 | unsigned long ret1, ret2; |
117 | 117 | ||