diff options
Diffstat (limited to 'fs/xfs/linux-2.6')
-rw-r--r-- | fs/xfs/linux-2.6/xfs_aops.c | 4 | ||||
-rw-r--r-- | fs/xfs/linux-2.6/xfs_file.c | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/fs/xfs/linux-2.6/xfs_aops.c b/fs/xfs/linux-2.6/xfs_aops.c index e42c0ba6688a..b25d11a3d84e 100644 --- a/fs/xfs/linux-2.6/xfs_aops.c +++ b/fs/xfs/linux-2.6/xfs_aops.c | |||
@@ -974,7 +974,7 @@ xfs_aops_discard_page( | |||
974 | */ | 974 | */ |
975 | error = xfs_bmapi(NULL, ip, offset_fsb, 1, | 975 | error = xfs_bmapi(NULL, ip, offset_fsb, 1, |
976 | XFS_BMAPI_ENTIRE, NULL, 0, &imap, | 976 | XFS_BMAPI_ENTIRE, NULL, 0, &imap, |
977 | &nimaps, NULL, NULL); | 977 | &nimaps, NULL); |
978 | 978 | ||
979 | if (error) { | 979 | if (error) { |
980 | /* something screwed, just bail */ | 980 | /* something screwed, just bail */ |
@@ -1002,7 +1002,7 @@ xfs_aops_discard_page( | |||
1002 | */ | 1002 | */ |
1003 | xfs_bmap_init(&flist, &firstblock); | 1003 | xfs_bmap_init(&flist, &firstblock); |
1004 | error = xfs_bunmapi(NULL, ip, offset_fsb, 1, 0, 1, &firstblock, | 1004 | error = xfs_bunmapi(NULL, ip, offset_fsb, 1, 0, 1, &firstblock, |
1005 | &flist, NULL, &done); | 1005 | &flist, &done); |
1006 | 1006 | ||
1007 | ASSERT(!flist.xbf_count && !flist.xbf_first); | 1007 | ASSERT(!flist.xbf_count && !flist.xbf_first); |
1008 | if (error) { | 1008 | if (error) { |
diff --git a/fs/xfs/linux-2.6/xfs_file.c b/fs/xfs/linux-2.6/xfs_file.c index 9a9b446a58a7..22edad7a0bec 100644 --- a/fs/xfs/linux-2.6/xfs_file.c +++ b/fs/xfs/linux-2.6/xfs_file.c | |||
@@ -414,7 +414,7 @@ xfs_zero_last_block( | |||
414 | last_fsb = XFS_B_TO_FSBT(mp, isize); | 414 | last_fsb = XFS_B_TO_FSBT(mp, isize); |
415 | nimaps = 1; | 415 | nimaps = 1; |
416 | error = xfs_bmapi(NULL, ip, last_fsb, 1, 0, NULL, 0, &imap, | 416 | error = xfs_bmapi(NULL, ip, last_fsb, 1, 0, NULL, 0, &imap, |
417 | &nimaps, NULL, NULL); | 417 | &nimaps, NULL); |
418 | if (error) { | 418 | if (error) { |
419 | return error; | 419 | return error; |
420 | } | 420 | } |
@@ -509,7 +509,7 @@ xfs_zero_eof( | |||
509 | nimaps = 1; | 509 | nimaps = 1; |
510 | zero_count_fsb = end_zero_fsb - start_zero_fsb + 1; | 510 | zero_count_fsb = end_zero_fsb - start_zero_fsb + 1; |
511 | error = xfs_bmapi(NULL, ip, start_zero_fsb, zero_count_fsb, | 511 | error = xfs_bmapi(NULL, ip, start_zero_fsb, zero_count_fsb, |
512 | 0, NULL, 0, &imap, &nimaps, NULL, NULL); | 512 | 0, NULL, 0, &imap, &nimaps, NULL); |
513 | if (error) { | 513 | if (error) { |
514 | ASSERT(xfs_isilocked(ip, XFS_ILOCK_EXCL|XFS_IOLOCK_EXCL)); | 514 | ASSERT(xfs_isilocked(ip, XFS_ILOCK_EXCL|XFS_IOLOCK_EXCL)); |
515 | return error; | 515 | return error; |