public inbox for linux-ext4@vger.kernel.org
 help / color / mirror / Atom feed
* ext4/super.c : Fix a goto label
@ 2023-08-28  9:27 Haibo Liu
  2023-08-28 16:18 ` Darrick J. Wong
  2023-08-29  7:52 ` [v2] " Haibo Liu
  0 siblings, 2 replies; 4+ messages in thread
From: Haibo Liu @ 2023-08-28  9:27 UTC (permalink / raw)
  To: linux-ext4; +Cc: Haibo Liu

There are 9 goto labels in ext4_init_fs: out,out05,out1,out2,out3,out4,out5,out6,out7. So I feel that replacing out5 with out0 may be better. 

Signed-off-by: Haibo Liu <haiboliu6@gmail.com>
---
 fs/ext4/super.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/fs/ext4/super.c b/fs/ext4/super.c
index 03373471131c..115bbbd95a7b 100644
--- a/fs/ext4/super.c
+++ b/fs/ext4/super.c
@@ -6696,7 +6696,7 @@ static int __init ext4_init_fs(void)
 
 	err = ext4_fc_init_dentry_cache();
 	if (err)
-		goto out05;
+		goto out0;
 
 	register_as_ext3();
 	register_as_ext2();
@@ -6708,7 +6708,7 @@ static int __init ext4_init_fs(void)
 out:
 	unregister_as_ext2();
 	unregister_as_ext3();
-out05:
+out0:
 	destroy_inodecache();
 out1:
 	ext4_exit_mballoc();
-- 
2.34.1


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

* Re: ext4/super.c : Fix a goto label
  2023-08-28  9:27 ext4/super.c : Fix a goto label Haibo Liu
@ 2023-08-28 16:18 ` Darrick J. Wong
  2023-08-29  7:52 ` [v2] " Haibo Liu
  1 sibling, 0 replies; 4+ messages in thread
From: Darrick J. Wong @ 2023-08-28 16:18 UTC (permalink / raw)
  To: Haibo Liu; +Cc: linux-ext4

On Mon, Aug 28, 2023 at 05:27:26PM +0800, Haibo Liu wrote:
> There are 9 goto labels in ext4_init_fs: out,out05,out1,out2,out3,out4,out5,out6,out7. So I feel that replacing out5 with out0 may be better. 

...then why not replace them all with descriptions of what gets released
under each label?

	ret = init_inodecache();
	if (ret)
		goto out_unregister_mballoc;
	ret = init_somethingelse();
	if (ret)
		goto out_inodecache;

out_unregister_ext23:
	unregister_as_ext2();
	unregister_as_ext3();
out_inodecache:
	destroy_inodecache();
out_mballoc:
	ext4_exit_mballoc();

Is much more easier to understand than out[0...N], yes?

--D

> Signed-off-by: Haibo Liu <haiboliu6@gmail.com>
> ---
>  fs/ext4/super.c | 4 ++--
>  1 file changed, 2 insertions(+), 2 deletions(-)
> 
> diff --git a/fs/ext4/super.c b/fs/ext4/super.c
> index 03373471131c..115bbbd95a7b 100644
> --- a/fs/ext4/super.c
> +++ b/fs/ext4/super.c
> @@ -6696,7 +6696,7 @@ static int __init ext4_init_fs(void)
>  
>  	err = ext4_fc_init_dentry_cache();
>  	if (err)
> -		goto out05;
> +		goto out0;
>  
>  	register_as_ext3();
>  	register_as_ext2();
> @@ -6708,7 +6708,7 @@ static int __init ext4_init_fs(void)
>  out:
>  	unregister_as_ext2();
>  	unregister_as_ext3();
> -out05:
> +out0:
>  	destroy_inodecache();
>  out1:
>  	ext4_exit_mballoc();
> -- 
> 2.34.1
> 

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

* [v2] ext4/super.c : Fix a goto label
  2023-08-28  9:27 ext4/super.c : Fix a goto label Haibo Liu
  2023-08-28 16:18 ` Darrick J. Wong
@ 2023-08-29  7:52 ` Haibo Liu
  2024-01-02 14:22   ` Jan Kara
  1 sibling, 1 reply; 4+ messages in thread
From: Haibo Liu @ 2023-08-29  7:52 UTC (permalink / raw)
  To: djwong, linux-ext4; +Cc: haiboliu6

Thank you for Darrick J. Wong's suggestions :). 
I wrote a new patch and renamed these 9 labels.  

Original labels -> New labels: 

out -> out_unregister_ext23_and_dentry_cache 
out05 -> out_inodecache
out1 -> out_mballoc
out2 -> out_sysfs
out3 -> out_system_zone 
out4 -> out_pageio
out5 -> out_post_read_processing
out6 -> out_pending
out7 -> out_es 


v1->v2: 
Followed Darrick J. Wong's suggestions, renamed these 9 goto labels. 

Signed-off-by: Haibo Liu <haiboliu6@gmail.com>
---
 fs/ext4/super.c | 36 ++++++++++++++++++------------------
 1 file changed, 18 insertions(+), 18 deletions(-)

diff --git a/fs/ext4/super.c b/fs/ext4/super.c
index 91f20afa1d71..11cffb5a05a4 100644
--- a/fs/ext4/super.c
+++ b/fs/ext4/super.c
@@ -7347,61 +7347,61 @@ static int __init ext4_init_fs(void)
 
 	err = ext4_init_pending();
 	if (err)
-		goto out7;
+		goto out_es;
 
 	err = ext4_init_post_read_processing();
 	if (err)
-		goto out6;
+		goto out_pending;
 
 	err = ext4_init_pageio();
 	if (err)
-		goto out5;
+		goto out_post_read_processing;
 
 	err = ext4_init_system_zone();
 	if (err)
-		goto out4;
+		goto out_pageio;
 
 	err = ext4_init_sysfs();
 	if (err)
-		goto out3;
+		goto out_system_zone;
 
 	err = ext4_init_mballoc();
 	if (err)
-		goto out2;
+		goto out_sysfs;
 	err = init_inodecache();
 	if (err)
-		goto out1;
+		goto out_mballoc;
 
 	err = ext4_fc_init_dentry_cache();
 	if (err)
-		goto out05;
+		goto out_inodecache;
 
 	register_as_ext3();
 	register_as_ext2();
 	err = register_filesystem(&ext4_fs_type);
 	if (err)
-		goto out;
+		goto out_unregister_ext23_and_dentry_cache;
 
 	return 0;
-out:
+out_unregister_ext23_and_dentry_cache:
 	unregister_as_ext2();
 	unregister_as_ext3();
 	ext4_fc_destroy_dentry_cache();
-out05:
+out_inodecache:
 	destroy_inodecache();
-out1:
+out_mballoc:
 	ext4_exit_mballoc();
-out2:
+out_sysfs:
 	ext4_exit_sysfs();
-out3:
+out_system_zone:
 	ext4_exit_system_zone();
-out4:
+out_pageio:
 	ext4_exit_pageio();
-out5:
+out_post_read_processing:
 	ext4_exit_post_read_processing();
-out6:
+out_pending:
 	ext4_exit_pending();
-out7:
+out_es:
 	ext4_exit_es();
 
 	return err;
-- 
2.34.1


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

* Re: [v2] ext4/super.c : Fix a goto label
  2023-08-29  7:52 ` [v2] " Haibo Liu
@ 2024-01-02 14:22   ` Jan Kara
  0 siblings, 0 replies; 4+ messages in thread
From: Jan Kara @ 2024-01-02 14:22 UTC (permalink / raw)
  To: Haibo Liu; +Cc: djwong, linux-ext4, Ted Tso

This seems to have fallen through the cracks. CCing ext4 maintainer (which
is a good idea with any patch BTW)...

On Tue 29-08-23 15:52:22, Haibo Liu wrote:
> Thank you for Darrick J. Wong's suggestions :). 
> I wrote a new patch and renamed these 9 labels.  
> 
> Original labels -> New labels: 
> 
> out -> out_unregister_ext23_and_dentry_cache 
> out05 -> out_inodecache
> out1 -> out_mballoc
> out2 -> out_sysfs
> out3 -> out_system_zone 
> out4 -> out_pageio
> out5 -> out_post_read_processing
> out6 -> out_pending
> out7 -> out_es 

I agree this is more standard and probably more future proof.

> v1->v2: 
> Followed Darrick J. Wong's suggestions, renamed these 9 goto labels. 

This versioning belongs below the --- line (probably below diffstat).

> Signed-off-by: Haibo Liu <haiboliu6@gmail.com>

Otherwise looks good so feel free to add:

Reviewed-by: Jan Kara <jack@suse.cz>

								Honza
> ---
>  fs/ext4/super.c | 36 ++++++++++++++++++------------------
>  1 file changed, 18 insertions(+), 18 deletions(-)
> 
> diff --git a/fs/ext4/super.c b/fs/ext4/super.c
> index 91f20afa1d71..11cffb5a05a4 100644
> --- a/fs/ext4/super.c
> +++ b/fs/ext4/super.c
> @@ -7347,61 +7347,61 @@ static int __init ext4_init_fs(void)
>  
>  	err = ext4_init_pending();
>  	if (err)
> -		goto out7;
> +		goto out_es;
>  
>  	err = ext4_init_post_read_processing();
>  	if (err)
> -		goto out6;
> +		goto out_pending;
>  
>  	err = ext4_init_pageio();
>  	if (err)
> -		goto out5;
> +		goto out_post_read_processing;
>  
>  	err = ext4_init_system_zone();
>  	if (err)
> -		goto out4;
> +		goto out_pageio;
>  
>  	err = ext4_init_sysfs();
>  	if (err)
> -		goto out3;
> +		goto out_system_zone;
>  
>  	err = ext4_init_mballoc();
>  	if (err)
> -		goto out2;
> +		goto out_sysfs;
>  	err = init_inodecache();
>  	if (err)
> -		goto out1;
> +		goto out_mballoc;
>  
>  	err = ext4_fc_init_dentry_cache();
>  	if (err)
> -		goto out05;
> +		goto out_inodecache;
>  
>  	register_as_ext3();
>  	register_as_ext2();
>  	err = register_filesystem(&ext4_fs_type);
>  	if (err)
> -		goto out;
> +		goto out_unregister_ext23_and_dentry_cache;
>  
>  	return 0;
> -out:
> +out_unregister_ext23_and_dentry_cache:
>  	unregister_as_ext2();
>  	unregister_as_ext3();
>  	ext4_fc_destroy_dentry_cache();
> -out05:
> +out_inodecache:
>  	destroy_inodecache();
> -out1:
> +out_mballoc:
>  	ext4_exit_mballoc();
> -out2:
> +out_sysfs:
>  	ext4_exit_sysfs();
> -out3:
> +out_system_zone:
>  	ext4_exit_system_zone();
> -out4:
> +out_pageio:
>  	ext4_exit_pageio();
> -out5:
> +out_post_read_processing:
>  	ext4_exit_post_read_processing();
> -out6:
> +out_pending:
>  	ext4_exit_pending();
> -out7:
> +out_es:
>  	ext4_exit_es();
>  
>  	return err;
> -- 
> 2.34.1
> 
-- 
Jan Kara <jack@suse.com>
SUSE Labs, CR

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

end of thread, other threads:[~2024-01-02 14:22 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2023-08-28  9:27 ext4/super.c : Fix a goto label Haibo Liu
2023-08-28 16:18 ` Darrick J. Wong
2023-08-29  7:52 ` [v2] " Haibo Liu
2024-01-02 14:22   ` Jan Kara

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox