Lines Matching refs:oe
57 static void ovl_entry_stack_free(struct ovl_entry *oe) in ovl_entry_stack_free() argument
61 for (i = 0; i < oe->numlower; i++) in ovl_entry_stack_free()
62 dput(oe->lowerstack[i].dentry); in ovl_entry_stack_free()
72 struct ovl_entry *oe = dentry->d_fsdata; in ovl_dentry_release() local
74 if (oe) { in ovl_dentry_release()
75 ovl_entry_stack_free(oe); in ovl_dentry_release()
76 kfree_rcu(oe, rcu); in ovl_dentry_release()
141 struct ovl_entry *oe = dentry->d_fsdata; in ovl_dentry_revalidate_common() local
155 for (i = 0; ret > 0 && i < oe->numlower; i++) { in ovl_dentry_revalidate_common()
156 ret = ovl_revalidate_real(oe->lowerstack[i].dentry, flags, in ovl_dentry_revalidate_common()
1453 struct ovl_entry *oe, const struct path *upperpath) in ovl_get_indexdir() argument
1465 oe->lowerstack[0].dentry, true); in ovl_get_indexdir()
1729 struct ovl_entry *oe; in ovl_get_lowerstack() local
1761 oe = ovl_alloc_entry(numlower); in ovl_get_lowerstack()
1762 if (!oe) in ovl_get_lowerstack()
1766 oe->lowerstack[i].dentry = dget(stack[i].dentry); in ovl_get_lowerstack()
1767 oe->lowerstack[i].layer = &ofs->layers[i+1]; in ovl_get_lowerstack()
1775 return oe; in ovl_get_lowerstack()
1778 oe = ERR_PTR(err); in ovl_get_lowerstack()
1857 struct ovl_entry *oe) in ovl_get_root() argument
1860 struct ovl_path *lowerpath = &oe->lowerstack[0]; in ovl_get_root()
1872 root->d_fsdata = oe; in ovl_get_root()
1897 struct ovl_entry *oe; in ovl_fill_super() local
2010 oe = ovl_get_lowerstack(sb, splitlower, numlower, ofs, layers); in ovl_fill_super()
2011 err = PTR_ERR(oe); in ovl_fill_super()
2012 if (IS_ERR(oe)) in ovl_fill_super()
2025 err = ovl_get_indexdir(sb, ofs, oe, &upperpath); in ovl_fill_super()
2066 root_dentry = ovl_get_root(sb, upperpath.dentry, oe); in ovl_fill_super()
2078 ovl_entry_stack_free(oe); in ovl_fill_super()
2079 kfree(oe); in ovl_fill_super()