Lines Matching full:oe
118 struct ovl_entry *oe = kzalloc(size, GFP_KERNEL); in ovl_alloc_entry() local
120 if (oe) in ovl_alloc_entry()
121 oe->__numlower = numlower; in ovl_alloc_entry()
123 return oe; in ovl_alloc_entry()
126 void ovl_free_entry(struct ovl_entry *oe) in ovl_free_entry() argument
128 ovl_stack_put(ovl_lowerstack(oe), ovl_numlower(oe)); in ovl_free_entry()
129 kfree(oe); in ovl_free_entry()
150 struct ovl_entry *oe) in ovl_dentry_init_reval() argument
152 return ovl_dentry_init_flags(dentry, upperdentry, oe, OVL_D_REVALIDATE); in ovl_dentry_init_reval()
156 struct ovl_entry *oe, unsigned int mask) in ovl_dentry_init_flags() argument
158 struct ovl_path *lowerstack = ovl_lowerstack(oe); in ovl_dentry_init_flags()
163 for (i = 0; i < ovl_numlower(oe) && lowerstack[i].dentry; i++) in ovl_dentry_init_flags()
185 struct ovl_entry *oe = OVL_E(dentry); in ovl_path_type() local
194 if (ovl_numlower(oe)) { in ovl_path_type()
202 if (ovl_numlower(oe) > 1) in ovl_path_type()
218 struct ovl_entry *oe = OVL_E(dentry); in ovl_path_lower() local
219 struct ovl_path *lowerpath = ovl_lowerstack(oe); in ovl_path_lower()
221 if (ovl_numlower(oe)) { in ovl_path_lower()
231 struct ovl_entry *oe = OVL_E(dentry); in ovl_path_lowerdata() local
232 struct ovl_path *lowerdata = ovl_lowerdata(oe); in ovl_path_lowerdata()
233 struct dentry *lowerdata_dentry = ovl_lowerdata_dentry(oe); in ovl_path_lowerdata()
284 struct ovl_entry *oe = OVL_E(dentry); in ovl_dentry_lower() local
286 return ovl_numlower(oe) ? ovl_lowerstack(oe)->dentry : NULL; in ovl_dentry_lower()
291 struct ovl_entry *oe = OVL_E(dentry); in ovl_layer_lower() local
293 return ovl_numlower(oe) ? ovl_lowerstack(oe)->layer : NULL; in ovl_layer_lower()
309 struct ovl_entry *oe = OVL_E(dentry); in ovl_dentry_set_lowerdata() local
310 struct ovl_path *lowerdata = ovl_lowerdata(oe); in ovl_dentry_set_lowerdata()
313 if (WARN_ON_ONCE(ovl_numlower(oe) <= 1)) in ovl_dentry_set_lowerdata()
1196 struct ovl_entry *oe = OVL_E(dentry); in ovl_is_metacopy_dentry() local
1207 return (ovl_numlower(oe) > 1); in ovl_is_metacopy_dentry()