Commit 061f7209 authored by Nathan Scott's avatar Nathan Scott

[XFS] Do not inherit properties for the quota inodes from the root inode.

SGI-PV: 945264
SGI-Modid: xfs-linux-melb:xfs-kern:24366a
Signed-off-by: default avatarNathan Scott <nathans@sgi.com>
parent 4ef19ddd
...@@ -1392,11 +1392,12 @@ xfs_qm_qino_alloc( ...@@ -1392,11 +1392,12 @@ xfs_qm_qino_alloc(
{ {
xfs_trans_t *tp; xfs_trans_t *tp;
int error; int error;
unsigned long s; unsigned long s;
cred_t zerocr; cred_t zerocr;
xfs_inode_t zeroino;
int committed; int committed;
tp = xfs_trans_alloc(mp,XFS_TRANS_QM_QINOCREATE); tp = xfs_trans_alloc(mp, XFS_TRANS_QM_QINOCREATE);
if ((error = xfs_trans_reserve(tp, if ((error = xfs_trans_reserve(tp,
XFS_QM_QINOCREATE_SPACE_RES(mp), XFS_QM_QINOCREATE_SPACE_RES(mp),
XFS_CREATE_LOG_RES(mp), 0, XFS_CREATE_LOG_RES(mp), 0,
...@@ -1406,8 +1407,9 @@ xfs_qm_qino_alloc( ...@@ -1406,8 +1407,9 @@ xfs_qm_qino_alloc(
return (error); return (error);
} }
memset(&zerocr, 0, sizeof(zerocr)); memset(&zerocr, 0, sizeof(zerocr));
memset(&zeroino, 0, sizeof(zeroino));
if ((error = xfs_dir_ialloc(&tp, mp->m_rootip, S_IFREG, 1, 0, if ((error = xfs_dir_ialloc(&tp, &zeroino, S_IFREG, 1, 0,
&zerocr, 0, 1, ip, &committed))) { &zerocr, 0, 1, ip, &committed))) {
xfs_trans_cancel(tp, XFS_TRANS_RELEASE_LOG_RES | xfs_trans_cancel(tp, XFS_TRANS_RELEASE_LOG_RES |
XFS_TRANS_ABORT); XFS_TRANS_ABORT);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment