Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1751211AbdGNXGu (ORCPT ); Fri, 14 Jul 2017 19:06:50 -0400 Received: from smtprelay2.synopsys.com ([198.182.60.111]:32930 "EHLO smtprelay.synopsys.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751120AbdGNXG1 (ORCPT ); Fri, 14 Jul 2017 19:06:27 -0400 From: Carlos Palminha To: CC: , , Subject: [PATCH 3/3] fat: fix quoted string splits Date: Sat, 15 Jul 2017 00:05:50 +0100 Message-ID: <20170714230550.9435-4-palminha@synopsys.com> X-Mailer: git-send-email 2.11.0 In-Reply-To: <20170714230550.9435-1-palminha@synopsys.com> References: <20170714230550.9435-1-palminha@synopsys.com> MIME-Version: 1.0 Content-Type: text/plain X-Originating-IP: [10.107.15.38] Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 2643 Lines: 73 corrects quoted string split across lines, based on checkpatch. Signed-off-by: Carlos Palminha --- fs/fat/cache.c | 4 ++-- fs/fat/inode.c | 18 ++++++++++-------- 2 files changed, 12 insertions(+), 10 deletions(-) diff --git a/fs/fat/cache.c b/fs/fat/cache.c index 470b4831079e..1fa1fd72bcfb 100644 --- a/fs/fat/cache.c +++ b/fs/fat/cache.c @@ -250,8 +250,8 @@ int fat_get_cluster(struct inode *inode, int cluster, int *fclus, int *dclus) /* prevent the infinite loop of cluster chain */ if (*fclus > limit) { fat_fs_error_ratelimit(sb, - "%s: detected the cluster chain loop" - " (i_pos %lld)", __func__, + "%s: detected the cluster chain loop (i_pos %lld)", + __func__, MSDOS_I(inode)->i_pos); nr = -EIO; goto out; diff --git a/fs/fat/inode.c b/fs/fat/inode.c index 8d65174b7d75..23ffac04ec7b 100644 --- a/fs/fat/inode.c +++ b/fs/fat/inode.c @@ -1673,8 +1673,8 @@ int fat_fill_super(struct super_block *sb, void *data, int silent, int isvfat, /* Verify that the larger boot sector is fully readable */ bh_resize = sb_bread(sb, 0); if (bh_resize == NULL) { - fat_msg(sb, KERN_ERR, "unable to read boot sector" - " (logical sector size = %lu)", + fat_msg(sb, KERN_ERR, + "unable to read boot sector (logical sector size = %lu)", sb->s_blocksize); goto out_fail; } @@ -1710,15 +1710,16 @@ int fat_fill_super(struct super_block *sb, void *data, int silent, int isvfat, fsinfo_bh = sb_bread(sb, sbi->fsinfo_sector); if (fsinfo_bh == NULL) { - fat_msg(sb, KERN_ERR, "bread failed, FSINFO block" - " (sector = %lu)", sbi->fsinfo_sector); + fat_msg(sb, KERN_ERR, + "bread failed, FSINFO block (sector = %lu)", + sbi->fsinfo_sector); goto out_fail; } fsinfo = (struct fat_boot_fsinfo *)fsinfo_bh->b_data; if (!IS_FSINFO(fsinfo)) { - fat_msg(sb, KERN_WARNING, "Invalid FSINFO signature: " - "0x%08x, 0x%08x (sector = %lu)", + fat_msg(sb, KERN_WARNING, + "Invalid FSINFO signature: 0x%08x, 0x%08x (sector = %lu)", le32_to_cpu(fsinfo->signature1), le32_to_cpu(fsinfo->signature2), sbi->fsinfo_sector); @@ -1745,8 +1746,9 @@ int fat_fill_super(struct super_block *sb, void *data, int silent, int isvfat, sbi->dir_entries = bpb.fat_dir_entries; if (sbi->dir_entries & (sbi->dir_per_block - 1)) { if (!silent) - fat_msg(sb, KERN_ERR, "bogus number of directory entries" - " (%u)", sbi->dir_entries); + fat_msg(sb, KERN_ERR, + "bogus number of directory entries (%u)", + sbi->dir_entries); goto out_invalid; } -- 2.11.0