Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1755628AbbBLM4a (ORCPT ); Thu, 12 Feb 2015 07:56:30 -0500 Received: from mail-qc0-f172.google.com ([209.85.216.172]:43676 "EHLO mail-qc0-f172.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1755383AbbBLM43 (ORCPT ); Thu, 12 Feb 2015 07:56:29 -0500 From: Kevin Mulvey X-Google-Original-From: Kevin Mulvey To: "Theodore Ts'o" , Andreas Dilger , linux-ext4@vger.kernel.org, linux-kernel@vger.kernel.org Cc: Kevin Mulvey Subject: [PATCH] fix spacing in ext4/super.c Date: Thu, 12 Feb 2015 07:51:47 -0500 Message-Id: <1423745507-31967-1-git-send-email-kmulvey@linux.com> X-Mailer: git-send-email 2.1.0 Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 1634 Lines: 47 This is a patch to super.c that fixes some spacing errors found by checkpatch.pl Signed-off-by: Kevin Mulvey --- fs/ext4/super.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/fs/ext4/super.c b/fs/ext4/super.c index ac64edb..6fa3d5b 100644 --- a/fs/ext4/super.c +++ b/fs/ext4/super.c @@ -2569,7 +2569,7 @@ static ssize_t sbi_deprecated_show(struct ext4_attr *a, return snprintf(buf, PAGE_SIZE, "%d\n", a->u.deprecated_val); } -#define EXT4_ATTR_OFFSET(_name,_mode,_show,_store,_elname) \ +#define EXT4_ATTR_OFFSET(_name, _mode, _show, _store, _elname) \ static struct ext4_attr ext4_attr_##_name = { \ .attr = {.name = __stringify(_name), .mode = _mode }, \ .show = _show, \ @@ -2579,7 +2579,7 @@ static struct ext4_attr ext4_attr_##_name = { \ }, \ } -#define EXT4_ATTR_OFFSET_ES(_name,_mode,_show,_store,_elname) \ +#define EXT4_ATTR_OFFSET_ES(_name, _mode, _show, _store, _elname) \ static struct ext4_attr ext4_attr_##_name = { \ .attr = {.name = __stringify(_name), .mode = _mode }, \ .show = _show, \ @@ -4114,7 +4114,7 @@ no_journal: } block = ext4_count_free_clusters(sb); - ext4_free_blocks_count_set(sbi->s_es, + ext4_free_blocks_count_set(sbi->s_es, EXT4_C2B(sbi, block)); err = percpu_counter_init(&sbi->s_freeclusters_counter, block, GFP_KERNEL); -- 2.1.0 -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/