Skip to content

Commit 71b62ed

Browse files
committed
Merge tag 'x86-urgent-2026-01-02' of git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip
Pull x86 fix from Ingo Molnar: "Fix the AMD microcode Entrysign signature checking code to include more models" * tag 'x86-urgent-2026-01-02' of git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip: x86/microcode/AMD: Fix Entrysign revision check for Zen5/Strix Halo
2 parents b993744 + 150b1b9 commit 71b62ed

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

  • arch/x86/kernel/cpu/microcode

arch/x86/kernel/cpu/microcode/amd.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -258,7 +258,7 @@ static bool cpu_has_entrysign(void)
258258
if (fam == 0x1a) {
259259
if (model <= 0x2f ||
260260
(0x40 <= model && model <= 0x4f) ||
261-
(0x60 <= model && model <= 0x6f))
261+
(0x60 <= model && model <= 0x7f))
262262
return true;
263263
}
264264

0 commit comments

Comments
 (0)