Lines Matching full:oe
56 static void ovl_entry_stack_free(struct ovl_entry *oe) in ovl_entry_stack_free() argument
60 for (i = 0; i < oe->numlower; i++) in ovl_entry_stack_free()
61 dput(oe->lowerstack[i].dentry); in ovl_entry_stack_free()
71 struct ovl_entry *oe = dentry->d_fsdata; in ovl_dentry_release() local
73 if (oe) { in ovl_dentry_release()
74 ovl_entry_stack_free(oe); in ovl_dentry_release()
75 kfree_rcu(oe, rcu); in ovl_dentry_release()
140 struct ovl_entry *oe = dentry->d_fsdata; in ovl_dentry_revalidate_common() local
149 for (i = 0; ret > 0 && i < oe->numlower; i++) { in ovl_dentry_revalidate_common()
150 ret = ovl_revalidate_real(oe->lowerstack[i].dentry, flags, in ovl_dentry_revalidate_common()
1520 struct ovl_entry *oe, struct path *upperpath) in ovl_get_indexdir() argument
1532 oe->lowerstack[0].dentry, true); in ovl_get_indexdir()
1796 struct ovl_entry *oe; in ovl_get_lowerstack() local
1828 oe = ovl_alloc_entry(numlower); in ovl_get_lowerstack()
1829 if (!oe) in ovl_get_lowerstack()
1833 oe->lowerstack[i].dentry = dget(stack[i].dentry); in ovl_get_lowerstack()
1834 oe->lowerstack[i].layer = &ofs->layers[i+1]; in ovl_get_lowerstack()
1842 return oe; in ovl_get_lowerstack()
1845 oe = ERR_PTR(err); in ovl_get_lowerstack()
1924 struct ovl_entry *oe) in ovl_get_root() argument
1927 struct ovl_path *lowerpath = &oe->lowerstack[0]; in ovl_get_root()
1939 root->d_fsdata = oe; in ovl_get_root()
1964 struct ovl_entry *oe; in ovl_fill_super() local
2077 oe = ovl_get_lowerstack(sb, splitlower, numlower, ofs, layers); in ovl_fill_super()
2078 err = PTR_ERR(oe); in ovl_fill_super()
2079 if (IS_ERR(oe)) in ovl_fill_super()
2092 err = ovl_get_indexdir(sb, ofs, oe, &upperpath); in ovl_fill_super()
2133 root_dentry = ovl_get_root(sb, upperpath.dentry, oe); in ovl_fill_super()
2145 ovl_entry_stack_free(oe); in ovl_fill_super()
2146 kfree(oe); in ovl_fill_super()