public inbox for linux-xfs@vger.kernel.org
 help / color / mirror / Atom feed
* [PATCH] mkfs: removed unused dft var from open_config_file
@ 2018-06-19 20:07 Eric Sandeen
  2018-06-19 20:40 ` Darrick J. Wong
  2018-06-19 20:59 ` Luis R. Rodriguez
  0 siblings, 2 replies; 3+ messages in thread
From: Eric Sandeen @ 2018-06-19 20:07 UTC (permalink / raw)
  To: linux-xfs; +Cc: Luis R. Rodriguez

This should have been removed when I removed the dft->type
tracking.

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

diff --git a/mkfs/config.c b/mkfs/config.c
index 70d752c..e4534c3 100644
--- a/mkfs/config.c
+++ b/mkfs/config.c
@@ -549,9 +549,8 @@ config_stat_check(
  * If not specified or if above fails, try either cli-spec'd file or "default"
  * in MKFS_XFS_CONF_DIR.
  *
- * If any config file is successfully opened, dft->type is set to reflect the
- * source, an fd is returned, and the absolute path is returned in **fpath,
- * which must be free()'d by the caller.
+ * If any config file is successfully opened, an fd is returned, and the
+ * absolute path is returned in **fpath, which must be free()'d by the caller.
  *
  * If a cli-specified file is not found -1 is returned and errno set. Otherwise
  * the file descriptor is returned.
@@ -559,7 +558,6 @@ config_stat_check(
 int
 open_config_file(
 	const char			*config_file,
-	struct mkfs_default_params	*dft,
 	char				**fpath)
 {
 	int				dirfd = -1, fd = -1, len, ret = 0;
diff --git a/mkfs/config.h b/mkfs/config.h
index f4af2c7..d338347 100644
--- a/mkfs/config.h
+++ b/mkfs/config.h
@@ -79,7 +79,6 @@ struct mkfs_default_params {
 int
 open_config_file(
 	const char			*cli_config_file,
-	struct mkfs_default_params	*dft,
 	char				**fpath);
 
 int
diff --git a/mkfs/xfs_mkfs.c b/mkfs/xfs_mkfs.c
index 9d85eab..9802150 100644
--- a/mkfs/xfs_mkfs.c
+++ b/mkfs/xfs_mkfs.c
@@ -3791,7 +3791,7 @@ _("respecification of configuration not allowed\n"));
 		}
 	}
 
-	fd = open_config_file(cli_config_file, &dft, &config_file);
+	fd = open_config_file(cli_config_file, &config_file);
 	if (fd >= 0) {
 		ret = parse_defaults_file(fd, &dft, config_file);
 		if (ret) {


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

* Re: [PATCH] mkfs: removed unused dft var from open_config_file
  2018-06-19 20:07 [PATCH] mkfs: removed unused dft var from open_config_file Eric Sandeen
@ 2018-06-19 20:40 ` Darrick J. Wong
  2018-06-19 20:59 ` Luis R. Rodriguez
  1 sibling, 0 replies; 3+ messages in thread
From: Darrick J. Wong @ 2018-06-19 20:40 UTC (permalink / raw)
  To: Eric Sandeen; +Cc: linux-xfs, Luis R. Rodriguez

On Tue, Jun 19, 2018 at 03:07:01PM -0500, Eric Sandeen wrote:
> This should have been removed when I removed the dft->type
> tracking.
> 
> Signed-off-by: Eric Sandeen <sandeen@redhat.com>

Looks ok,
Reviewed-by: Darrick J. Wong <darrick.wong@oracle.com>

--D

> ---
> 
> diff --git a/mkfs/config.c b/mkfs/config.c
> index 70d752c..e4534c3 100644
> --- a/mkfs/config.c
> +++ b/mkfs/config.c
> @@ -549,9 +549,8 @@ config_stat_check(
>   * If not specified or if above fails, try either cli-spec'd file or "default"
>   * in MKFS_XFS_CONF_DIR.
>   *
> - * If any config file is successfully opened, dft->type is set to reflect the
> - * source, an fd is returned, and the absolute path is returned in **fpath,
> - * which must be free()'d by the caller.
> + * If any config file is successfully opened, an fd is returned, and the
> + * absolute path is returned in **fpath, which must be free()'d by the caller.
>   *
>   * If a cli-specified file is not found -1 is returned and errno set. Otherwise
>   * the file descriptor is returned.
> @@ -559,7 +558,6 @@ config_stat_check(
>  int
>  open_config_file(
>  	const char			*config_file,
> -	struct mkfs_default_params	*dft,
>  	char				**fpath)
>  {
>  	int				dirfd = -1, fd = -1, len, ret = 0;
> diff --git a/mkfs/config.h b/mkfs/config.h
> index f4af2c7..d338347 100644
> --- a/mkfs/config.h
> +++ b/mkfs/config.h
> @@ -79,7 +79,6 @@ struct mkfs_default_params {
>  int
>  open_config_file(
>  	const char			*cli_config_file,
> -	struct mkfs_default_params	*dft,
>  	char				**fpath);
>  
>  int
> diff --git a/mkfs/xfs_mkfs.c b/mkfs/xfs_mkfs.c
> index 9d85eab..9802150 100644
> --- a/mkfs/xfs_mkfs.c
> +++ b/mkfs/xfs_mkfs.c
> @@ -3791,7 +3791,7 @@ _("respecification of configuration not allowed\n"));
>  		}
>  	}
>  
> -	fd = open_config_file(cli_config_file, &dft, &config_file);
> +	fd = open_config_file(cli_config_file, &config_file);
>  	if (fd >= 0) {
>  		ret = parse_defaults_file(fd, &dft, config_file);
>  		if (ret) {
> 
> --
> To unsubscribe from this list: send the line "unsubscribe linux-xfs" in
> the body of a message to majordomo@vger.kernel.org
> More majordomo info at  http://vger.kernel.org/majordomo-info.html

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

* Re: [PATCH] mkfs: removed unused dft var from open_config_file
  2018-06-19 20:07 [PATCH] mkfs: removed unused dft var from open_config_file Eric Sandeen
  2018-06-19 20:40 ` Darrick J. Wong
@ 2018-06-19 20:59 ` Luis R. Rodriguez
  1 sibling, 0 replies; 3+ messages in thread
From: Luis R. Rodriguez @ 2018-06-19 20:59 UTC (permalink / raw)
  To: Eric Sandeen; +Cc: linux-xfs, Luis R. Rodriguez

On Tue, Jun 19, 2018 at 03:07:01PM -0500, Eric Sandeen wrote:
> This should have been removed when I removed the dft->type
> tracking.
> 
> Signed-off-by: Eric Sandeen <sandeen@redhat.com>

Reviewed-by: Luis R. Rodriguez <mcgrof@kernel.org>

  Luis

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

end of thread, other threads:[~2018-06-19 20:59 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2018-06-19 20:07 [PATCH] mkfs: removed unused dft var from open_config_file Eric Sandeen
2018-06-19 20:40 ` Darrick J. Wong
2018-06-19 20:59 ` Luis R. Rodriguez

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