[XFS] Make quiet mounts quiet
authorDavid Chinner <dgc@sgi.com>
Sat, 10 Feb 2007 07:27:56 +0000 (18:27 +1100)
committerTim Shimmin <tes@sgi.com>
Sat, 10 Feb 2007 07:27:56 +0000 (18:27 +1100)
The XFS quiet mount logic was inverted making quiet mounts noisy and vice
versa. Fix it.

SGI-PV: 958469
SGI-Modid: xfs-linux-melb:xfs-kern:27520a

Signed-off-by: David Chinner <dgc@sgi.com>
Signed-off-by: Eric Sandeen <sandeen@sandeen.net>
Signed-off-by: Tim Shimmin <tes@sgi.com>
fs/xfs/xfs_error.h

index 0893e16b7d834a20a7cf9ef96189336fabcbaa90..86d22efdd56c247bc23934a94cee9e0cd040b998 100644 (file)
@@ -180,6 +180,6 @@ extern void xfs_fs_cmn_err(int level, struct xfs_mount *mp, char *fmt, ...);
        xfs_fs_cmn_err(level, mp, fmt "  Unmount and run xfs_repair.", ## args)
 
 #define xfs_fs_mount_cmn_err(f, fmt, args...) \
-       ((f & XFS_MFSI_QUIET)? cmn_err(CE_WARN, "XFS: " fmt, ## args) : (void)0)
+       ((f & XFS_MFSI_QUIET)? (void)0 : cmn_err(CE_WARN, "XFS: " fmt, ## args))
 
 #endif /* __XFS_ERROR_H__ */