From: Salah Triki <salah.triki@gmail.com>
To: Luis de Bethencourt <luisbg@osg.samsung.com>
Cc: linux-kernel@vger.kernel.org, akpm@linux-foundation.org,
viro@zeniv.linux.org.uk, salah.triki@acm.org
Subject: Re: [PATCH 4/4] befs: fix style issues in super.c
Date: Wed, 10 Aug 2016 22:44:48 +0100 [thread overview]
Message-ID: <20160810214448.GC4372@pc> (raw)
In-Reply-To: <1470780086-11594-4-git-send-email-luisbg@osg.samsung.com>
On Tue, Aug 09, 2016 at 11:01:26PM +0100, Luis de Bethencourt wrote:
> Fixing the following checkpatch.pl error:
>
> ERROR: "foo * bar" should be "foo *bar"
> +befs_load_sb(struct super_block *sb, befs_super_block * disk_sb)
>
> And the following warnings:
>
> WARNING: suspect code indent for conditional statements (8, 12)
> + if (disk_sb->fs_byte_order == BEFS_BYTEORDER_NATIVE_LE)
> + befs_sb->byte_order = BEFS_BYTESEX_LE;
>
> WARNING: suspect code indent for conditional statements (8, 12)
> + else if (disk_sb->fs_byte_order == BEFS_BYTEORDER_NATIVE_BE)
> + befs_sb->byte_order = BEFS_BYTESEX_BE;
>
> WARNING: break quoted strings at a space character
> + befs_error(sb, "blocksize(%u) cannot be larger"
> + "than system pagesize(%lu)", befs_sb->block_size,
>
> WARNING: line over 80 characters
> + if (befs_sb->log_start != befs_sb->log_end || befs_sb->flags == BEFS_DIRTY) {
>
> Signed-off-by: Luis de Bethencourt <luisbg@osg.samsung.com>
> ---
>
> Fixing these because I was touching this code area.
>
> Thanks,
> Luis
>
> fs/befs/super.c | 15 ++++++++-------
> 1 file changed, 8 insertions(+), 7 deletions(-)
>
> diff --git a/fs/befs/super.c b/fs/befs/super.c
> index 80b93c0..7c50025 100644
> --- a/fs/befs/super.c
> +++ b/fs/befs/super.c
> @@ -18,15 +18,15 @@
> * of the befs superblock
> */
> int
> -befs_load_sb(struct super_block *sb, befs_super_block * disk_sb)
> +befs_load_sb(struct super_block *sb, befs_super_block *disk_sb)
> {
> struct befs_sb_info *befs_sb = BEFS_SB(sb);
>
> /* Check the byte order of the filesystem */
> if (disk_sb->fs_byte_order == BEFS_BYTEORDER_NATIVE_LE)
> - befs_sb->byte_order = BEFS_BYTESEX_LE;
> + befs_sb->byte_order = BEFS_BYTESEX_LE;
> else if (disk_sb->fs_byte_order == BEFS_BYTEORDER_NATIVE_BE)
> - befs_sb->byte_order = BEFS_BYTESEX_BE;
> + befs_sb->byte_order = BEFS_BYTESEX_BE;
>
> befs_sb->magic1 = fs32_to_cpu(sb, disk_sb->magic1);
> befs_sb->magic2 = fs32_to_cpu(sb, disk_sb->magic2);
> @@ -82,7 +82,7 @@ befs_check_sb(struct super_block *sb)
> }
>
> if (befs_sb->block_size > PAGE_SIZE) {
> - befs_error(sb, "blocksize(%u) cannot be larger"
> + befs_error(sb, "blocksize(%u) cannot be larger "
> "than system pagesize(%lu)", befs_sb->block_size,
> PAGE_SIZE);
> return BEFS_ERR;
> @@ -106,10 +106,11 @@ befs_check_sb(struct super_block *sb)
> if ((1 << befs_sb->ag_shift) != befs_sb->blocks_per_ag)
> befs_error(sb, "ag_shift disagrees with blocks_per_ag.");
>
> - if (befs_sb->log_start != befs_sb->log_end || befs_sb->flags == BEFS_DIRTY) {
> + if (befs_sb->log_start != befs_sb->log_end ||
> + befs_sb->flags == BEFS_DIRTY) {
> befs_error(sb, "Filesystem not clean! There are blocks in the "
> - "journal. You must boot into BeOS and mount this volume "
> - "to make it clean.");
> + "journal. You must boot into BeOS and mount this "
> + "volume to make it clean.");
> return BEFS_ERR;
> }
>
> --
> 2.5.1
>
Signed-off-by: Salah Triki <salah.triki@gmail.com>
Thanx
Salah
next prev parent reply other threads:[~2016-08-10 21:45 UTC|newest]
Thread overview: 10+ messages / expand[flat|nested] mbox.gz Atom feed top
2016-08-09 22:01 [PATCH 1/4] befs: dump inode_size superblock information Luis de Bethencourt
2016-08-09 22:01 ` [PATCH 2/4] befs: add check for ag_shift in superblock Luis de Bethencourt
2016-08-11 14:58 ` Salah Triki
2016-08-09 22:01 ` [PATCH 3/4] befs: fix comment style Luis de Bethencourt
2016-08-10 21:42 ` Salah Triki
2016-08-09 22:01 ` [PATCH 4/4] befs: fix style issues in super.c Luis de Bethencourt
2016-08-10 21:44 ` Salah Triki [this message]
2016-08-10 21:41 ` [PATCH 1/4] befs: dump inode_size superblock information Salah Triki
2016-08-11 10:03 ` Luis de Bethencourt
2016-08-11 14:09 ` Salah Triki
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20160810214448.GC4372@pc \
--to=salah.triki@gmail.com \
--cc=akpm@linux-foundation.org \
--cc=linux-kernel@vger.kernel.org \
--cc=luisbg@osg.samsung.com \
--cc=salah.triki@acm.org \
--cc=viro@zeniv.linux.org.uk \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox