Lines Matching full: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()
121 struct ovl_entry *oe = dentry->d_fsdata; in ovl_dentry_revalidate() local
125 for (i = 0; i < oe->numlower; i++) { in ovl_dentry_revalidate()
126 struct dentry *d = oe->lowerstack[i].dentry; in ovl_dentry_revalidate()
144 struct ovl_entry *oe = dentry->d_fsdata; in ovl_dentry_weak_revalidate() local
148 for (i = 0; i < oe->numlower; i++) { in ovl_dentry_weak_revalidate()
149 struct dentry *d = oe->lowerstack[i].dentry; in ovl_dentry_weak_revalidate()
1204 struct ovl_entry *oe, struct path *upperpath) in ovl_get_indexdir() argument
1214 err = ovl_verify_origin(upperpath->dentry, oe->lowerstack[0].dentry, in ovl_get_indexdir()
1396 struct ovl_entry *oe; in ovl_get_lowerstack() local
1446 oe = ovl_alloc_entry(numlower); in ovl_get_lowerstack()
1447 if (!oe) in ovl_get_lowerstack()
1451 oe->lowerstack[i].dentry = dget(stack[i].dentry); in ovl_get_lowerstack()
1452 oe->lowerstack[i].layer = &ofs->lower_layers[i]; in ovl_get_lowerstack()
1466 return oe; in ovl_get_lowerstack()
1469 oe = ERR_PTR(err); in ovl_get_lowerstack()
1548 struct ovl_entry *oe; in ovl_fill_super() local
1607 oe = ovl_get_lowerstack(sb, ofs); in ovl_fill_super()
1608 err = PTR_ERR(oe); in ovl_fill_super()
1609 if (IS_ERR(oe)) in ovl_fill_super()
1617 err = ovl_get_indexdir(sb, ofs, oe, &upperpath); in ovl_fill_super()
1664 root_dentry->d_fsdata = oe; in ovl_fill_super()
1685 ovl_entry_stack_free(oe); in ovl_fill_super()
1686 kfree(oe); in ovl_fill_super()