From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1755328AbbBLJCi (ORCPT ); Thu, 12 Feb 2015 04:02:38 -0500 Received: from mail-pd0-f175.google.com ([209.85.192.175]:39772 "EHLO mail-pd0-f175.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1755166AbbBLJCe (ORCPT ); Thu, 12 Feb 2015 04:02:34 -0500 From: Sudip Mukherjee To: Andrew Morton Cc: Sudip Mukherjee , linux-kernel@vger.kernel.org Subject: [PATCH 1/5] fs: efs: fix trailing and leading space Date: Thu, 12 Feb 2015 14:32:18 +0530 Message-Id: <1423731742-31383-1-git-send-email-sudipm.mukherjee@gmail.com> X-Mailer: git-send-email 1.8.1.2 Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org fixed the trailing and leading whitespace errors in the code. Signed-off-by: Sudip Mukherjee --- Hi Andrew, since there is no maintainer so sending to you. fs/efs/super.c | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/fs/efs/super.c b/fs/efs/super.c index 7fca462..c2f105f 100644 --- a/fs/efs/super.c +++ b/fs/efs/super.c @@ -248,8 +248,8 @@ static int efs_validate_super(struct efs_sb_info *sb, struct efs_super *super) { sb->inode_free = be32_to_cpu(super->fs_tinode); sb->inode_blocks = be16_to_cpu(super->fs_cgisize); sb->total_groups = be16_to_cpu(super->fs_ncg); - - return 0; + + return 0; } static int efs_fill_super(struct super_block *s, void *d, int silent) @@ -258,18 +258,18 @@ static int efs_fill_super(struct super_block *s, void *d, int silent) struct buffer_head *bh; struct inode *root; - sb = kzalloc(sizeof(struct efs_sb_info), GFP_KERNEL); + sb = kzalloc(sizeof(struct efs_sb_info), GFP_KERNEL); if (!sb) return -ENOMEM; s->s_fs_info = sb; - + s->s_magic = EFS_SUPER_MAGIC; if (!sb_set_blocksize(s, EFS_BLOCKSIZE)) { pr_err("device does not support %d byte blocks\n", EFS_BLOCKSIZE); return -EINVAL; } - + /* read the vh (volume header) block */ bh = sb_bread(s, 0); @@ -295,7 +295,7 @@ static int efs_fill_super(struct super_block *s, void *d, int silent) pr_err("cannot read superblock\n"); return -EINVAL; } - + if (efs_validate_super(sb, (struct efs_super *) bh->b_data)) { #ifdef DEBUG pr_warn("invalid superblock at block %u\n", -- 1.8.1.2