* [PATCH] Make -x option position-agnostic
@ 2017-04-20 17:09 Jianxun Zhang
2017-05-15 14:50 ` John Kacur
0 siblings, 1 reply; 2+ messages in thread
From: Jianxun Zhang @ 2017-04-20 17:09 UTC (permalink / raw)
To: linux-rt-users; +Cc: vedang.patel, Jianxun Zhang
Change 9d2c9edd86943dfea399a0176826af8bb92bf97c introduces
the new option of POSIX timer and makes MODE_CLOCK_NANOSLEEP
the default choice. But there are two places explicitly set
MODE_CLOCK_NANOSLEEP to the variable use_nanosleep in the code,
so the actual value of the variable after parsing depends on
the position of '-x' to '-U' and '-S'.
These command pairs result in different values in the variable:
'cyclictest -S -x' VS 'cyclictest -x -S'
'cyclictest -U -x' VS 'cyclictest -x -U'
This change ensures -x work regardless its position by removing
the two lines in these cases.
Signed-off-by: Jianxun Zhang <jianxun.zhang@linux.intel.com>
---
Note: This patch is submitted after a very limited test in its scope. No real RT test was performed. Maintainers may want to do a full test or a closer review for anything I missed.
There are other findings regarding to the parsing logic but I don't think they are critical as long as the usage gives correct test results. I could amend these with more patches later.
Thanks
src/cyclictest/cyclictest.c | 2 --
1 file changed, 2 deletions(-)
diff --git a/src/cyclictest/cyclictest.c b/src/cyclictest/cyclictest.c
index 0b13441..381191c 100644
--- a/src/cyclictest/cyclictest.c
+++ b/src/cyclictest/cyclictest.c
@@ -1705,7 +1705,6 @@ static void process_options (int argc, char *argv[], int max_cpus)
smp = 1;
num_threads = max_cpus;
setaffinity = AFFINITY_USEALL;
- use_nanosleep = MODE_CLOCK_NANOSLEEP;
break;
case 't':
case OPT_THREADS:
@@ -1744,7 +1743,6 @@ static void process_options (int argc, char *argv[], int max_cpus)
#ifdef NUMA
num_threads = max_cpus;
setaffinity = AFFINITY_USEALL;
- use_nanosleep = MODE_CLOCK_NANOSLEEP;
#else
warn("cyclictest was not built with the numa option\n");
warn("ignoring --numa or -U\n");
--
2.7.4
^ permalink raw reply related [flat|nested] 2+ messages in thread* Re: [PATCH] Make -x option position-agnostic
2017-04-20 17:09 [PATCH] Make -x option position-agnostic Jianxun Zhang
@ 2017-05-15 14:50 ` John Kacur
0 siblings, 0 replies; 2+ messages in thread
From: John Kacur @ 2017-05-15 14:50 UTC (permalink / raw)
To: Jianxun Zhang; +Cc: linux-rt-users, vedang.patel, Clark Williams
On Thu, 20 Apr 2017, Jianxun Zhang wrote:
> Change 9d2c9edd86943dfea399a0176826af8bb92bf97c introduces
> the new option of POSIX timer and makes MODE_CLOCK_NANOSLEEP
> the default choice. But there are two places explicitly set
> MODE_CLOCK_NANOSLEEP to the variable use_nanosleep in the code,
> so the actual value of the variable after parsing depends on
> the position of '-x' to '-U' and '-S'.
>
> These command pairs result in different values in the variable:
> 'cyclictest -S -x' VS 'cyclictest -x -S'
> 'cyclictest -U -x' VS 'cyclictest -x -U'
>
> This change ensures -x work regardless its position by removing
> the two lines in these cases.
>
> Signed-off-by: Jianxun Zhang <jianxun.zhang@linux.intel.com>
> ---
> Note: This patch is submitted after a very limited test in its scope. No real RT test was performed. Maintainers may want to do a full test or a closer review for anything I missed.
>
> There are other findings regarding to the parsing logic but I don't think they are critical as long as the usage gives correct test results. I could amend these with more patches later.
>
> Thanks
>
> src/cyclictest/cyclictest.c | 2 --
> 1 file changed, 2 deletions(-)
>
> diff --git a/src/cyclictest/cyclictest.c b/src/cyclictest/cyclictest.c
> index 0b13441..381191c 100644
> --- a/src/cyclictest/cyclictest.c
> +++ b/src/cyclictest/cyclictest.c
> @@ -1705,7 +1705,6 @@ static void process_options (int argc, char *argv[], int max_cpus)
> smp = 1;
> num_threads = max_cpus;
> setaffinity = AFFINITY_USEALL;
> - use_nanosleep = MODE_CLOCK_NANOSLEEP;
> break;
> case 't':
> case OPT_THREADS:
> @@ -1744,7 +1743,6 @@ static void process_options (int argc, char *argv[], int max_cpus)
> #ifdef NUMA
> num_threads = max_cpus;
> setaffinity = AFFINITY_USEALL;
> - use_nanosleep = MODE_CLOCK_NANOSLEEP;
> #else
> warn("cyclictest was not built with the numa option\n");
> warn("ignoring --numa or -U\n");
> --
> 2.7.4
>
> --
Signed-off-by: John Kacur <jkacur@redhat.com>
Thanks for the patch. In the future could you please
cc John Kacur <jkacur@redhat.com> and
Clark Williams <williams@redhat.com>
So that we don't miss any patches. thanks!
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2017-05-15 14:50 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2017-04-20 17:09 [PATCH] Make -x option position-agnostic Jianxun Zhang
2017-05-15 14:50 ` John Kacur
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).