diff options
Diffstat (limited to 'fs/xfs/xfs_rtalloc.c')
-rw-r--r-- | fs/xfs/xfs_rtalloc.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/fs/xfs/xfs_rtalloc.c b/fs/xfs/xfs_rtalloc.c index a69e0b4750a9..b271ed939d7b 100644 --- a/fs/xfs/xfs_rtalloc.c +++ b/fs/xfs/xfs_rtalloc.c | |||
@@ -870,7 +870,7 @@ xfs_rtbuf_get( | |||
870 | ASSERT(map.br_startblock != NULLFSBLOCK); | 870 | ASSERT(map.br_startblock != NULLFSBLOCK); |
871 | error = xfs_trans_read_buf(mp, tp, mp->m_ddev_targp, | 871 | error = xfs_trans_read_buf(mp, tp, mp->m_ddev_targp, |
872 | XFS_FSB_TO_DADDR(mp, map.br_startblock), | 872 | XFS_FSB_TO_DADDR(mp, map.br_startblock), |
873 | mp->m_bsize, 0, &bp); | 873 | mp->m_bsize, 0, &bp, NULL); |
874 | if (error) | 874 | if (error) |
875 | return error; | 875 | return error; |
876 | ASSERT(!xfs_buf_geterror(bp)); | 876 | ASSERT(!xfs_buf_geterror(bp)); |
@@ -1873,7 +1873,7 @@ xfs_growfs_rt( | |||
1873 | */ | 1873 | */ |
1874 | bp = xfs_buf_read_uncached(mp->m_rtdev_targp, | 1874 | bp = xfs_buf_read_uncached(mp->m_rtdev_targp, |
1875 | XFS_FSB_TO_BB(mp, nrblocks - 1), | 1875 | XFS_FSB_TO_BB(mp, nrblocks - 1), |
1876 | XFS_FSB_TO_BB(mp, 1), 0); | 1876 | XFS_FSB_TO_BB(mp, 1), 0, NULL); |
1877 | if (!bp) | 1877 | if (!bp) |
1878 | return EIO; | 1878 | return EIO; |
1879 | xfs_buf_relse(bp); | 1879 | xfs_buf_relse(bp); |
@@ -2220,7 +2220,7 @@ xfs_rtmount_init( | |||
2220 | } | 2220 | } |
2221 | bp = xfs_buf_read_uncached(mp->m_rtdev_targp, | 2221 | bp = xfs_buf_read_uncached(mp->m_rtdev_targp, |
2222 | d - XFS_FSB_TO_BB(mp, 1), | 2222 | d - XFS_FSB_TO_BB(mp, 1), |
2223 | XFS_FSB_TO_BB(mp, 1), 0); | 2223 | XFS_FSB_TO_BB(mp, 1), 0, NULL); |
2224 | if (!bp) { | 2224 | if (!bp) { |
2225 | xfs_warn(mp, "realtime device size check failed"); | 2225 | xfs_warn(mp, "realtime device size check failed"); |
2226 | return EIO; | 2226 | return EIO; |