public inbox for fstests@vger.kernel.org
 help / color / mirror / Atom feed
* [PATCH] fsstress: allow multiple suboptions to -f
@ 2025-12-04 21:53 Darrick J. Wong
  2025-12-05  6:16 ` Zorro Lang
  0 siblings, 1 reply; 2+ messages in thread
From: Darrick J. Wong @ 2025-12-04 21:53 UTC (permalink / raw)
  To: Zorro Lang; +Cc: fstests, xfs

From: Darrick J. Wong <djwong@kernel.org>

I got bitten by fsstress's argument parsing recently because it turns
out that if you do:

# fsstress -z -f creat=2,unlink=1

It will ignore everything after the '2' and worse yet it won't tell you
that it's done so unless you happen to pass -S to make it spit out the
frequency table.

Adapt process_freq to tokenize the argument string so that it can handle
a comma-separated list of key-value arguments.

Signed-off-by: "Darrick J. Wong" <djwong@kernel.org>
---
 ltp/fsstress.c |   43 +++++++++++++++++++++++++++++--------------
 1 file changed, 29 insertions(+), 14 deletions(-)

diff --git a/ltp/fsstress.c b/ltp/fsstress.c
index 00773cc004bfac..c17ac440414325 100644
--- a/ltp/fsstress.c
+++ b/ltp/fsstress.c
@@ -1792,23 +1792,38 @@ opendir_path(pathname_t *name)
 void
 process_freq(char *arg)
 {
-	opdesc_t	*p;
-	char		*s;
+	char		*token;
+	char		*argstr = strdup(arg);
+	char		*tokstr = argstr ? argstr : arg;
 
-	s = strchr(arg, '=');
-	if (s == NULL) {
-		fprintf(stderr, "bad argument '%s'\n", arg);
-		exit(1);
-	}
-	*s++ = '\0';
-	for (p = ops; p < ops_end; p++) {
-		if (strcmp(arg, p->name) == 0) {
-			p->freq = atoi(s);
-			return;
+	while ((token = strtok(tokstr, ",")) != NULL) {
+		opdesc_t	*p = ops;
+		char		*s = strchr(token, '=');
+		int		found = 0;
+
+		if (!s) {
+			fprintf(stderr, "bad argument '%s'\n", token);
+			exit(1);
+		}
+
+		*s = '\0';
+		for (; p < ops_end; p++) {
+			if (strcmp(token, p->name) == 0) {
+				p->freq = atoi(s + 1);
+				found = 1;
+				break;
+			}
 		}
+
+		if (!found) {
+			fprintf(stderr, "can't find op type %s for -f\n", token);
+			exit(1);
+		}
+
+		tokstr = NULL;
 	}
-	fprintf(stderr, "can't find op type %s for -f\n", arg);
-	exit(1);
+
+	free(argstr);
 }
 
 int

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

* Re: [PATCH] fsstress: allow multiple suboptions to -f
  2025-12-04 21:53 [PATCH] fsstress: allow multiple suboptions to -f Darrick J. Wong
@ 2025-12-05  6:16 ` Zorro Lang
  0 siblings, 0 replies; 2+ messages in thread
From: Zorro Lang @ 2025-12-05  6:16 UTC (permalink / raw)
  To: Darrick J. Wong; +Cc: fstests, xfs

On Thu, Dec 04, 2025 at 01:53:17PM -0800, Darrick J. Wong wrote:
> From: Darrick J. Wong <djwong@kernel.org>
> 
> I got bitten by fsstress's argument parsing recently because it turns
> out that if you do:
> 
> # fsstress -z -f creat=2,unlink=1
> 
> It will ignore everything after the '2' and worse yet it won't tell you
> that it's done so unless you happen to pass -S to make it spit out the
> frequency table.
> 
> Adapt process_freq to tokenize the argument string so that it can handle
> a comma-separated list of key-value arguments.
> 
> Signed-off-by: "Darrick J. Wong" <djwong@kernel.org>
> ---

Looks and tests good to me, it even works with:
  "-f rmdir=10,link=10,creat=10,mkdir=10,rename=30 -f stat=30 -f unlink=30 -f truncate=20"

Reviewed-by: Zorro Lang <zlang@redhat.com>

>  ltp/fsstress.c |   43 +++++++++++++++++++++++++++++--------------
>  1 file changed, 29 insertions(+), 14 deletions(-)
> 
> diff --git a/ltp/fsstress.c b/ltp/fsstress.c
> index 00773cc004bfac..c17ac440414325 100644
> --- a/ltp/fsstress.c
> +++ b/ltp/fsstress.c
> @@ -1792,23 +1792,38 @@ opendir_path(pathname_t *name)
>  void
>  process_freq(char *arg)
>  {
> -	opdesc_t	*p;
> -	char		*s;
> +	char		*token;
> +	char		*argstr = strdup(arg);
> +	char		*tokstr = argstr ? argstr : arg;
>  
> -	s = strchr(arg, '=');
> -	if (s == NULL) {
> -		fprintf(stderr, "bad argument '%s'\n", arg);
> -		exit(1);
> -	}
> -	*s++ = '\0';
> -	for (p = ops; p < ops_end; p++) {
> -		if (strcmp(arg, p->name) == 0) {
> -			p->freq = atoi(s);
> -			return;
> +	while ((token = strtok(tokstr, ",")) != NULL) {
> +		opdesc_t	*p = ops;
> +		char		*s = strchr(token, '=');
> +		int		found = 0;
> +
> +		if (!s) {
> +			fprintf(stderr, "bad argument '%s'\n", token);
> +			exit(1);
> +		}
> +
> +		*s = '\0';
> +		for (; p < ops_end; p++) {
> +			if (strcmp(token, p->name) == 0) {
> +				p->freq = atoi(s + 1);
> +				found = 1;
> +				break;
> +			}
>  		}
> +
> +		if (!found) {
> +			fprintf(stderr, "can't find op type %s for -f\n", token);
> +			exit(1);
> +		}
> +
> +		tokstr = NULL;
>  	}
> -	fprintf(stderr, "can't find op type %s for -f\n", arg);
> -	exit(1);
> +
> +	free(argstr);
>  }
>  
>  int
> 


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

end of thread, other threads:[~2025-12-05  6:17 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2025-12-04 21:53 [PATCH] fsstress: allow multiple suboptions to -f Darrick J. Wong
2025-12-05  6:16 ` Zorro Lang

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