Lines Matching refs:oe
101 struct ovl_entry *oe = kzalloc(size, GFP_KERNEL); in ovl_alloc_entry() local
103 if (oe) in ovl_alloc_entry()
104 oe->numlower = numlower; in ovl_alloc_entry()
106 return oe; in ovl_alloc_entry()
126 struct ovl_entry *oe = dentry->d_fsdata; in ovl_path_type() local
135 if (oe->numlower) { in ovl_path_type()
143 if (oe->numlower > 1) in ovl_path_type()
159 struct ovl_entry *oe = dentry->d_fsdata; in ovl_path_lower() local
161 if (oe->numlower) { in ovl_path_lower()
162 path->mnt = oe->lowerstack[0].layer->mnt; in ovl_path_lower()
163 path->dentry = oe->lowerstack[0].dentry; in ovl_path_lower()
171 struct ovl_entry *oe = dentry->d_fsdata; in ovl_path_lowerdata() local
173 if (oe->numlower) { in ovl_path_lowerdata()
174 path->mnt = oe->lowerstack[oe->numlower - 1].layer->mnt; in ovl_path_lowerdata()
175 path->dentry = oe->lowerstack[oe->numlower - 1].dentry; in ovl_path_lowerdata()
200 struct ovl_entry *oe = dentry->d_fsdata; in ovl_dentry_lower() local
202 return oe->numlower ? oe->lowerstack[0].dentry : NULL; in ovl_dentry_lower()
207 struct ovl_entry *oe = dentry->d_fsdata; in ovl_layer_lower() local
209 return oe->numlower ? oe->lowerstack[0].layer : NULL; in ovl_layer_lower()
220 struct ovl_entry *oe = dentry->d_fsdata; in ovl_dentry_lowerdata() local
222 return oe->numlower ? oe->lowerstack[oe->numlower - 1].dentry : NULL; in ovl_dentry_lowerdata()
868 struct ovl_entry *oe = dentry->d_fsdata; in ovl_is_metacopy_dentry() local
879 return (oe->numlower > 1); in ovl_is_metacopy_dentry()