[MODERATED] Re: [PATCH v6 5/9] TAAv6 5
Greg KH <[email protected]>
| Newsgroups | org.kernel.lore.historical-speck |
|---|---|
| Message-ID | <[email protected]> |
On Wed, Oct 09, 2019 at 04:26:56PM -0700, speck for Pawan Gupta wrote:
> +static ssize_t tsx_async_abort_show_state(char *buf)
> +{
> + if ((taa_mitigation == TAA_MITIGATION_TSX_DISABLE) ||
> + (taa_mitigation == TAA_MITIGATION_OFF))
> + return sprintf(buf, "%s\n", taa_strings[taa_mitigation]);
> +
> + if (boot_cpu_has(X86_FEATURE_HYPERVISOR)) {
> + return sprintf(buf, "%s; SMT Host state unknown\n",
> + taa_strings[taa_mitigation]);
Also a ':' here and not ';'
thanks,
greg k-h