Re: [PATCH v2 3/5] x86/mce: Use mca_msr_reg() in prepare_msrs()

From: Koralahalli Channabasappa, Smita
Date: Mon Nov 01 2021 - 14:51:52 EST


On 10/28/21 3:53 AM, Borislav Petkov wrote:

On Wed, Oct 27, 2021 at 03:19:51PM -0500, Koralahalli Channabasappa, Smita wrote:
Multiple initialization here I mean: Initializing the MCA registers twice.
Prior to mca_msr_reg() replacement, the MCA registers were initialized
separately for SMCA and legacy processors. However, this is not required
after replacing with mca_msr_reg() as it does the job of returning the
proper MSR addresses.
You mean, there was a simple if-else statement

if (SMCA)

prepare MSRs

else

prepare MSRs for !SMCA

which did the init for each type of system in one go.

But frankly, your change doesn't make it more readable but less - you
have a goto label now and another SMCA feature check at the end. Vs a
simple if-else which is trivial to read.

So I don't see any advantage in this change.

Okay. I will rework and remove this patch in my next series.

Thanks,