Lines Matching refs:oe
768 struct ovl_entry *oe = dentry->d_fsdata; in ovl_path_next() local
774 return oe->numlower ? 1 : -1; in ovl_path_next()
777 BUG_ON(idx > oe->numlower); in ovl_path_next()
778 path->dentry = oe->lowerstack[idx - 1].dentry; in ovl_path_next()
779 path->mnt = oe->lowerstack[idx - 1].layer->mnt; in ovl_path_next()
781 return (idx < oe->numlower) ? idx + 1 : -1; in ovl_path_next()
808 struct ovl_entry *oe; in ovl_lookup() local
1037 oe = ovl_alloc_entry(ctr); in ovl_lookup()
1039 if (!oe) in ovl_lookup()
1042 memcpy(oe->lowerstack, stack, sizeof(struct ovl_path) * ctr); in ovl_lookup()
1043 dentry->d_fsdata = oe; in ovl_lookup()
1089 kfree(oe); in ovl_lookup()