public inbox for linux-rt-users@vger.kernel.org
 help / color / mirror / Atom feed
* [PATCH] cyclictest: cannot stop running with '-M' option
@ 2017-04-28 21:02 Jianxun Zhang
  2017-05-04 12:43 ` John Kacur
  0 siblings, 1 reply; 2+ messages in thread
From: Jianxun Zhang @ 2017-04-28 21:02 UTC (permalink / raw)
  To: linux-rt-users; +Cc: Jianxun Zhang

Most of time having '-M' option causes cyclictest  won't exit after
a duration ('-D') expires, like this quick  command on my machines:

sudo cyclictest  -S -M -D2 -d0

This is because the main thread is blocked on waiting for the next
update of MAX, but the timer thread doesn't signal the main thread
before it quits.

Signed-off-by: Jianxun Zhang <jianxun.zhang@linux.intel.com>
---

The issue may not happen every time, depending on your machine or other parameters fed to cyclictest, but it does quite often on my setup.

 src/cyclictest/cyclictest.c | 19 +++++++++++++++++--
 1 file changed, 17 insertions(+), 2 deletions(-)

diff --git a/src/cyclictest/cyclictest.c b/src/cyclictest/cyclictest.c
index 3f1bef1..36259ea 100644
--- a/src/cyclictest/cyclictest.c
+++ b/src/cyclictest/cyclictest.c
@@ -1241,6 +1241,17 @@ static void *timerthread(void *param)
 	}
 
 out:
+	if (refresh_on_max) {
+		pthread_mutex_lock(&refresh_on_max_lock);
+		/* We could reach here with both shutdown and allstopped unset (0).
+		 * Set shutdown with synchronization to notify the main
+		 * thread not to be blocked when it should exit.
+		 */
+		shutdown++;
+		pthread_cond_signal(&refresh_on_max_cond);
+		pthread_mutex_unlock(&refresh_on_max_lock);
+	}
+
 	if (par->mode == MODE_CYCLIC)
 		timer_delete(timer);
 
@@ -2512,8 +2523,9 @@ int main(int argc, char **argv)
 
 		if (refresh_on_max) {
 			pthread_mutex_lock(&refresh_on_max_lock);
-			pthread_cond_wait(&refresh_on_max_cond,
-					  &refresh_on_max_lock);
+			if (!shutdown)
+				pthread_cond_wait(&refresh_on_max_cond,
+						&refresh_on_max_lock);
 			pthread_mutex_unlock(&refresh_on_max_lock);
 		}
 	}
@@ -2523,6 +2535,9 @@ int main(int argc, char **argv)
 	shutdown = 1;
 	usleep(50000);
 
+	if (!verbose && !quiet && refresh_on_max)
+		printf("\033[%dB", num_threads + 2);
+
 	if (quiet)
 		quiet = 2;
 	for (i = 0; i < num_threads; i++) {
-- 
2.7.4


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

* Re: [PATCH] cyclictest: cannot stop running with '-M' option
  2017-04-28 21:02 [PATCH] cyclictest: cannot stop running with '-M' option Jianxun Zhang
@ 2017-05-04 12:43 ` John Kacur
  0 siblings, 0 replies; 2+ messages in thread
From: John Kacur @ 2017-05-04 12:43 UTC (permalink / raw)
  To: Jianxun Zhang; +Cc: linux-rt-users



On Fri, 28 Apr 2017, Jianxun Zhang wrote:

> Most of time having '-M' option causes cyclictest  won't exit after
> a duration ('-D') expires, like this quick  command on my machines:
> 
> sudo cyclictest  -S -M -D2 -d0
> 
> This is because the main thread is blocked on waiting for the next
> update of MAX, but the timer thread doesn't signal the main thread
> before it quits.
> 
> Signed-off-by: Jianxun Zhang <jianxun.zhang@linux.intel.com>
> ---
> 
> The issue may not happen every time, depending on your machine or other parameters fed to cyclictest, but it does quite often on my setup.
> 
>  src/cyclictest/cyclictest.c | 19 +++++++++++++++++--
>  1 file changed, 17 insertions(+), 2 deletions(-)
> 
> diff --git a/src/cyclictest/cyclictest.c b/src/cyclictest/cyclictest.c
> index 3f1bef1..36259ea 100644
> --- a/src/cyclictest/cyclictest.c
> +++ b/src/cyclictest/cyclictest.c
> @@ -1241,6 +1241,17 @@ static void *timerthread(void *param)
>  	}
>  
>  out:
> +	if (refresh_on_max) {
> +		pthread_mutex_lock(&refresh_on_max_lock);
> +		/* We could reach here with both shutdown and allstopped unset (0).
> +		 * Set shutdown with synchronization to notify the main
> +		 * thread not to be blocked when it should exit.
> +		 */
> +		shutdown++;
> +		pthread_cond_signal(&refresh_on_max_cond);
> +		pthread_mutex_unlock(&refresh_on_max_lock);
> +	}
> +
>  	if (par->mode == MODE_CYCLIC)
>  		timer_delete(timer);
>  
> @@ -2512,8 +2523,9 @@ int main(int argc, char **argv)
>  
>  		if (refresh_on_max) {
>  			pthread_mutex_lock(&refresh_on_max_lock);
> -			pthread_cond_wait(&refresh_on_max_cond,
> -					  &refresh_on_max_lock);
> +			if (!shutdown)
> +				pthread_cond_wait(&refresh_on_max_cond,
> +						&refresh_on_max_lock);
>  			pthread_mutex_unlock(&refresh_on_max_lock);
>  		}
>  	}
> @@ -2523,6 +2535,9 @@ int main(int argc, char **argv)
>  	shutdown = 1;
>  	usleep(50000);
>  
> +	if (!verbose && !quiet && refresh_on_max)
> +		printf("\033[%dB", num_threads + 2);
> +
>  	if (quiet)
>  		quiet = 2;
>  	for (i = 0; i < num_threads; i++) {
> -- 
> 2.7.4
> 
> --

Signed-off-by: jkacur@redhat.com
> 

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

end of thread, other threads:[~2017-05-04 12:43 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2017-04-28 21:02 [PATCH] cyclictest: cannot stop running with '-M' option Jianxun Zhang
2017-05-04 12:43 ` John Kacur

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