lists.openwall.net   lists  /  announce  owl-users  owl-dev  john-users  john-dev  passwdqc-users  yescrypt  popa3d-users  /  oss-security  kernel-hardening  musl  sabotage  tlsify  passwords  /  crypt-dev  xvendor  /  Bugtraq  Full-Disclosure  linux-kernel  linux-netdev  linux-ext4  linux-hardening  linux-cve-announce  PHC 
Open Source and information security mailing list archives
 
Hash Suite: Windows password security audit tool. GUI, reports in PDF.
[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Date: Thu, 21 Mar 2024 20:24:59 +0100
From: Ingo Molnar <mingo@...nel.org>
To: Borislav Petkov <bp@...en8.de>
Cc: X86 ML <x86@...nel.org>, LKML <linux-kernel@...r.kernel.org>,
	John Allen <john.allen@....com>
Subject: Re: [PATCH 1/2] x86/microcode/AMD: Add a patch revision number union


* Borislav Petkov <bp@...en8.de> wrote:

> From: "Borislav Petkov (AMD)" <bp@...en8.de>
> 
> Add a structure which will be used to split the Zen generation of
> microcode revision numbers into its corresponding elements. This will be
> used to match microcode patches a lot easier and obviate the need for
> a equivalence table.
> 
> Signed-off-by: Borislav Petkov (AMD) <bp@...en8.de>
> Cc: John Allen <john.allen@....com>
> ---
>  arch/x86/include/asm/microcode.h | 12 ++++++++++++
>  1 file changed, 12 insertions(+)
> 
> diff --git a/arch/x86/include/asm/microcode.h b/arch/x86/include/asm/microcode.h
> index 695e569159c1..c1de0a6aefbc 100644
> --- a/arch/x86/include/asm/microcode.h
> +++ b/arch/x86/include/asm/microcode.h
> @@ -47,6 +47,18 @@ struct microcode_intel {
>  	unsigned int			bits[];
>  };
>  
> +union zen_patch_rev {
> +	struct {
> +		__u32 rev	: 8,
> +		      stepping	: 4,
> +		      model	: 4,
> +		      __resv    : 4,
> +		      ext_model	: 4,
> +		      ext_fam	: 8;
> +	};
> +	__u32 ucode_rev;
> +};

s/__resv/__reserved please?

Had to look twice (ok, I'm lying, had to look 3 times) whether it stood for 
'reserved' or some source of 'revision' / 'reservation' thing.

Thanks,

	Ingo

Powered by blists - more mailing lists

Powered by Openwall GNU/*/Linux Powered by OpenVZ