Re: [PATCH v9 2/5] x86/cpuid: Add generic table for cpuid dependencies

From: Ingo Molnar
Date: Thu Oct 12 2017 - 04:16:42 EST



* Ingo Molnar <mingo@xxxxxxxxxx> wrote:

> > + bool changed;
> > + __u32 disable[NCAPINTS + NBUGINTS];
> > + unsigned long *disable_mask = (unsigned long *)disable;
> > + const struct cpuid_dep *d;
>
> The constant forced types are really ugly and permeate the whole code. Please
> introduce some suitably named helpers in the x86 bitops file that work on local
> variables:
>
> var &= ~(1<<bit);
> var |= 1<<bit;

So instead of adding helpers the 1<< ops can be written out explicitly - they are
easy to read after all. Can also be:

var &= ~BIT(bit);
var |= BIT(bit);

Thanks,

Ingo