Lines Matching refs:oe

89 	struct ovl_entry *oe = kzalloc(size, GFP_KERNEL);  in ovl_alloc_entry()  local
91 if (oe) in ovl_alloc_entry()
92 oe->numlower = numlower; in ovl_alloc_entry()
94 return oe; in ovl_alloc_entry()
106 struct ovl_entry *oe = OVL_E(dentry); in ovl_dentry_update_reval() local
111 for (i = 0; i < oe->numlower; i++) in ovl_dentry_update_reval()
112 flags |= oe->lowerstack[i].dentry->d_flags; in ovl_dentry_update_reval()
130 struct ovl_entry *oe = dentry->d_fsdata; in ovl_path_type() local
139 if (oe->numlower) { in ovl_path_type()
147 if (oe->numlower > 1) in ovl_path_type()
163 struct ovl_entry *oe = dentry->d_fsdata; in ovl_path_lower() local
165 if (oe->numlower) { in ovl_path_lower()
166 path->mnt = oe->lowerstack[0].layer->mnt; in ovl_path_lower()
167 path->dentry = oe->lowerstack[0].dentry; in ovl_path_lower()
175 struct ovl_entry *oe = dentry->d_fsdata; in ovl_path_lowerdata() local
177 if (oe->numlower) { in ovl_path_lowerdata()
178 path->mnt = oe->lowerstack[oe->numlower - 1].layer->mnt; in ovl_path_lowerdata()
179 path->dentry = oe->lowerstack[oe->numlower - 1].dentry; in ovl_path_lowerdata()
218 struct ovl_entry *oe = dentry->d_fsdata; in ovl_dentry_lower() local
220 return oe->numlower ? oe->lowerstack[0].dentry : NULL; in ovl_dentry_lower()
225 struct ovl_entry *oe = dentry->d_fsdata; in ovl_layer_lower() local
227 return oe->numlower ? oe->lowerstack[0].layer : NULL; in ovl_layer_lower()
238 struct ovl_entry *oe = dentry->d_fsdata; in ovl_dentry_lowerdata() local
240 return oe->numlower ? oe->lowerstack[oe->numlower - 1].dentry : NULL; in ovl_dentry_lowerdata()
1002 struct ovl_entry *oe = dentry->d_fsdata; in ovl_is_metacopy_dentry() local
1013 return (oe->numlower > 1); in ovl_is_metacopy_dentry()