Lines Matching refs:oe
779 struct ovl_entry *oe = dentry->d_fsdata;
785 return oe->numlower ? 1 : -1;
788 BUG_ON(idx > oe->numlower);
789 path->dentry = oe->lowerstack[idx - 1].dentry;
790 path->mnt = oe->lowerstack[idx - 1].layer->mnt;
792 return (idx < oe->numlower) ? idx + 1 : -1;
819 struct ovl_entry *oe;
1054 oe = ovl_alloc_entry(ctr);
1056 if (!oe)
1059 memcpy(oe->lowerstack, stack, sizeof(struct ovl_path) * ctr);
1060 dentry->d_fsdata = oe;
1114 kfree(oe);