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 /fs/afs | |
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 'fs/afs')
-rw-r--r-- | fs/afs/proc.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/fs/afs/proc.c b/fs/afs/proc.c index 096b23f821a1..526e4bbbde59 100644 --- a/fs/afs/proc.c +++ b/fs/afs/proc.c | |||
@@ -190,7 +190,7 @@ static int afs_proc_cells_open(struct inode *inode, struct file *file) | |||
190 | return ret; | 190 | return ret; |
191 | 191 | ||
192 | m = file->private_data; | 192 | m = file->private_data; |
193 | m->private = PDE(inode)->data; | 193 | m->private = PDE_DATA(inode); |
194 | 194 | ||
195 | return 0; | 195 | return 0; |
196 | } | 196 | } |
@@ -448,7 +448,7 @@ static int afs_proc_cell_volumes_open(struct inode *inode, struct file *file) | |||
448 | struct seq_file *m; | 448 | struct seq_file *m; |
449 | int ret; | 449 | int ret; |
450 | 450 | ||
451 | cell = PDE(inode)->data; | 451 | cell = PDE_DATA(inode); |
452 | if (!cell) | 452 | if (!cell) |
453 | return -ENOENT; | 453 | return -ENOENT; |
454 | 454 | ||
@@ -554,7 +554,7 @@ static int afs_proc_cell_vlservers_open(struct inode *inode, struct file *file) | |||
554 | struct seq_file *m; | 554 | struct seq_file *m; |
555 | int ret; | 555 | int ret; |
556 | 556 | ||
557 | cell = PDE(inode)->data; | 557 | cell = PDE_DATA(inode); |
558 | if (!cell) | 558 | if (!cell) |
559 | return -ENOENT; | 559 | return -ENOENT; |
560 | 560 | ||
@@ -659,7 +659,7 @@ static int afs_proc_cell_servers_open(struct inode *inode, struct file *file) | |||
659 | struct seq_file *m; | 659 | struct seq_file *m; |
660 | int ret; | 660 | int ret; |
661 | 661 | ||
662 | cell = PDE(inode)->data; | 662 | cell = PDE_DATA(inode); |
663 | if (!cell) | 663 | if (!cell) |
664 | return -ENOENT; | 664 | return -ENOENT; |
665 | 665 | ||