mirror of https://lore.kernel.org/lkml/
 help / color / mirror / Atom feed
* [PATCH] rcutorture: Add missing - to `--do-allmodconfig` in usage
@ 2022-02-08 10:52 Paul Menzel
  2022-02-08 18:05 ` Paul E. McKenney
  0 siblings, 1 reply; 4+ messages in thread
From: Paul Menzel @ 2022-02-08 10:52 UTC (permalink / raw)
  To: Paul E. McKenney, Josh Triplett, Steven Rostedt,
	Mathieu Desnoyers, Lai Jiangshan, Shuah Khan
  Cc: Paul Menzel, rcu, linux-kselftest, linux-kernel

The usage currently lists `--doallmodconfig`, resulting in:

    $ tools/testing/selftests/rcutorture/bin/torture.sh --doallmodconfig
    Unknown argument --doallmodconfig
    […]

Add the missing dash for `--do-allmodconfig`.

Fixes: a115a775a8d5 ("torture: Add "make allmodconfig" to torture.sh")
Signed-off-by: Paul Menzel <pmenzel@molgen.mpg.de>
---
 tools/testing/selftests/rcutorture/bin/torture.sh | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/tools/testing/selftests/rcutorture/bin/torture.sh b/tools/testing/selftests/rcutorture/bin/torture.sh
index eae88aacca2a..3adcc83dd55d 100755
--- a/tools/testing/selftests/rcutorture/bin/torture.sh
+++ b/tools/testing/selftests/rcutorture/bin/torture.sh
@@ -72,7 +72,7 @@ usage () {
 	echo "       --configs-locktorture \"config-file list w/ repeat factor (10*LOCK01)\""
 	echo "       --configs-scftorture \"config-file list w/ repeat factor (2*CFLIST)\""
 	echo "       --doall"
-	echo "       --doallmodconfig / --do-no-allmodconfig"
+	echo "       --do-allmodconfig / --do-no-allmodconfig"
 	echo "       --do-clocksourcewd / --do-no-clocksourcewd"
 	echo "       --do-kasan / --do-no-kasan"
 	echo "       --do-kcsan / --do-no-kcsan"
-- 
2.34.1


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

* Re: [PATCH] rcutorture: Add missing - to `--do-allmodconfig` in usage
  2022-02-08 10:52 [PATCH] rcutorture: Add missing - to `--do-allmodconfig` in usage Paul Menzel
@ 2022-02-08 18:05 ` Paul E. McKenney
  2022-02-08 18:17   ` Paul Menzel
  0 siblings, 1 reply; 4+ messages in thread
From: Paul E. McKenney @ 2022-02-08 18:05 UTC (permalink / raw)
  To: Paul Menzel
  Cc: Josh Triplett, Steven Rostedt, Mathieu Desnoyers, Lai Jiangshan,
	Shuah Khan, rcu, linux-kselftest, linux-kernel

On Tue, Feb 08, 2022 at 11:52:40AM +0100, Paul Menzel wrote:
> The usage currently lists `--doallmodconfig`, resulting in:
> 
>     $ tools/testing/selftests/rcutorture/bin/torture.sh --doallmodconfig
>     Unknown argument --doallmodconfig
>     […]
> 
> Add the missing dash for `--do-allmodconfig`.
> 
> Fixes: a115a775a8d5 ("torture: Add "make allmodconfig" to torture.sh")
> Signed-off-by: Paul Menzel <pmenzel@molgen.mpg.de>

Good eyes, thank you!

I will add your Reported-by and your Fixes line (with attribution) to
this commit in -rcu:

dbc3fa1ffb4b ("torture: Make torture.sh help message match reality")

							Thanx, Paul

> ---
>  tools/testing/selftests/rcutorture/bin/torture.sh | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
> 
> diff --git a/tools/testing/selftests/rcutorture/bin/torture.sh b/tools/testing/selftests/rcutorture/bin/torture.sh
> index eae88aacca2a..3adcc83dd55d 100755
> --- a/tools/testing/selftests/rcutorture/bin/torture.sh
> +++ b/tools/testing/selftests/rcutorture/bin/torture.sh
> @@ -72,7 +72,7 @@ usage () {
>  	echo "       --configs-locktorture \"config-file list w/ repeat factor (10*LOCK01)\""
>  	echo "       --configs-scftorture \"config-file list w/ repeat factor (2*CFLIST)\""
>  	echo "       --doall"
> -	echo "       --doallmodconfig / --do-no-allmodconfig"
> +	echo "       --do-allmodconfig / --do-no-allmodconfig"
>  	echo "       --do-clocksourcewd / --do-no-clocksourcewd"
>  	echo "       --do-kasan / --do-no-kasan"
>  	echo "       --do-kcsan / --do-no-kcsan"
> -- 
> 2.34.1
> 

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

* Re: [PATCH] rcutorture: Add missing - to `--do-allmodconfig` in usage
  2022-02-08 18:05 ` Paul E. McKenney
@ 2022-02-08 18:17   ` Paul Menzel
  2022-02-08 19:33     ` Paul E. McKenney
  0 siblings, 1 reply; 4+ messages in thread
From: Paul Menzel @ 2022-02-08 18:17 UTC (permalink / raw)
  To: Paul E. McKenney
  Cc: Josh Triplett, Steven Rostedt, Mathieu Desnoyers, Lai Jiangshan,
	Shuah Khan, rcu, linux-kselftest, linux-kernel

Dear Paul,


Am 08.02.22 um 19:05 schrieb Paul E. McKenney:
> On Tue, Feb 08, 2022 at 11:52:40AM +0100, Paul Menzel wrote:
>> The usage currently lists `--doallmodconfig`, resulting in:
>>
>>      $ tools/testing/selftests/rcutorture/bin/torture.sh --doallmodconfig
>>      Unknown argument --doallmodconfig
>>      […]
>>
>> Add the missing dash for `--do-allmodconfig`.
>>
>> Fixes: a115a775a8d5 ("torture: Add "make allmodconfig" to torture.sh")
>> Signed-off-by: Paul Menzel <pmenzel@molgen.mpg.de>
> 
> Good eyes, thank you!
> 
> I will add your Reported-by and your Fixes line (with attribution) to
> this commit in -rcu:
> 
> dbc3fa1ffb4b ("torture: Make torture.sh help message match reality")

Oh, I missed that. No need to amend, and sorry for the noise.


Kind regards,

Paul

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

* Re: [PATCH] rcutorture: Add missing - to `--do-allmodconfig` in usage
  2022-02-08 18:17   ` Paul Menzel
@ 2022-02-08 19:33     ` Paul E. McKenney
  0 siblings, 0 replies; 4+ messages in thread
From: Paul E. McKenney @ 2022-02-08 19:33 UTC (permalink / raw)
  To: Paul Menzel
  Cc: Josh Triplett, Steven Rostedt, Mathieu Desnoyers, Lai Jiangshan,
	Shuah Khan, rcu, linux-kselftest, linux-kernel

On Tue, Feb 08, 2022 at 07:17:37PM +0100, Paul Menzel wrote:
> Dear Paul,
> 
> 
> Am 08.02.22 um 19:05 schrieb Paul E. McKenney:
> > On Tue, Feb 08, 2022 at 11:52:40AM +0100, Paul Menzel wrote:
> > > The usage currently lists `--doallmodconfig`, resulting in:
> > > 
> > >      $ tools/testing/selftests/rcutorture/bin/torture.sh --doallmodconfig
> > >      Unknown argument --doallmodconfig
> > >      […]
> > > 
> > > Add the missing dash for `--do-allmodconfig`.
> > > 
> > > Fixes: a115a775a8d5 ("torture: Add "make allmodconfig" to torture.sh")
> > > Signed-off-by: Paul Menzel <pmenzel@molgen.mpg.de>
> > 
> > Good eyes, thank you!
> > 
> > I will add your Reported-by and your Fixes line (with attribution) to
> > this commit in -rcu:
> > 
> > dbc3fa1ffb4b ("torture: Make torture.sh help message match reality")
> 
> Oh, I missed that. No need to amend, and sorry for the noise.

No problem, I had to do a rebase to make a bunch of other adjustments
anyway.  The updated commit should be showing up on a kernel.org mirror
near you in the near future.  ;-)

							Thanx, Paul

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

end of thread, other threads:[~2022-02-08 19:33 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-02-08 10:52 [PATCH] rcutorture: Add missing - to `--do-allmodconfig` in usage Paul Menzel
2022-02-08 18:05 ` Paul E. McKenney
2022-02-08 18:17   ` Paul Menzel
2022-02-08 19:33     ` Paul E. McKenney

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

all inboxes | Powered by JetHome®