public inbox for linux-rt-users@vger.kernel.org
 help / color / mirror / Atom feed
* [PATCH 1/1] cyclictest: Fix long priority help text option
@ 2015-07-22 12:44 Alexander Stein
  2015-07-22 15:21 ` Clark Williams
  0 siblings, 1 reply; 3+ messages in thread
From: Alexander Stein @ 2015-07-22 12:44 UTC (permalink / raw)
  To: Clark Williams, John Kacur; +Cc: Alexander Stein, linux-rt-users

The help text shows prio as the long option name for the process priority.
But it is actually priority.

Signed-off-by: Alexander Stein <alexander.stein@systec-electronic.com>
---
 src/cyclictest/cyclictest.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/cyclictest/cyclictest.c b/src/cyclictest/cyclictest.c
index 34053c5..c178a74 100644
--- a/src/cyclictest/cyclictest.c
+++ b/src/cyclictest/cyclictest.c
@@ -1062,7 +1062,7 @@ static void display_help(int error)
 	       "-N       --nsecs           print results in ns instead of us (default us)\n"
 	       "-o RED   --oscope=RED      oscilloscope mode, reduce verbose output by RED\n"
 	       "-O TOPT  --traceopt=TOPT   trace option\n"
-	       "-p PRIO  --prio=PRIO       priority of highest prio thread\n"
+	       "-p PRIO  --priority=PRIO   priority of highest prio thread\n"
 	       "-P       --preemptoff      Preempt off tracing (used with -b)\n"
 	       "-q       --quiet           print only a summary on exit\n"
 	       "	 --priospread       spread priority levels starting at specified value\n"
-- 
2.3.6


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

* Re: [PATCH 1/1] cyclictest: Fix long priority help text option
  2015-07-22 12:44 [PATCH 1/1] cyclictest: Fix long priority help text option Alexander Stein
@ 2015-07-22 15:21 ` Clark Williams
  2015-07-24 13:14   ` John Kacur
  0 siblings, 1 reply; 3+ messages in thread
From: Clark Williams @ 2015-07-22 15:21 UTC (permalink / raw)
  To: Alexander Stein; +Cc: John Kacur, linux-rt-users

On Wed, 22 Jul 2015 14:44:59 +0200
Alexander Stein <alexander.stein@systec-electronic.com> wrote:

> The help text shows prio as the long option name for the process priority.
> But it is actually priority.
> 
> Signed-off-by: Alexander Stein <alexander.stein@systec-electronic.com>
> ---
>  src/cyclictest/cyclictest.c | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
> 
> diff --git a/src/cyclictest/cyclictest.c b/src/cyclictest/cyclictest.c
> index 34053c5..c178a74 100644
> --- a/src/cyclictest/cyclictest.c
> +++ b/src/cyclictest/cyclictest.c
> @@ -1062,7 +1062,7 @@ static void display_help(int error)
>  	       "-N       --nsecs           print results in ns instead of us (default us)\n"
>  	       "-o RED   --oscope=RED      oscilloscope mode, reduce verbose output by RED\n"
>  	       "-O TOPT  --traceopt=TOPT   trace option\n"
> -	       "-p PRIO  --prio=PRIO       priority of highest prio thread\n"
> +	       "-p PRIO  --priority=PRIO   priority of highest prio thread\n"
>  	       "-P       --preemptoff      Preempt off tracing (used with -b)\n"
>  	       "-q       --quiet           print only a summary on exit\n"
>  	       "	 --priospread       spread priority levels starting at specified value\n"
> -- 
> 2.3.6

Thanks, I've pulled this into my tree for the next release.

Clark

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

* Re: [PATCH 1/1] cyclictest: Fix long priority help text option
  2015-07-22 15:21 ` Clark Williams
@ 2015-07-24 13:14   ` John Kacur
  0 siblings, 0 replies; 3+ messages in thread
From: John Kacur @ 2015-07-24 13:14 UTC (permalink / raw)
  To: Clark Williams; +Cc: Alexander Stein, John Kacur, linux-rt-users



On Wed, 22 Jul 2015, Clark Williams wrote:

> On Wed, 22 Jul 2015 14:44:59 +0200
> Alexander Stein <alexander.stein@systec-electronic.com> wrote:
> 
> > The help text shows prio as the long option name for the process priority.
> > But it is actually priority.
> > 
> > Signed-off-by: Alexander Stein <alexander.stein@systec-electronic.com>
> > ---
> >  src/cyclictest/cyclictest.c | 2 +-
> >  1 file changed, 1 insertion(+), 1 deletion(-)
> > 
> > diff --git a/src/cyclictest/cyclictest.c b/src/cyclictest/cyclictest.c
> > index 34053c5..c178a74 100644
> > --- a/src/cyclictest/cyclictest.c
> > +++ b/src/cyclictest/cyclictest.c
> > @@ -1062,7 +1062,7 @@ static void display_help(int error)
> >  	       "-N       --nsecs           print results in ns instead of us (default us)\n"
> >  	       "-o RED   --oscope=RED      oscilloscope mode, reduce verbose output by RED\n"
> >  	       "-O TOPT  --traceopt=TOPT   trace option\n"
> > -	       "-p PRIO  --prio=PRIO       priority of highest prio thread\n"
> > +	       "-p PRIO  --priority=PRIO   priority of highest prio thread\n"
> >  	       "-P       --preemptoff      Preempt off tracing (used with -b)\n"
> >  	       "-q       --quiet           print only a summary on exit\n"
> >  	       "	 --priospread       spread priority levels starting at specified value\n"
> > -- 
> > 2.3.6
> 
> Thanks, I've pulled this into my tree for the next release.


Ack:

I've also added it to branch v0.93-devel with Clark's SOB here
git://git.kernel.org/pub/scm/utils/rt-tests/rt-tests.git

Thanks!

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

end of thread, other threads:[~2015-07-24 13:14 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2015-07-22 12:44 [PATCH 1/1] cyclictest: Fix long priority help text option Alexander Stein
2015-07-22 15:21 ` Clark Williams
2015-07-24 13:14   ` John Kacur

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