diff options
Diffstat (limited to 'fs/xfs/xfs_iomap.c')
-rw-r--r-- | fs/xfs/xfs_iomap.c | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/fs/xfs/xfs_iomap.c b/fs/xfs/xfs_iomap.c index aeac00294a18..39ad46b3ed46 100644 --- a/fs/xfs/xfs_iomap.c +++ b/fs/xfs/xfs_iomap.c | |||
@@ -118,7 +118,7 @@ xfs_iomap( | |||
118 | error = xfs_bmapi(NULL, ip, offset_fsb, | 118 | error = xfs_bmapi(NULL, ip, offset_fsb, |
119 | (xfs_filblks_t)(end_fsb - offset_fsb), | 119 | (xfs_filblks_t)(end_fsb - offset_fsb), |
120 | bmapi_flags, NULL, 0, imap, | 120 | bmapi_flags, NULL, 0, imap, |
121 | nimaps, NULL, NULL); | 121 | nimaps, NULL); |
122 | 122 | ||
123 | if (error) | 123 | if (error) |
124 | goto out; | 124 | goto out; |
@@ -341,7 +341,7 @@ xfs_iomap_write_direct( | |||
341 | xfs_bmap_init(&free_list, &firstfsb); | 341 | xfs_bmap_init(&free_list, &firstfsb); |
342 | nimaps = 1; | 342 | nimaps = 1; |
343 | error = xfs_bmapi(tp, ip, offset_fsb, count_fsb, bmapi_flag, | 343 | error = xfs_bmapi(tp, ip, offset_fsb, count_fsb, bmapi_flag, |
344 | &firstfsb, 0, &imap, &nimaps, &free_list, NULL); | 344 | &firstfsb, 0, &imap, &nimaps, &free_list); |
345 | if (error) | 345 | if (error) |
346 | goto error0; | 346 | goto error0; |
347 | 347 | ||
@@ -419,7 +419,7 @@ xfs_iomap_eof_want_preallocate( | |||
419 | imaps = nimaps; | 419 | imaps = nimaps; |
420 | firstblock = NULLFSBLOCK; | 420 | firstblock = NULLFSBLOCK; |
421 | error = xfs_bmapi(NULL, ip, start_fsb, count_fsb, 0, | 421 | error = xfs_bmapi(NULL, ip, start_fsb, count_fsb, 0, |
422 | &firstblock, 0, imap, &imaps, NULL, NULL); | 422 | &firstblock, 0, imap, &imaps, NULL); |
423 | if (error) | 423 | if (error) |
424 | return error; | 424 | return error; |
425 | for (n = 0; n < imaps; n++) { | 425 | for (n = 0; n < imaps; n++) { |
@@ -494,7 +494,7 @@ retry: | |||
494 | (xfs_filblks_t)(last_fsb - offset_fsb), | 494 | (xfs_filblks_t)(last_fsb - offset_fsb), |
495 | XFS_BMAPI_DELAY | XFS_BMAPI_WRITE | | 495 | XFS_BMAPI_DELAY | XFS_BMAPI_WRITE | |
496 | XFS_BMAPI_ENTIRE, &firstblock, 1, imap, | 496 | XFS_BMAPI_ENTIRE, &firstblock, 1, imap, |
497 | &nimaps, NULL, NULL); | 497 | &nimaps, NULL); |
498 | if (error && (error != ENOSPC)) | 498 | if (error && (error != ENOSPC)) |
499 | return XFS_ERROR(error); | 499 | return XFS_ERROR(error); |
500 | 500 | ||
@@ -650,7 +650,7 @@ xfs_iomap_write_allocate( | |||
650 | /* Go get the actual blocks */ | 650 | /* Go get the actual blocks */ |
651 | error = xfs_bmapi(tp, ip, map_start_fsb, count_fsb, | 651 | error = xfs_bmapi(tp, ip, map_start_fsb, count_fsb, |
652 | XFS_BMAPI_WRITE, &first_block, 1, | 652 | XFS_BMAPI_WRITE, &first_block, 1, |
653 | &imap, &nimaps, &free_list, NULL); | 653 | &imap, &nimaps, &free_list); |
654 | if (error) | 654 | if (error) |
655 | goto trans_cancel; | 655 | goto trans_cancel; |
656 | 656 | ||
@@ -768,7 +768,7 @@ xfs_iomap_write_unwritten( | |||
768 | nimaps = 1; | 768 | nimaps = 1; |
769 | error = xfs_bmapi(tp, ip, offset_fsb, count_fsb, | 769 | error = xfs_bmapi(tp, ip, offset_fsb, count_fsb, |
770 | XFS_BMAPI_WRITE|XFS_BMAPI_CONVERT, &firstfsb, | 770 | XFS_BMAPI_WRITE|XFS_BMAPI_CONVERT, &firstfsb, |
771 | 1, &imap, &nimaps, &free_list, NULL); | 771 | 1, &imap, &nimaps, &free_list); |
772 | if (error) | 772 | if (error) |
773 | goto error_on_bmapi_transaction; | 773 | goto error_on_bmapi_transaction; |
774 | 774 | ||