Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

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

+1 -1
+1 -1
arch/x86/kernel/cpu/microcode/amd.c
··· 258 258 if (fam == 0x1a) { 259 259 if (model <= 0x2f || 260 260 (0x40 <= model && model <= 0x4f) || 261 - (0x60 <= model && model <= 0x6f)) 261 + (0x60 <= model && model <= 0x7f)) 262 262 return true; 263 263 } 264 264