All of lore.kernel.org
 help / color / mirror / Atom feed
From: "Paul E. McKenney" <paulmck@linux.vnet.ibm.com>
To: Arnd Bergmann <arnd@arndb.de>
Cc: Davidlohr Bueso <dave@stgolabs.net>,
	Josh Triplett <josh@joshtriplett.org>,
	Steven Rostedt <rostedt@goodmis.org>,
	Mathieu Desnoyers <mathieu.desnoyers@efficios.com>,
	Lai Jiangshan <jiangshanlai@gmail.com>,
	Kees Cook <keescook@chromium.org>,
	linux-kernel@vger.kernel.org
Subject: Re: [PATCH] rcutorture: use monotonic timestamp for stall detection
Date: Mon, 18 Jun 2018 08:30:27 -0700	[thread overview]
Message-ID: <20180618153027.GU3593@linux.vnet.ibm.com> (raw)
In-Reply-To: <20180618144741.339763-1-arnd@arndb.de>

On Mon, Jun 18, 2018 at 04:47:34PM +0200, Arnd Bergmann wrote:
> The get_seconds() call is deprecated because it overflows on 32-bit
> architectures. The algorithm in rcu_torture_stall() can deal with
> the overflow, but another problem here is that using a CLOCK_REALTIME
> stamp can lead to a false-positive stall warning when a settimeofday()
> happens concurrently.
> 
> Using ktime_get_seconds() instead avoids those issues and will never
> overflow. The added cast to 'unsigned long' however is necessary to
> make ULONG_CMP_LT() work correctly.
> 
> Signed-off-by: Arnd Bergmann <arnd@arndb.de>

Queued for testing and review, thank you!  If things go well, I
expect this to be ready for the v4.19 merge window.

							Thanx, Paul

> ---
>  kernel/rcu/rcutorture.c | 5 +++--
>  1 file changed, 3 insertions(+), 2 deletions(-)
> 
> diff --git a/kernel/rcu/rcutorture.c b/kernel/rcu/rcutorture.c
> index 42fcb7f05fac..f42cf69ef539 100644
> --- a/kernel/rcu/rcutorture.c
> +++ b/kernel/rcu/rcutorture.c
> @@ -1446,7 +1446,7 @@ static int rcu_torture_stall(void *args)
>  		VERBOSE_TOROUT_STRING("rcu_torture_stall end holdoff");
>  	}
>  	if (!kthread_should_stop()) {
> -		stop_at = get_seconds() + stall_cpu;
> +		stop_at = ktime_get_seconds() + stall_cpu;
>  		/* RCU CPU stall is expected behavior in following code. */
>  		rcu_read_lock();
>  		if (stall_cpu_irqsoff)
> @@ -1455,7 +1455,8 @@ static int rcu_torture_stall(void *args)
>  			preempt_disable();
>  		pr_alert("rcu_torture_stall start on CPU %d.\n",
>  			 smp_processor_id());
> -		while (ULONG_CMP_LT(get_seconds(), stop_at))
> +		while (ULONG_CMP_LT((unsigned long)ktime_get_seconds(),
> +				    stop_at))
>  			continue;  /* Induce RCU CPU stall warning. */
>  		if (stall_cpu_irqsoff)
>  			local_irq_enable();
> -- 
> 2.9.0
> 


      reply	other threads:[~2018-06-18 15:29 UTC|newest]

Thread overview: 2+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2018-06-18 14:47 [PATCH] rcutorture: use monotonic timestamp for stall detection Arnd Bergmann
2018-06-18 15:30 ` Paul E. McKenney [this message]

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20180618153027.GU3593@linux.vnet.ibm.com \
    --to=paulmck@linux.vnet.ibm.com \
    --cc=arnd@arndb.de \
    --cc=dave@stgolabs.net \
    --cc=jiangshanlai@gmail.com \
    --cc=josh@joshtriplett.org \
    --cc=keescook@chromium.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=mathieu.desnoyers@efficios.com \
    --cc=rostedt@goodmis.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.