Home
last modified time | relevance | path

Searched refs:realdentry (Results 1 – 3 of 3) sorted by relevance

/linux-4.1.27/fs/overlayfs/
Dinode.c94 struct dentry *realdentry; in ovl_permission() local
114 realdentry = ovl_entry_real(oe, &is_upper); in ovl_permission()
117 realinode = ACCESS_ONCE(realdentry->d_inode); in ovl_permission()
154 struct dentry *realdentry; member
161 struct dentry *realdentry; in ovl_follow_link() local
164 realdentry = ovl_dentry_real(dentry); in ovl_follow_link()
165 realinode = realdentry->d_inode; in ovl_follow_link()
170 ret = realinode->i_op->follow_link(realdentry, nd); in ovl_follow_link()
179 realinode->i_op->put_link(realdentry, nd, ret); in ovl_follow_link()
182 data->realdentry = realdentry; in ovl_follow_link()
[all …]
Dsuper.c137 struct dentry *realdentry; in ovl_dentry_real() local
139 realdentry = ovl_upperdentry_dereference(oe); in ovl_dentry_real()
140 if (!realdentry) in ovl_dentry_real()
141 realdentry = __ovl_dentry_lower(oe); in ovl_dentry_real()
143 return realdentry; in ovl_dentry_real()
148 struct dentry *realdentry; in ovl_entry_real() local
150 realdentry = ovl_upperdentry_dereference(oe); in ovl_entry_real()
151 if (realdentry) { in ovl_entry_real()
154 realdentry = __ovl_dentry_lower(oe); in ovl_entry_real()
157 return realdentry; in ovl_entry_real()
[all …]
Dcopy_up.c136 static char *ovl_read_symlink(struct dentry *realdentry) in ovl_read_symlink() argument
140 struct inode *inode = realdentry->d_inode; in ovl_read_symlink()
155 res = inode->i_op->readlink(realdentry, in ovl_read_symlink()