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