Lines Matching refs:oe
785 struct ovl_entry *oe = dentry->d_fsdata; in ovl_path_next() local
791 return oe->numlower ? 1 : -1; in ovl_path_next()
794 BUG_ON(idx > oe->numlower); in ovl_path_next()
795 path->dentry = oe->lowerstack[idx - 1].dentry; in ovl_path_next()
796 path->mnt = oe->lowerstack[idx - 1].layer->mnt; in ovl_path_next()
798 return (idx < oe->numlower) ? idx + 1 : -1; in ovl_path_next()
825 struct ovl_entry *oe; in ovl_lookup() local
1060 oe = ovl_alloc_entry(ctr); in ovl_lookup()
1062 if (!oe) in ovl_lookup()
1065 memcpy(oe->lowerstack, stack, sizeof(struct ovl_path) * ctr); in ovl_lookup()
1066 dentry->d_fsdata = oe; in ovl_lookup()
1120 kfree(oe); in ovl_lookup()