diff options
author | Christoph Hellwig <hch@infradead.org> | 2009-09-09 19:19:02 -0400 |
---|---|---|
committer | Alex Elder <aelder@sgi.com> | 2009-09-09 19:19:02 -0400 |
commit | 4734d401d43c6469d568caf223d37aa0fc1bf4dc (patch) | |
tree | d73cbfd3537a5681ab5523e320a55b240b2fdd72 /fs | |
parent | 988abe4075e5748d9f7c79d9dfffa0cf5291611b (diff) |
xfs: use correct log reservation when handling ENOSPC in xfs_create
We added the ENOSPC handling patch in xfs_create just after it got mered
with xfs_mkdir. Change the log reservation to the variable for either
the create or mkdir value so it does the right thing if get here for creating
a directory.
Signed-off-by: Christoph Hellwig <hch@lst.de>
Signed-off-by: Alex Elder <aelder@sgi.com>
Diffstat (limited to 'fs')
-rw-r--r-- | fs/xfs/xfs_vnodeops.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/fs/xfs/xfs_vnodeops.c b/fs/xfs/xfs_vnodeops.c index 03d3100559ac..a434f287962d 100644 --- a/fs/xfs/xfs_vnodeops.c +++ b/fs/xfs/xfs_vnodeops.c | |||
@@ -1471,8 +1471,8 @@ xfs_create( | |||
1471 | if (error == ENOSPC) { | 1471 | if (error == ENOSPC) { |
1472 | /* flush outstanding delalloc blocks and retry */ | 1472 | /* flush outstanding delalloc blocks and retry */ |
1473 | xfs_flush_inodes(dp); | 1473 | xfs_flush_inodes(dp); |
1474 | error = xfs_trans_reserve(tp, resblks, XFS_CREATE_LOG_RES(mp), 0, | 1474 | error = xfs_trans_reserve(tp, resblks, log_res, 0, |
1475 | XFS_TRANS_PERM_LOG_RES, XFS_CREATE_LOG_COUNT); | 1475 | XFS_TRANS_PERM_LOG_RES, log_count); |
1476 | } | 1476 | } |
1477 | if (error == ENOSPC) { | 1477 | if (error == ENOSPC) { |
1478 | /* No space at all so try a "no-allocation" reservation */ | 1478 | /* No space at all so try a "no-allocation" reservation */ |