Lines Matching refs:proc_dentry
38 struct dentry *proc_dentry; member
144 struct dentry *proc_dentry, *parent; in hppfs_lookup() local
155 parent = HPPFS_I(ino)->proc_dentry; in hppfs_lookup()
157 proc_dentry = lookup_one_len(name->name, parent, name->len); in hppfs_lookup()
160 if (IS_ERR(proc_dentry)) in hppfs_lookup()
161 return proc_dentry; in hppfs_lookup()
164 inode = get_inode(ino->i_sb, proc_dentry); in hppfs_lookup()
438 path.dentry = HPPFS_I(inode)->proc_dentry; in hppfs_open()
494 path.dentry = HPPFS_I(inode)->proc_dentry; in hppfs_dir_open()
607 hi->proc_dentry = NULL; in hppfs_alloc_inode()
615 dput(HPPFS_I(ino)->proc_dentry); in hppfs_evict_inode()
640 struct dentry *proc_dentry = HPPFS_I(d_inode(dentry))->proc_dentry; in hppfs_readlink() local
641 return d_inode(proc_dentry)->i_op->readlink(proc_dentry, buffer, in hppfs_readlink()
647 struct dentry *proc_dentry = HPPFS_I(d_inode(dentry))->proc_dentry; in hppfs_follow_link() local
649 return d_inode(proc_dentry)->i_op->follow_link(proc_dentry, nd); in hppfs_follow_link()
655 struct dentry *proc_dentry = HPPFS_I(d_inode(dentry))->proc_dentry; in hppfs_put_link() local
657 if (d_inode(proc_dentry)->i_op->put_link) in hppfs_put_link()
658 d_inode(proc_dentry)->i_op->put_link(proc_dentry, nd, cookie); in hppfs_put_link()
692 HPPFS_I(inode)->proc_dentry = dentry; in get_inode()