If the MMP block reads without error, don't spam dmesg with warnings. Signed-off-by: Darrick J. Wong <darrick.wong@xxxxxxxxxx> --- fs/ext4/mmp.c | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/fs/ext4/mmp.c b/fs/ext4/mmp.c index 6eb1a61..7bc0873 100644 --- a/fs/ext4/mmp.c +++ b/fs/ext4/mmp.c @@ -104,8 +104,9 @@ static int read_mmp_block(struct super_block *sb, struct buffer_head **bh, ret = -EINVAL; warn_exit: - ext4_warning(sb, "Error %d while reading MMP block %llu", - ret, mmp_block); + if (ret) + ext4_warning(sb, "Error %d while reading MMP block %llu", + ret, mmp_block); return ret; } -- To unsubscribe from this list: send the line "unsubscribe linux-ext4" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html