Lines Matching full:oe
149 struct ovl_entry *oe = kzalloc(size, GFP_KERNEL); in ovl_alloc_entry() local
151 if (oe) in ovl_alloc_entry()
152 oe->__numlower = numlower; in ovl_alloc_entry()
154 return oe; in ovl_alloc_entry()
157 void ovl_free_entry(struct ovl_entry *oe) in ovl_free_entry() argument
159 ovl_stack_put(ovl_lowerstack(oe), ovl_numlower(oe)); in ovl_free_entry()
160 kfree(oe); in ovl_free_entry()
181 struct ovl_entry *oe) in ovl_dentry_init_reval() argument
183 return ovl_dentry_init_flags(dentry, upperdentry, oe, OVL_D_REVALIDATE); in ovl_dentry_init_reval()
187 struct ovl_entry *oe, unsigned int mask) in ovl_dentry_init_flags() argument
189 struct ovl_path *lowerstack = ovl_lowerstack(oe); in ovl_dentry_init_flags()
194 for (i = 0; i < ovl_numlower(oe) && lowerstack[i].dentry; i++) in ovl_dentry_init_flags()
216 struct ovl_entry *oe = OVL_E(dentry); in ovl_path_type() local
225 if (ovl_numlower(oe)) { in ovl_path_type()
233 if (ovl_numlower(oe) > 1) in ovl_path_type()
249 struct ovl_entry *oe = OVL_E(dentry); in ovl_path_lower() local
250 struct ovl_path *lowerpath = ovl_lowerstack(oe); in ovl_path_lower()
252 if (ovl_numlower(oe)) { in ovl_path_lower()
262 struct ovl_entry *oe = OVL_E(dentry); in ovl_path_lowerdata() local
263 struct ovl_path *lowerdata = ovl_lowerdata(oe); in ovl_path_lowerdata()
264 struct dentry *lowerdata_dentry = ovl_lowerdata_dentry(oe); in ovl_path_lowerdata()
313 struct ovl_entry *oe = OVL_E(dentry); in ovl_dentry_lower() local
315 return ovl_numlower(oe) ? ovl_lowerstack(oe)->dentry : NULL; in ovl_dentry_lower()
320 struct ovl_entry *oe = OVL_E(dentry); in ovl_layer_lower() local
322 return ovl_numlower(oe) ? ovl_lowerstack(oe)->layer : NULL; in ovl_layer_lower()
338 struct ovl_entry *oe = OVL_E(dentry); in ovl_dentry_set_lowerdata() local
339 struct ovl_path *lowerdata = ovl_lowerdata(oe); in ovl_dentry_set_lowerdata()
342 if (WARN_ON_ONCE(ovl_numlower(oe) <= 1)) in ovl_dentry_set_lowerdata()
1316 struct ovl_entry *oe = OVL_E(dentry); in ovl_is_metacopy_dentry() local
1327 return (ovl_numlower(oe) > 1); in ovl_is_metacopy_dentry()