From: Andrew Cooper <andrew.cooper3@citrix.com>
To: Jan Beulich <JBeulich@suse.com>
Cc: "Tim (Xen.org)" <tim@xen.org>, "Keir (Xen.org)" <keir@xen.org>,
"xen-devel@lists.xen.org" <xen-devel@lists.xen.org>
Subject: Re: [PATCH] x86/watchdog: Use real timestamps for watchdog timeout
Date: Fri, 24 May 2013 10:57:40 +0100 [thread overview]
Message-ID: <519F3994.7040008@citrix.com> (raw)
In-Reply-To: <519F2E5D02000078000D8AA7@nat28.tlf.novell.com>
On 24/05/13 08:09, Jan Beulich wrote:
>>>> On 23.05.13 at 22:32, Andrew Cooper <andrew.cooper3@citrix.com> wrote:
>> Do not assume that we will only receive interrupts at a rate of nmi_hz. On a
>> test system being debugged, I observed a PCI SERR being continuously
>> asserted
>> without the SERR bit being set. The result was Xen "exceeding" a 300 second
>> timeout within 1 second.
> This is a questionable rationale for the patch, no matter that
> conceptually I don't mind a change like this. On broken systems
> like this it may be more reasonable to require the watchdog (which
> is disabled by default anyway) to not get enabled.
In this particular system there is already a need for a BIOS fix (for
another issue), so adding a fix of the SERR bit to list is also doable.
I suppose that I should say that the reason for the patch is not because
*this* system entered that bad state, but because it is possible with a
sufficiently high rate of NMIs in general.
>
>> @@ -432,23 +432,22 @@ void nmi_watchdog_tick(struct cpu_user_r
>> if ( (this_cpu(last_irq_sums) == sum) &&
>> !atomic_read(&watchdog_disable_count) )
>> {
>> - /*
>> - * Ayiee, looks like this CPU is stuck ... wait for the timeout
>> - * before doing the oops ...
>> - */
>> - this_cpu(alert_counter)++;
>> - if ( this_cpu(alert_counter) == opt_watchdog_timeout*nmi_hz )
>> + s_time_t last_change = this_cpu(last_irq_change);
>> +
>> + if ( (NOW() - last_change) > SECONDS(opt_watchdog_timeout) )
> You can't use NOW() here - while the time updating code is safe
> against normal interrupts, it's not atomic wrt NMIs.
But NMIs are latched at the hardware level. If we get a nested NMI the
Xen will be toast on the exit path anyway.
We dont currently detect that yet because I have not had sufficient time
to complete my reentrant issues patch series yet.
>
> Since you don't really need this calculation to be very precise,
> doing it using plain TSC values might be acceptable, with the one
> caveat that you'd need to check that doing this in the middle of a
> TSC update (by time_calibration_tsc_rendezvous()) is still safe
> and sufficiently precise.
I dont see how using raw TSC values differs from using NOW() when it
comes to racing with time_calibration_tsc_rendezvous(). NOW() has an
rdtsc in it.
>From a quick eyeball of the code, I cant spot any errors which would
occur. time_calibration_tsc_rendezvous() already has the possibility of
an NMI interrupting it which might skew the calculation. On the other
hand, NOW() is read-only with respect to any system state
The only issue might be the write_tsc() causing the tsc to step
backwards, but that is already a potential problem using NOW() on either
side of a tsc_rendezvous() anyway.
~Andrew
>
> The only other (non-generic) alternative I see is to use the HPET
> main counter if 64-bit capable _and_ we ran it as 64-bit counter.
> But that would neither cover all machines nor be backportable
> (because of 32-bit's constraints).
>
> Jan
>
>> {
>> + /* Ayiee, looks like this CPU is stuck. */
>> +
>> console_force_unlock();
>> printk("Watchdog timer detects that CPU%d is stuck!\n",
>> smp_processor_id());
>> fatal_trap(TRAP_nmi, regs);
>> }
>> - }
>> - else
>> + }
>> + else
>> {
>> this_cpu(last_irq_sums) = sum;
>> - this_cpu(alert_counter) = 0;
>> + this_cpu(last_irq_change) = NOW();
>> }
>>
>> if ( nmi_perfctr_msr )
>
>
next prev parent reply other threads:[~2013-05-24 9:57 UTC|newest]
Thread overview: 19+ messages / expand[flat|nested] mbox.gz Atom feed top
2013-05-23 20:32 [PATCH] x86/watchdog: Use real timestamps for watchdog timeout Andrew Cooper
2013-05-24 7:09 ` Jan Beulich
2013-05-24 9:57 ` Andrew Cooper [this message]
2013-05-24 10:13 ` Tim Deegan
2013-05-24 10:33 ` Andrew Cooper
2013-05-24 11:42 ` Jan Beulich
2013-05-24 12:00 ` Andrew Cooper
2013-05-24 13:11 ` Jan Beulich
2013-05-24 11:36 ` Jan Beulich
2013-05-24 12:41 ` Tim Deegan
2013-05-24 12:48 ` Andrew Cooper
2013-05-24 13:55 ` Tim Deegan
2013-05-24 14:29 ` Andrew Cooper
2013-05-24 17:10 ` Tim Deegan
2013-05-24 17:27 ` Andrew Cooper
2013-05-24 13:17 ` Jan Beulich
2013-05-24 14:01 ` Tim Deegan
2013-05-24 9:37 ` Tim Deegan
2013-05-24 10:03 ` Andrew Cooper
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=519F3994.7040008@citrix.com \
--to=andrew.cooper3@citrix.com \
--cc=JBeulich@suse.com \
--cc=keir@xen.org \
--cc=tim@xen.org \
--cc=xen-devel@lists.xen.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 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).