From: Aristeu Rozanski <aris@ruivo.org>
To: "Luck, Tony" <tony.luck@intel.com>
Cc: Borislav Petkov <bp@alien8.de>,
"linux-edac@vger.kernel.org" <linux-edac@vger.kernel.org>,
"aris@redhat.com" <aris@redhat.com>
Subject: Re: [RFC PATCH] mce: prevent concurrent polling of MCE events
Date: Fri, 28 Apr 2023 11:51:02 -0400 [thread overview]
Message-ID: <20230428155102.GE2449174@cathedrallabs.org> (raw)
In-Reply-To: <SJ1PR11MB6083410C8464DEC926C0BDB9FCC69@SJ1PR11MB6083.namprd11.prod.outlook.com>
Hi Tony,
On Tue, Jan 17, 2023 at 05:42:36PM +0000, Luck, Tony wrote:
> > +static DEFINE_RAW_SPINLOCK(timer_fn_lock);
> >
> > static unsigned long mce_adjust_timer_default(unsigned long interval)
> > {
> > @@ -1628,7 +1629,9 @@ static void mce_timer_fn(struct timer_list *t)
> > iv = __this_cpu_read(mce_next_interval);
> >
> > if (mce_available(this_cpu_ptr(&cpu_info))) {
> > + raw_spin_lock(&timer_fn_lock);
> > machine_check_poll(0, this_cpu_ptr(&mce_poll_banks));
> > + raw_spin_unlock(&timer_fn_lock);
> >
> > if (mce_intel_cmci_poll()) {
> > iv = mce_adjust_timer(iv);
>
> If the CMCI polling interrupts on those large number of CPUs are
> staggered at different times, then this should be fine. But if a largish
> number of CPUs get in lockstep with each other, then this could get
> ugly. I.e. 200 CPUs all take the "CMCI poll" interrupt together. Then
> get stuck in a convoy here as one at a time step through checking
> the machine check banks.
>
> I'm not sure if that is just a theoretical issue, or how bad it might
> actually be if it happened.
>
> One option to avoid this might be to change from a fixed five minute
> polling interval to "five minute plus/minus rand(50) jiffies". Then even
> if some CPUs did sync up, they'd quickly diverge again.
I did experiment different ranges including forcing a minimum difference
based on cpu number but eventually I'd see repeated events. Perhaps a
combination would be acceptable? Set the first run of each cpu spaced based on
CPU number then use a spinlock to synchronize it? That way we minimize the
chance of a big number of CPUs stuck on the same lock but at same time
guarantee we won't have duplicated events.
--
Aristeu
next prev parent reply other threads:[~2023-04-28 15:56 UTC|newest]
Thread overview: 10+ messages / expand[flat|nested] mbox.gz Atom feed top
2023-01-16 20:01 [RFC PATCH] mce: prevent concurrent polling of MCE events Aristeu Rozanski
2023-01-17 17:42 ` Luck, Tony
2023-01-17 18:44 ` Aristeu Rozanski
2023-01-17 18:54 ` Luck, Tony
2023-01-17 18:58 ` Aristeu Rozanski
2023-04-28 15:51 ` Aristeu Rozanski [this message]
2023-04-28 16:43 ` Luck, Tony
2023-05-11 23:38 ` Tony Luck
2023-05-12 17:32 ` Aristeu Rozanski
2023-05-12 19:19 ` Luck, Tony
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=20230428155102.GE2449174@cathedrallabs.org \
--to=aris@ruivo.org \
--cc=aris@redhat.com \
--cc=bp@alien8.de \
--cc=linux-edac@vger.kernel.org \
--cc=tony.luck@intel.com \
/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