Re: [PATCH] x86/mce: Save microcode revision in machine check records

2018-03-02 Thread Borislav Petkov
On Thu, Mar 01, 2018 at 11:40:31PM +, Luck, Tony wrote: > + c = &cpu_data(m->cpu); > > Bother. Breaks on systems with >255 cpus because "cpu" is __u8. No worries, I committed an even better version: --- From: Tony Luck Date: Thu, 1 Mar 2018 15:34:49 -0800 Subject: [PATCH] x86/MCE: Save

RE: [PATCH] x86/mce: Save microcode revision in machine check records

2018-03-01 Thread Luck, Tony
+ c = &cpu_data(m->cpu); Bother. Breaks on systems with >255 cpus because "cpu" is __u8. s/m->cpu/m->extcpu/ -Tony