Lines Matching refs:oe
765 struct ovl_entry *oe = dentry->d_fsdata; in ovl_path_next() local
771 return oe->numlower ? 1 : -1; in ovl_path_next()
774 BUG_ON(idx > oe->numlower); in ovl_path_next()
775 path->dentry = oe->lowerstack[idx - 1].dentry; in ovl_path_next()
776 path->mnt = oe->lowerstack[idx - 1].layer->mnt; in ovl_path_next()
778 return (idx < oe->numlower) ? idx + 1 : -1; in ovl_path_next()
805 struct ovl_entry *oe; in ovl_lookup() local
1034 oe = ovl_alloc_entry(ctr); in ovl_lookup()
1036 if (!oe) in ovl_lookup()
1039 memcpy(oe->lowerstack, stack, sizeof(struct ovl_path) * ctr); in ovl_lookup()
1040 dentry->d_fsdata = oe; in ovl_lookup()
1086 kfree(oe); in ovl_lookup()