Lines Matching refs:oe
97 struct ovl_entry *oe = kzalloc(size, GFP_KERNEL); in ovl_alloc_entry() local
99 if (oe) in ovl_alloc_entry()
100 oe->numlower = numlower; in ovl_alloc_entry()
102 return oe; in ovl_alloc_entry()
122 struct ovl_entry *oe = dentry->d_fsdata; in ovl_path_type() local
131 if (oe->numlower) { in ovl_path_type()
139 if (oe->numlower > 1) in ovl_path_type()
155 struct ovl_entry *oe = dentry->d_fsdata; in ovl_path_lower() local
157 if (oe->numlower) { in ovl_path_lower()
158 path->mnt = oe->lowerstack[0].layer->mnt; in ovl_path_lower()
159 path->dentry = oe->lowerstack[0].dentry; in ovl_path_lower()
167 struct ovl_entry *oe = dentry->d_fsdata; in ovl_path_lowerdata() local
169 if (oe->numlower) { in ovl_path_lowerdata()
170 path->mnt = oe->lowerstack[oe->numlower - 1].layer->mnt; in ovl_path_lowerdata()
171 path->dentry = oe->lowerstack[oe->numlower - 1].dentry; in ovl_path_lowerdata()
196 struct ovl_entry *oe = dentry->d_fsdata; in ovl_dentry_lower() local
198 return oe->numlower ? oe->lowerstack[0].dentry : NULL; in ovl_dentry_lower()
203 struct ovl_entry *oe = dentry->d_fsdata; in ovl_layer_lower() local
205 return oe->numlower ? oe->lowerstack[0].layer : NULL; in ovl_layer_lower()
216 struct ovl_entry *oe = dentry->d_fsdata; in ovl_dentry_lowerdata() local
218 return oe->numlower ? oe->lowerstack[oe->numlower - 1].dentry : NULL; in ovl_dentry_lowerdata()
861 struct ovl_entry *oe = dentry->d_fsdata; in ovl_is_metacopy_dentry() local
872 return (oe->numlower > 1); in ovl_is_metacopy_dentry()