Lines Matching refs:oe
127 static inline unsigned int ovl_numlower(struct ovl_entry *oe)
129 return oe ? oe->__numlower : 0;
132 static inline struct ovl_path *ovl_lowerstack(struct ovl_entry *oe)
134 return ovl_numlower(oe) ? oe->__lowerstack : NULL;
137 static inline struct ovl_path *ovl_lowerpath(struct ovl_entry *oe)
139 return ovl_lowerstack(oe);
142 static inline struct ovl_path *ovl_lowerdata(struct ovl_entry *oe)
144 struct ovl_path *lowerstack = ovl_lowerstack(oe);
146 return lowerstack ? &lowerstack[oe->__numlower - 1] : NULL;
150 static inline struct dentry *ovl_lowerdata_dentry(struct ovl_entry *oe)
152 struct ovl_path *lowerdata = ovl_lowerdata(oe);
173 struct ovl_entry *oe;
186 return inode ? OVL_I(inode)->oe : NULL;