Lines Matching refs:xaroot
123 struct dentry *xaroot;
130 xaroot = dget(REISERFS_SB(sb)->xattr_root);
131 if (!xaroot)
132 xaroot = ERR_PTR(-EOPNOTSUPP);
133 else if (d_really_is_negative(xaroot)) {
137 err = xattr_mkdir(d_inode(privroot), xaroot, 0700);
139 dput(xaroot);
140 xaroot = ERR_PTR(err);
145 return xaroot;
150 struct dentry *xaroot, *xadir;
153 xaroot = open_xa_root(inode->i_sb, flags);
154 if (IS_ERR(xaroot))
155 return xaroot;
161 inode_lock_nested(d_inode(xaroot), I_MUTEX_XATTR);
163 xadir = lookup_one_len(namebuf, xaroot, strlen(namebuf));
168 err = xattr_mkdir(d_inode(xaroot), xadir, 0700);
175 inode_unlock(d_inode(xaroot));
176 dput(xaroot);