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()
182 struct ovl_entry *oe = OVL_E(dentry); in ovl_path_type() local
191 if (ovl_numlower(oe)) { in ovl_path_type()
199 if (ovl_numlower(oe) > 1) in ovl_path_type()
215 struct ovl_entry *oe = OVL_E(dentry); in ovl_path_lower() local
216 struct ovl_path *lowerpath = ovl_lowerstack(oe); in ovl_path_lower()
218 if (ovl_numlower(oe)) { in ovl_path_lower()
228 struct ovl_entry *oe = OVL_E(dentry); in ovl_path_lowerdata() local
229 struct ovl_path *lowerdata = ovl_lowerdata(oe); in ovl_path_lowerdata()
230 struct dentry *lowerdata_dentry = ovl_lowerdata_dentry(oe); in ovl_path_lowerdata()
279 struct ovl_entry *oe = OVL_E(dentry); in ovl_dentry_lower() local
281 return ovl_numlower(oe) ? ovl_lowerstack(oe)->dentry : NULL; in ovl_dentry_lower()
286 struct ovl_entry *oe = OVL_E(dentry); in ovl_layer_lower() local
288 return ovl_numlower(oe) ? ovl_lowerstack(oe)->layer : NULL; in ovl_layer_lower()
304 struct ovl_entry *oe = OVL_E(dentry); in ovl_dentry_set_lowerdata() local
305 struct ovl_path *lowerdata = ovl_lowerdata(oe); in ovl_dentry_set_lowerdata()
308 if (WARN_ON_ONCE(ovl_numlower(oe) <= 1)) in ovl_dentry_set_lowerdata()
1191 struct ovl_entry *oe = OVL_E(dentry); in ovl_is_metacopy_dentry() local
1202 return (ovl_numlower(oe) > 1); in ovl_is_metacopy_dentry()