]> www.infradead.org Git - users/willy/xarray.git/commit
tools/x86/kcpuid: Protect against faulty "max subleaf" values
authorAhmed S. Darwish <darwi@linutronix.de>
Thu, 18 Jul 2024 13:47:44 +0000 (15:47 +0200)
committerThomas Gleixner <tglx@linutronix.de>
Fri, 2 Aug 2024 07:17:19 +0000 (09:17 +0200)
commitcf96ab1a966b87b09fdd9e8cc8357d2d00776a3a
treecff664731cd84014319472be4334719542e1ea59
parent5dd7ca42475bb15fd93d58d42e925512776f14a4
tools/x86/kcpuid: Protect against faulty "max subleaf" values

Protect against the kcpuid code parsing faulty max subleaf numbers
through a min() expression.  Thus, ensuring that max_subleaf will always
be ≤ MAX_SUBLEAF_NUM.

Use "u32" for the subleaf numbers since kcpuid is compiled with -Wextra,
which includes signed/unsigned comparisons warnings.

Signed-off-by: Ahmed S. Darwish <darwi@linutronix.de>
Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
Link: https://lore.kernel.org/all/20240718134755.378115-5-darwi@linutronix.de
tools/arch/x86/kcpuid/kcpuid.c