aboutsummaryrefslogtreecommitdiffstats
path: root/fs
diff options
context:
space:
mode:
Diffstat (limited to 'fs')
-rw-r--r--fs/proc/generic.c16
1 files changed, 4 insertions, 12 deletions
diff --git a/fs/proc/generic.c b/fs/proc/generic.c
index be39c6feb3e5..7fea13229f33 100644
--- a/fs/proc/generic.c
+++ b/fs/proc/generic.c
@@ -41,22 +41,14 @@ static int proc_match(unsigned int len, const char *name, struct proc_dir_entry
41 41
42static struct proc_dir_entry *pde_subdir_first(struct proc_dir_entry *dir) 42static struct proc_dir_entry *pde_subdir_first(struct proc_dir_entry *dir)
43{ 43{
44 struct rb_node *node = rb_first(&dir->subdir); 44 return rb_entry_safe(rb_first(&dir->subdir), struct proc_dir_entry,
45 45 subdir_node);
46 if (node == NULL)
47 return NULL;
48
49 return rb_entry(node, struct proc_dir_entry, subdir_node);
50} 46}
51 47
52static struct proc_dir_entry *pde_subdir_next(struct proc_dir_entry *dir) 48static struct proc_dir_entry *pde_subdir_next(struct proc_dir_entry *dir)
53{ 49{
54 struct rb_node *node = rb_next(&dir->subdir_node); 50 return rb_entry_safe(rb_next(&dir->subdir_node), struct proc_dir_entry,
55 51 subdir_node);
56 if (node == NULL)
57 return NULL;
58
59 return rb_entry(node, struct proc_dir_entry, subdir_node);
60} 52}
61 53
62static struct proc_dir_entry *pde_subdir_find(struct proc_dir_entry *dir, 54static struct proc_dir_entry *pde_subdir_find(struct proc_dir_entry *dir,