Lines Matching refs:parent
81 * @parent: a pointer to the parent dentry for this file. This should be a
108 struct dentry *parent, void *data,
125 if (!parent)
126 parent = mount->mnt_root;
128 dir = d_inode(parent);
131 dentry = lookup_one_len(name, parent, strlen(name));
180 * @parent: a pointer to the parent dentry for this file. This should be a
201 struct dentry *parent, void *data,
204 return securityfs_create_dentry(name, mode, parent, data, fops, NULL);
213 * @parent: a pointer to the parent dentry for this file. This should be a
228 struct dentry *securityfs_create_dir(const char *name, struct dentry *parent)
230 return securityfs_create_file(name, S_IFDIR | 0755, parent, NULL, NULL);
239 * @parent: a pointer to the parent dentry for the symlink. This should be a
261 struct dentry *parent,
273 dent = securityfs_create_dentry(name, S_IFLNK | 0444, parent,