linux-ext4.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH 1/2] ext2: fix type of return value ext2_fill_super()
@ 2014-05-15 12:26 Seunghun Lee
  2014-05-15 12:26 ` [PATCH 2/2] ext2: fix error handling in ext2_fill_super() Seunghun Lee
  0 siblings, 1 reply; 3+ messages in thread
From: Seunghun Lee @ 2014-05-15 12:26 UTC (permalink / raw)
  To: jack; +Cc: lczerner, linux-ext4, linux-kernel, Seunghun Lee

This patch fixes type of return value ext2_fill_super().

Signed-off-by: Seunghun Lee <waydi1@gmail.com>
---
 fs/ext2/super.c |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/fs/ext2/super.c b/fs/ext2/super.c
index 3750031..e3fc51e 100644
--- a/fs/ext2/super.c
+++ b/fs/ext2/super.c
@@ -770,7 +770,7 @@ static int ext2_fill_super(struct super_block *sb, void *data, int silent)
 	unsigned long logic_sb_block;
 	unsigned long offset = 0;
 	unsigned long def_mount_opts;
-	long ret = -EINVAL;
+	int ret = -EINVAL;
 	int blocksize = BLOCK_SIZE;
 	int db_count;
 	int i, j;
-- 
1.7.9.5

^ permalink raw reply related	[flat|nested] 3+ messages in thread

* [PATCH 2/2] ext2: fix error handling in ext2_fill_super()
  2014-05-15 12:26 [PATCH 1/2] ext2: fix type of return value ext2_fill_super() Seunghun Lee
@ 2014-05-15 12:26 ` Seunghun Lee
  2014-05-15 13:42   ` Jan Kara
  0 siblings, 1 reply; 3+ messages in thread
From: Seunghun Lee @ 2014-05-15 12:26 UTC (permalink / raw)
  To: jack; +Cc: lczerner, linux-ext4, linux-kernel, Seunghun Lee

ext2_fill_super is using err variable, but it is not applied to return value.

This patch fixes it.

Signed-off-by: Seunghun Lee <waydi1@gmail.com>
---
 fs/ext2/super.c |   10 ++++++----
 1 file changed, 6 insertions(+), 4 deletions(-)

diff --git a/fs/ext2/super.c b/fs/ext2/super.c
index e3fc51e..7e36536 100644
--- a/fs/ext2/super.c
+++ b/fs/ext2/super.c
@@ -770,14 +770,13 @@ static int ext2_fill_super(struct super_block *sb, void *data, int silent)
 	unsigned long logic_sb_block;
 	unsigned long offset = 0;
 	unsigned long def_mount_opts;
-	int ret = -EINVAL;
+	int ret = -ENOMEM;
 	int blocksize = BLOCK_SIZE;
 	int db_count;
 	int i, j;
 	__le32 features;
-	int err;
+	int err = 0;
 
-	err = -ENOMEM;
 	sbi = kzalloc(sizeof(*sbi), GFP_KERNEL);
 	if (!sbi)
 		goto failed;
@@ -793,6 +792,9 @@ static int ext2_fill_super(struct super_block *sb, void *data, int silent)
 
 	spin_lock_init(&sbi->s_lock);
 
+	/* -EINVAL is default */
+	ret = -EINVAL;
+
 	/*
 	 * See what the current blocksize for the device is, and
 	 * use that as the blocksize.  Otherwise (or if the blocksize
@@ -1140,7 +1142,7 @@ failed_sbi:
 	kfree(sbi->s_blockgroup_lock);
 	kfree(sbi);
 failed:
-	return ret;
+	return err ? err : ret;
 }
 
 static void ext2_clear_super_error(struct super_block *sb)
-- 
1.7.9.5

^ permalink raw reply related	[flat|nested] 3+ messages in thread

* Re: [PATCH 2/2] ext2: fix error handling in ext2_fill_super()
  2014-05-15 12:26 ` [PATCH 2/2] ext2: fix error handling in ext2_fill_super() Seunghun Lee
@ 2014-05-15 13:42   ` Jan Kara
  0 siblings, 0 replies; 3+ messages in thread
From: Jan Kara @ 2014-05-15 13:42 UTC (permalink / raw)
  To: Seunghun Lee; +Cc: jack, lczerner, linux-ext4, linux-kernel

On Thu 15-05-14 21:26:16, Seunghun Lee wrote:
> ext2_fill_super is using err variable, but it is not applied to return value.
> 
> This patch fixes it.
  I see no point why we should have 'err' and 'ret' variables. Just use
'ret' where 'err' is used and be done with it...

								Honza
> 
> Signed-off-by: Seunghun Lee <waydi1@gmail.com>
> ---
>  fs/ext2/super.c |   10 ++++++----
>  1 file changed, 6 insertions(+), 4 deletions(-)
> 
> diff --git a/fs/ext2/super.c b/fs/ext2/super.c
> index e3fc51e..7e36536 100644
> --- a/fs/ext2/super.c
> +++ b/fs/ext2/super.c
> @@ -770,14 +770,13 @@ static int ext2_fill_super(struct super_block *sb, void *data, int silent)
>  	unsigned long logic_sb_block;
>  	unsigned long offset = 0;
>  	unsigned long def_mount_opts;
> -	int ret = -EINVAL;
> +	int ret = -ENOMEM;
>  	int blocksize = BLOCK_SIZE;
>  	int db_count;
>  	int i, j;
>  	__le32 features;
> -	int err;
> +	int err = 0;
>  
> -	err = -ENOMEM;
>  	sbi = kzalloc(sizeof(*sbi), GFP_KERNEL);
>  	if (!sbi)
>  		goto failed;
> @@ -793,6 +792,9 @@ static int ext2_fill_super(struct super_block *sb, void *data, int silent)
>  
>  	spin_lock_init(&sbi->s_lock);
>  
> +	/* -EINVAL is default */
> +	ret = -EINVAL;
> +
>  	/*
>  	 * See what the current blocksize for the device is, and
>  	 * use that as the blocksize.  Otherwise (or if the blocksize
> @@ -1140,7 +1142,7 @@ failed_sbi:
>  	kfree(sbi->s_blockgroup_lock);
>  	kfree(sbi);
>  failed:
> -	return ret;
> +	return err ? err : ret;
>  }
>  
>  static void ext2_clear_super_error(struct super_block *sb)
> -- 
> 1.7.9.5
> 
-- 
Jan Kara <jack@suse.cz>
SUSE Labs, CR

^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2014-05-15 13:42 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2014-05-15 12:26 [PATCH 1/2] ext2: fix type of return value ext2_fill_super() Seunghun Lee
2014-05-15 12:26 ` [PATCH 2/2] ext2: fix error handling in ext2_fill_super() Seunghun Lee
2014-05-15 13:42   ` Jan Kara

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).