diff options
Diffstat (limited to 'fs/xfs/xfs_mount.c')
| -rw-r--r-- | fs/xfs/xfs_mount.c | 6 | 
1 files changed, 3 insertions, 3 deletions
diff --git a/fs/xfs/xfs_mount.c b/fs/xfs/xfs_mount.c index 41ae7e1590f..d5402b0eb6a 100644 --- a/fs/xfs/xfs_mount.c +++ b/fs/xfs/xfs_mount.c @@ -652,7 +652,7 @@ xfs_readsb(xfs_mount_t *mp, int flags)  reread:  	bp = xfs_buf_read_uncached(mp->m_ddev_targp, XFS_SB_DADDR, -					BTOBB(sector_size), 0); +					BTOBB(sector_size), 0, NULL);  	if (!bp) {  		if (loud)  			xfs_warn(mp, "SB buffer read failed"); @@ -1002,7 +1002,7 @@ xfs_check_sizes(xfs_mount_t *mp)  	}  	bp = xfs_buf_read_uncached(mp->m_ddev_targp,  					d - XFS_FSS_TO_BB(mp, 1), -					XFS_FSS_TO_BB(mp, 1), 0); +					XFS_FSS_TO_BB(mp, 1), 0, NULL);  	if (!bp) {  		xfs_warn(mp, "last sector read failed");  		return EIO; @@ -1017,7 +1017,7 @@ xfs_check_sizes(xfs_mount_t *mp)  		}  		bp = xfs_buf_read_uncached(mp->m_logdev_targp,  					d - XFS_FSB_TO_BB(mp, 1), -					XFS_FSB_TO_BB(mp, 1), 0); +					XFS_FSB_TO_BB(mp, 1), 0, NULL);  		if (!bp) {  			xfs_warn(mp, "log device read failed");  			return EIO;  |