Re: [PATCH v2 1/2] x86/cpufeature: Add facility to match microcode revisions

From: Thomas Gleixner
Date: Wed Oct 17 2018 - 06:00:23 EST


On Wed, 10 Oct 2018, Andi Kleen wrote:
> +/*
> + * Match specific microcodes
> + *
> + * vendor/family/model/stepping must be all set.
> + * min_ucode is optional and can be 0.

Stale comment

> + */
> +
> +struct x86_ucode_id {
> + u8 vendor;
> + u8 family;
> + u16 model;
> + u16 stepping;

Still using u16 for no reason. And please make the members aligned in a
tabular fashion.

> + u32 min_ucode;
> +};
> +
> +const struct x86_ucode_id *x86_match_ucode(const struct x86_ucode_id *match)

What's the point of returning the struct pointer? Shouldn't it be enough to
make it return bool? Also the function name really should reflect that this
checks whether the minimal required microcode revision is active.

> +{
> + struct cpuinfo_x86 *c = &boot_cpu_data;
> + const struct x86_ucode_id *m;
> +
> + for (m = match; m->vendor | m->family | m->model; m++) {

VENDOR_INTEL = 0, so this check is obscure to begin with. Either you chose
a explicit condition to put at the end of the table, e.g. vendor = U8_MAX
or you hand in the array size to the function.

> + if (c->x86_vendor != m->vendor)
> + continue;
> + if (c->x86 != m->family)
> + continue;
> + if (c->x86_model != m->model)
> + continue;
> + if (c->x86_stepping != m->stepping)
> + continue;
> + if (c->microcode < m->min_ucode)
> + continue;

Why would you continue here? If vendor, family, model, stepping match, then
there is no point to continue, really. Assuming that the return type is bool:

return c->microcode >= m->min_ucode;

is sufficient.

Thanks,

tglx