mirror of
https://github.com/torvalds/linux.git
synced 2024-11-21 19:41:42 +00:00
fs/proc: make pde_get() return nothing
We don't need pde_get()'s return value, so make pde_get() return nothing Link: https://lkml.kernel.org/r/20201211061944.GA2387571@rlk Signed-off-by: Hui Su <sh_def@163.com> Cc: Alexey Dobriyan <adobriyan@gmail.com> Cc: Eric W. Biederman <ebiederm@xmission.com> Signed-off-by: Andrew Morton <akpm@linux-foundation.org> Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
This commit is contained in:
parent
c6c75deda8
commit
a9389683fa
@ -190,10 +190,9 @@ struct dentry *proc_lookup_de(struct inode *, struct dentry *, struct proc_dir_e
|
||||
extern int proc_readdir(struct file *, struct dir_context *);
|
||||
int proc_readdir_de(struct file *, struct dir_context *, struct proc_dir_entry *);
|
||||
|
||||
static inline struct proc_dir_entry *pde_get(struct proc_dir_entry *pde)
|
||||
static inline void pde_get(struct proc_dir_entry *pde)
|
||||
{
|
||||
refcount_inc(&pde->refcnt);
|
||||
return pde;
|
||||
}
|
||||
extern void pde_put(struct proc_dir_entry *);
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user