aboutsummaryrefslogtreecommitdiffstats
path: root/fs
diff options
context:
space:
mode:
authorTim Shimmin <tes@sgi.com>2007-10-14 23:18:59 -0400
committerTim Shimmin <tes@chook.melbourne.sgi.com>2007-10-16 00:23:21 -0400
commitcd514bdaa87e48b52d4074390043f19ce43ea2c4 (patch)
treee481409645bc53921eaef606b85798bdb257e1c6 /fs
parentbebf963fec2f319d162c18d06b6592f572c9c101 (diff)
[XFS] Put back the QUEUE_ORDERED_NONE test in the barrier check.
Put back the QUEUE_ORDERED_NONE test which caused us grief in sles when it was taken out as, IIRC, it allowed md/lvm to be thought of as supporting barriers when they weren't in some configurations. This patch will be reverting what went in as part of a change for the SGI-pv 964544 (SGI-Modid: xfs-linux-melb:xfs-kern:28568a). SGI-PV: 971783 SGI-Modid: xfs-linux-melb:xfs-kern:29882a Signed-off-by: Tim Shimmin <tes@sgi.com> Signed-off-by: David Chinner <dgc@sgi.com>
Diffstat (limited to 'fs')
-rw-r--r--fs/xfs/linux-2.6/xfs_super.c8
1 files changed, 8 insertions, 0 deletions
diff --git a/fs/xfs/linux-2.6/xfs_super.c b/fs/xfs/linux-2.6/xfs_super.c
index 02ec14eeb0ce..f90485828584 100644
--- a/fs/xfs/linux-2.6/xfs_super.c
+++ b/fs/xfs/linux-2.6/xfs_super.c
@@ -303,6 +303,14 @@ xfs_mountfs_check_barriers(xfs_mount_t *mp)
303 return; 303 return;
304 } 304 }
305 305
306 if (mp->m_ddev_targp->bt_bdev->bd_disk->queue->ordered ==
307 QUEUE_ORDERED_NONE) {
308 xfs_fs_cmn_err(CE_NOTE, mp,
309 "Disabling barriers, not supported by the underlying device");
310 mp->m_flags &= ~XFS_MOUNT_BARRIER;
311 return;
312 }
313
306 if (xfs_readonly_buftarg(mp->m_ddev_targp)) { 314 if (xfs_readonly_buftarg(mp->m_ddev_targp)) {
307 xfs_fs_cmn_err(CE_NOTE, mp, 315 xfs_fs_cmn_err(CE_NOTE, mp,
308 "Disabling barriers, underlying device is readonly"); 316 "Disabling barriers, underlying device is readonly");