xaroot            122 fs/reiserfs/xattr.c 	struct dentry *xaroot;
xaroot            129 fs/reiserfs/xattr.c 	xaroot = dget(REISERFS_SB(sb)->xattr_root);
xaroot            130 fs/reiserfs/xattr.c 	if (!xaroot)
xaroot            131 fs/reiserfs/xattr.c 		xaroot = ERR_PTR(-EOPNOTSUPP);
xaroot            132 fs/reiserfs/xattr.c 	else if (d_really_is_negative(xaroot)) {
xaroot            136 fs/reiserfs/xattr.c 			err = xattr_mkdir(d_inode(privroot), xaroot, 0700);
xaroot            138 fs/reiserfs/xattr.c 			dput(xaroot);
xaroot            139 fs/reiserfs/xattr.c 			xaroot = ERR_PTR(err);
xaroot            144 fs/reiserfs/xattr.c 	return xaroot;
xaroot            149 fs/reiserfs/xattr.c 	struct dentry *xaroot, *xadir;
xaroot            152 fs/reiserfs/xattr.c 	xaroot = open_xa_root(inode->i_sb, flags);
xaroot            153 fs/reiserfs/xattr.c 	if (IS_ERR(xaroot))
xaroot            154 fs/reiserfs/xattr.c 		return xaroot;
xaroot            160 fs/reiserfs/xattr.c 	inode_lock_nested(d_inode(xaroot), I_MUTEX_XATTR);
xaroot            162 fs/reiserfs/xattr.c 	xadir = lookup_one_len(namebuf, xaroot, strlen(namebuf));
xaroot            167 fs/reiserfs/xattr.c 			err = xattr_mkdir(d_inode(xaroot), xadir, 0700);
xaroot            174 fs/reiserfs/xattr.c 	inode_unlock(d_inode(xaroot));
xaroot            175 fs/reiserfs/xattr.c 	dput(xaroot);