[XFS] Implement the silent parameter to fill_super, previously ignored.
[deliverable/linux.git] / fs / xfs / xfs_vfsops.c
index 504d2a80747a70be21686fee02cf6fb87f32cd46..89020c15d88a41999c844d36ff1ad39b68501e01 100644 (file)
@@ -442,6 +442,9 @@ xfs_mount(
        p = vfs_bhv_lookup(vfsp, VFS_POSITION_IO);
        mp->m_io_ops = p ? *(xfs_ioops_t *) vfs_bhv_custom(p) : xfs_iocore_xfs;
 
+       if (args->flags & XFSMNT_QUIET)
+               flags |= XFS_MFSI_QUIET;
+
        /*
         * Open real time and log devices - order is important.
         */
@@ -492,7 +495,7 @@ xfs_mount(
        error = xfs_start_flags(vfsp, args, mp);
        if (error)
                goto error1;
-       error = xfs_readsb(mp);
+       error = xfs_readsb(mp, flags);
        if (error)
                goto error1;
        error = xfs_finish_flags(vfsp, args, mp);
This page took 0.026605 seconds and 5 git commands to generate.