On 09/01/2018 15:22, Konrad Rzeszutek Wilk wrote:
>> + have_spec_ctrl = cpu_has_spec_ctrl();
>> + if (have_spec_ctrl)
>> + pr_info("kvm: SPEC_CTRL available\n");
>> + else
>> + pr_info("kvm: SPEC_CTRL not available\n");
> Perhaps just
>
> pr_info("kvm: SPEC_CTRL %s available\n", have_spec_ctrl ? "" : "not");
> I don't expect any of these FIXMEs to be ever committed. :) Paolo

