Re: [PATCH -v2] x86: MCE: Re-implement MCE log ring buffer asper-CPU ring buffer

From: Peter Zijlstra
Date: Tue Apr 28 2009 - 06:23:16 EST


On Tue, 2009-04-28 at 17:27 +0800, Huang Ying wrote:
> Re-implement MCE log ring buffer as per-CPU ring buffer for better
> scalability. Basic design is as follow:
>
> - One ring buffer for each CPU
>
> + MCEs are added to corresponding local per-CPU buffer, instead of
> one big global buffer. Contention/unfairness between CPUs is
> eleminated.
>
> + MCE records are read out and removed from per-CPU buffers by mutex
> protected global reader function. Because there are no many
> readers in system to contend in most cases.
>
> - Per-CPU ring buffer data structure
>
> + An array is used to hold MCE records. integer "head" indicates
> next writing position and integer "tail" indicates next reading
> position.
>
> + To distinguish buffer empty and full, head and tail wrap to 0 at
> MCE_LOG_LIMIT instead of MCE_LOG_LEN. Then the real next writing
> position is head % MCE_LOG_LEN, and real next reading position is
> tail % MCE_LOG_LEN. If buffer is empty, head == tail, if buffer is
> full, head % MCE_LOG_LEN == tail % MCE_LOG_LEN and head != tail.
>
> - Lock-less for writer side
>
> + MCE log writer may come from NMI, so the writer side must be
> lock-less. For per-CPU buffer of one CPU, writers may come from
> process, IRQ or NMI context, so "head" is increased with
> cmpxchg_local() to allocate buffer space.
>
> + Reader side is protected with a mutex to guarantee only one reader
> is active in the whole system.
>
>
> Performance test show that the throughput of per-CPU mcelog buffer can
> reach 430k records/s compared with 5.3k records/s for original
> implementation on a 2-core 2.1GHz Core2 machine.

We're talking about Machine Check Exceptions here, right? Is there a
valid scenario where you care about performance? I always thought that
an MCE meant something seriously went wrong, log the event and reboot
the machine -- possibly start ordering replacement parts.

But now you're saying we want to be able to record more than 5.3k events
a second on this? Sounds daft to me.

Also, it sounds like something that might fit the ftrace ringbuffer
thingy.
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/