Lines Matching refs:oe
85 struct ovl_entry *oe = kzalloc(size, GFP_KERNEL);
87 if (oe)
88 oe->numlower = numlower;
90 return oe;
118 struct ovl_entry *oe = OVL_E(dentry);
123 for (i = 0; i < oe->numlower; i++)
124 flags |= oe->lowerstack[i].dentry->d_flags;
142 struct ovl_entry *oe = dentry->d_fsdata;
151 if (oe->numlower) {
159 if (oe->numlower > 1)
175 struct ovl_entry *oe = dentry->d_fsdata;
177 if (oe->numlower) {
178 path->mnt = oe->lowerstack[0].layer->mnt;
179 path->dentry = oe->lowerstack[0].dentry;
187 struct ovl_entry *oe = dentry->d_fsdata;
189 if (oe->numlower) {
190 path->mnt = oe->lowerstack[oe->numlower - 1].layer->mnt;
191 path->dentry = oe->lowerstack[oe->numlower - 1].dentry;
216 struct ovl_entry *oe = dentry->d_fsdata;
218 return oe->numlower ? oe->lowerstack[0].dentry : NULL;
223 struct ovl_entry *oe = dentry->d_fsdata;
225 return oe->numlower ? oe->lowerstack[0].layer : NULL;
236 struct ovl_entry *oe = dentry->d_fsdata;
238 return oe->numlower ? oe->lowerstack[oe->numlower - 1].dentry : NULL;
896 struct ovl_entry *oe = dentry->d_fsdata;
907 return (oe->numlower > 1);