Lines Matching refs:oe

59 static void ovl_entry_stack_free(struct ovl_entry *oe)  in ovl_entry_stack_free()  argument
63 for (i = 0; i < oe->numlower; i++) in ovl_entry_stack_free()
64 dput(oe->lowerstack[i].dentry); in ovl_entry_stack_free()
74 struct ovl_entry *oe = dentry->d_fsdata; in ovl_dentry_release() local
76 if (oe) { in ovl_dentry_release()
77 ovl_entry_stack_free(oe); in ovl_dentry_release()
78 kfree_rcu(oe, rcu); in ovl_dentry_release()
124 struct ovl_entry *oe = dentry->d_fsdata; in ovl_dentry_revalidate() local
128 for (i = 0; i < oe->numlower; i++) { in ovl_dentry_revalidate()
129 struct dentry *d = oe->lowerstack[i].dentry; in ovl_dentry_revalidate()
147 struct ovl_entry *oe = dentry->d_fsdata; in ovl_dentry_weak_revalidate() local
151 for (i = 0; i < oe->numlower; i++) { in ovl_dentry_weak_revalidate()
152 struct dentry *d = oe->lowerstack[i].dentry; in ovl_dentry_weak_revalidate()
1211 struct ovl_entry *oe, struct path *upperpath) in ovl_get_indexdir() argument
1221 err = ovl_verify_origin(upperpath->dentry, oe->lowerstack[0].dentry, in ovl_get_indexdir()
1403 struct ovl_entry *oe; in ovl_get_lowerstack() local
1453 oe = ovl_alloc_entry(numlower); in ovl_get_lowerstack()
1454 if (!oe) in ovl_get_lowerstack()
1458 oe->lowerstack[i].dentry = dget(stack[i].dentry); in ovl_get_lowerstack()
1459 oe->lowerstack[i].layer = &ofs->lower_layers[i]; in ovl_get_lowerstack()
1473 return oe; in ovl_get_lowerstack()
1476 oe = ERR_PTR(err); in ovl_get_lowerstack()
1557 struct ovl_entry *oe; in ovl_fill_super() local
1616 oe = ovl_get_lowerstack(sb, ofs); in ovl_fill_super()
1617 err = PTR_ERR(oe); in ovl_fill_super()
1618 if (IS_ERR(oe)) in ovl_fill_super()
1626 err = ovl_get_indexdir(sb, ofs, oe, &upperpath); in ovl_fill_super()
1673 root_dentry->d_fsdata = oe; in ovl_fill_super()
1694 ovl_entry_stack_free(oe); in ovl_fill_super()
1695 kfree(oe); in ovl_fill_super()