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
154 for (i = 0; ret > 0 && i < oe->numlower; i++) { in ovl_dentry_revalidate_common()
155 ret = ovl_revalidate_real(oe->lowerstack[i].dentry, flags, in ovl_dentry_revalidate_common()
1443 struct ovl_entry *oe, struct path *upperpath) in ovl_get_indexdir() argument
1455 oe->lowerstack[0].dentry, true); in ovl_get_indexdir()
1712 struct ovl_entry *oe; in ovl_get_lowerstack() local
1744 oe = ovl_alloc_entry(numlower); in ovl_get_lowerstack()
1745 if (!oe) in ovl_get_lowerstack()
1749 oe->lowerstack[i].dentry = dget(stack[i].dentry); in ovl_get_lowerstack()
1750 oe->lowerstack[i].layer = &ofs->layers[i+1]; in ovl_get_lowerstack()
1758 return oe; in ovl_get_lowerstack()
1761 oe = ERR_PTR(err); in ovl_get_lowerstack()
1840 struct ovl_entry *oe) in ovl_get_root() argument
1843 struct ovl_path *lowerpath = &oe->lowerstack[0]; in ovl_get_root()
1855 root->d_fsdata = oe; in ovl_get_root()
1880 struct ovl_entry *oe; in ovl_fill_super() local
1984 oe = ovl_get_lowerstack(sb, splitlower, numlower, ofs, layers); in ovl_fill_super()
1985 err = PTR_ERR(oe); in ovl_fill_super()
1986 if (IS_ERR(oe)) in ovl_fill_super()
1994 err = ovl_get_indexdir(sb, ofs, oe, &upperpath); in ovl_fill_super()
2034 root_dentry = ovl_get_root(sb, upperpath.dentry, oe); in ovl_fill_super()
2046 ovl_entry_stack_free(oe); in ovl_fill_super()
2047 kfree(oe); in ovl_fill_super()