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 /drivers/scsi/scsi_proc.c | |
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 'drivers/scsi/scsi_proc.c')
-rw-r--r-- | drivers/scsi/scsi_proc.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/scsi/scsi_proc.c b/drivers/scsi/scsi_proc.c index 1eb34c34d7b9..db66357211ed 100644 --- a/drivers/scsi/scsi_proc.c +++ b/drivers/scsi/scsi_proc.c | |||
@@ -48,7 +48,7 @@ static DEFINE_MUTEX(global_host_template_mutex); | |||
48 | static ssize_t proc_scsi_host_write(struct file *file, const char __user *buf, | 48 | static ssize_t proc_scsi_host_write(struct file *file, const char __user *buf, |
49 | size_t count, loff_t *ppos) | 49 | size_t count, loff_t *ppos) |
50 | { | 50 | { |
51 | struct Scsi_Host *shost = PDE(file_inode(file))->data; | 51 | struct Scsi_Host *shost = PDE_DATA(file_inode(file)); |
52 | ssize_t ret = -ENOMEM; | 52 | ssize_t ret = -ENOMEM; |
53 | char *page; | 53 | char *page; |
54 | 54 | ||
@@ -78,7 +78,7 @@ static int proc_scsi_show(struct seq_file *m, void *v) | |||
78 | 78 | ||
79 | static int proc_scsi_host_open(struct inode *inode, struct file *file) | 79 | static int proc_scsi_host_open(struct inode *inode, struct file *file) |
80 | { | 80 | { |
81 | return single_open_size(file, proc_scsi_show, PDE(inode)->data, | 81 | return single_open_size(file, proc_scsi_show, PDE_DATA(inode), |
82 | 4 * PAGE_SIZE); | 82 | 4 * PAGE_SIZE); |
83 | } | 83 | } |
84 | 84 | ||