Lines Matching refs: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()
118 struct ovl_entry *oe = dentry->d_fsdata; in ovl_dentry_revalidate() local
122 for (i = 0; i < oe->numlower; i++) { in ovl_dentry_revalidate()
123 struct dentry *d = oe->lowerstack[i].dentry; in ovl_dentry_revalidate()
141 struct ovl_entry *oe = dentry->d_fsdata; in ovl_dentry_weak_revalidate() local
145 for (i = 0; i < oe->numlower; i++) { in ovl_dentry_weak_revalidate()
146 struct dentry *d = oe->lowerstack[i].dentry; in ovl_dentry_weak_revalidate()
1200 struct ovl_entry *oe, struct path *upperpath) in ovl_get_indexdir() argument
1210 err = ovl_verify_origin(upperpath->dentry, oe->lowerstack[0].dentry, in ovl_get_indexdir()
1411 struct ovl_entry *oe; in ovl_get_lowerstack() local
1461 oe = ovl_alloc_entry(numlower); in ovl_get_lowerstack()
1462 if (!oe) in ovl_get_lowerstack()
1466 oe->lowerstack[i].dentry = dget(stack[i].dentry); in ovl_get_lowerstack()
1467 oe->lowerstack[i].layer = &ofs->lower_layers[i]; in ovl_get_lowerstack()
1481 return oe; in ovl_get_lowerstack()
1484 oe = ERR_PTR(err); in ovl_get_lowerstack()
1563 struct ovl_entry *oe; in ovl_fill_super() local
1622 oe = ovl_get_lowerstack(sb, ofs); in ovl_fill_super()
1623 err = PTR_ERR(oe); in ovl_fill_super()
1624 if (IS_ERR(oe)) in ovl_fill_super()
1632 err = ovl_get_indexdir(sb, ofs, oe, &upperpath); in ovl_fill_super()
1679 root_dentry->d_fsdata = oe; in ovl_fill_super()
1700 ovl_entry_stack_free(oe); in ovl_fill_super()
1701 kfree(oe); in ovl_fill_super()