public inbox for linux-xfs@vger.kernel.org
 help / color / mirror / Atom feed
* [PATCH] xfs: simplify /proc teardown & error handling
@ 2015-09-08 19:49 Eric Sandeen
  2015-09-09 11:49 ` Brian Foster
  0 siblings, 1 reply; 2+ messages in thread
From: Eric Sandeen @ 2015-09-08 19:49 UTC (permalink / raw)
  To: xfs-oss

remove_proc_subtree() was added in 3.9, and can be
used to simplify our procfile creation error handling
and cleanup, removing the nested gotos.  It simply
removes fs/xfs and everything created under it.

Signed-off-by: Eric Sandeen <sandeen@redhat.com>
---

This goes after Bill's patches, I just noticed it
while reviewing them.

diff --git a/fs/xfs/xfs_stats.c b/fs/xfs/xfs_stats.c
index 05d5227..009a860 100644
--- a/fs/xfs/xfs_stats.c
+++ b/fs/xfs/xfs_stats.c
@@ -168,41 +168,29 @@ int
 xfs_init_procfs(void)
 {
 	if (!proc_mkdir("fs/xfs", NULL))
-		goto out;
+		return -ENOMEM;
 
 	if (!proc_symlink("fs/xfs/stat", NULL,
 			  "/sys/fs/xfs/stats/stats"))
-		goto out_remove_xfs_dir;
+		goto out;
 
 #ifdef CONFIG_XFS_QUOTA
 	if (!proc_create("fs/xfs/xqmstat", 0, NULL,
 			 &xqmstat_proc_fops))
-		goto out_remove_stat_file;
+		goto out;
 	if (!proc_create("fs/xfs/xqm", 0, NULL,
 			 &xqm_proc_fops))
-		goto out_remove_xqmstat_file;
+		goto out;
 #endif
 	return 0;
 
-#ifdef CONFIG_XFS_QUOTA
- out_remove_xqmstat_file:
-	remove_proc_entry("fs/xfs/xqmstat", NULL);
- out_remove_stat_file:
-	remove_proc_entry("fs/xfs/stat", NULL);
-#endif
- out_remove_xfs_dir:
-	remove_proc_entry("fs/xfs", NULL);
- out:
+out:
+	remove_proc_subtree("fs/xfs", NULL);
 	return -ENOMEM;
 }
 
 void
 xfs_cleanup_procfs(void)
 {
-#ifdef CONFIG_XFS_QUOTA
-	remove_proc_entry("fs/xfs/xqm", NULL);
-	remove_proc_entry("fs/xfs/xqmstat", NULL);
-#endif
-	remove_proc_entry("fs/xfs/stat", NULL);
-	remove_proc_entry("fs/xfs", NULL);
+	remove_proc_subtree("fs/xfs", NULL);
 }

_______________________________________________
xfs mailing list
xfs@oss.sgi.com
http://oss.sgi.com/mailman/listinfo/xfs

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

* Re: [PATCH] xfs: simplify /proc teardown & error handling
  2015-09-08 19:49 [PATCH] xfs: simplify /proc teardown & error handling Eric Sandeen
@ 2015-09-09 11:49 ` Brian Foster
  0 siblings, 0 replies; 2+ messages in thread
From: Brian Foster @ 2015-09-09 11:49 UTC (permalink / raw)
  To: Eric Sandeen; +Cc: xfs-oss

On Tue, Sep 08, 2015 at 02:49:02PM -0500, Eric Sandeen wrote:
> remove_proc_subtree() was added in 3.9, and can be
> used to simplify our procfile creation error handling
> and cleanup, removing the nested gotos.  It simply
> removes fs/xfs and everything created under it.
> 
> Signed-off-by: Eric Sandeen <sandeen@redhat.com>
> ---

Reviewed-by: Brian Foster <bfoster@redhat.com>

> 
> This goes after Bill's patches, I just noticed it
> while reviewing them.
> 
> diff --git a/fs/xfs/xfs_stats.c b/fs/xfs/xfs_stats.c
> index 05d5227..009a860 100644
> --- a/fs/xfs/xfs_stats.c
> +++ b/fs/xfs/xfs_stats.c
> @@ -168,41 +168,29 @@ int
>  xfs_init_procfs(void)
>  {
>  	if (!proc_mkdir("fs/xfs", NULL))
> -		goto out;
> +		return -ENOMEM;
>  
>  	if (!proc_symlink("fs/xfs/stat", NULL,
>  			  "/sys/fs/xfs/stats/stats"))
> -		goto out_remove_xfs_dir;
> +		goto out;
>  
>  #ifdef CONFIG_XFS_QUOTA
>  	if (!proc_create("fs/xfs/xqmstat", 0, NULL,
>  			 &xqmstat_proc_fops))
> -		goto out_remove_stat_file;
> +		goto out;
>  	if (!proc_create("fs/xfs/xqm", 0, NULL,
>  			 &xqm_proc_fops))
> -		goto out_remove_xqmstat_file;
> +		goto out;
>  #endif
>  	return 0;
>  
> -#ifdef CONFIG_XFS_QUOTA
> - out_remove_xqmstat_file:
> -	remove_proc_entry("fs/xfs/xqmstat", NULL);
> - out_remove_stat_file:
> -	remove_proc_entry("fs/xfs/stat", NULL);
> -#endif
> - out_remove_xfs_dir:
> -	remove_proc_entry("fs/xfs", NULL);
> - out:
> +out:
> +	remove_proc_subtree("fs/xfs", NULL);
>  	return -ENOMEM;
>  }
>  
>  void
>  xfs_cleanup_procfs(void)
>  {
> -#ifdef CONFIG_XFS_QUOTA
> -	remove_proc_entry("fs/xfs/xqm", NULL);
> -	remove_proc_entry("fs/xfs/xqmstat", NULL);
> -#endif
> -	remove_proc_entry("fs/xfs/stat", NULL);
> -	remove_proc_entry("fs/xfs", NULL);
> +	remove_proc_subtree("fs/xfs", NULL);
>  }
> 
> _______________________________________________
> xfs mailing list
> xfs@oss.sgi.com
> http://oss.sgi.com/mailman/listinfo/xfs

_______________________________________________
xfs mailing list
xfs@oss.sgi.com
http://oss.sgi.com/mailman/listinfo/xfs

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

end of thread, other threads:[~2015-09-09 11:49 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2015-09-08 19:49 [PATCH] xfs: simplify /proc teardown & error handling Eric Sandeen
2015-09-09 11:49 ` Brian Foster

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