diff options
| author | Linus Torvalds <torvalds@linux-foundation.org> | 2025-11-08 09:01:11 -0800 |
|---|---|---|
| committer | Linus Torvalds <torvalds@linux-foundation.org> | 2025-11-08 09:01:11 -0800 |
| commit | 0d7bee10beeb59b1133bf5a4749b17a4ef3bbb01 (patch) | |
| tree | 2e18fabc6065cf3b304d652caee38e6acf7e8b1d /arch/x86/kernel/cpu/amd.c | |
| parent | b5c0946029200d93f1239d3f310efa3f075abf79 (diff) | |
| parent | d23550efc6800841b4d1639784afaebdea946ae0 (diff) | |
| download | linux-0d7bee10beeb59b1133bf5a4749b17a4ef3bbb01.tar.gz linux-0d7bee10beeb59b1133bf5a4749b17a4ef3bbb01.tar.bz2 linux-0d7bee10beeb59b1133bf5a4749b17a4ef3bbb01.zip | |
Merge tag 'x86-urgent-2025-11-08' of git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip
Pull x86 fixes from Ingo Molnar:
- Fix AMD PCI root device caching regression that triggers
on certain firmware variants
- Fix the zen5_rdseed_microcode[] array to be NULL-terminated
- Add more AMD models to microcode signature checking
* tag 'x86-urgent-2025-11-08' of git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip:
x86/microcode/AMD: Add more known models to entry sign checking
x86/CPU/AMD: Add missing terminator for zen5_rdseed_microcode
x86/amd_node: Fix AMD root device caching
Diffstat (limited to 'arch/x86/kernel/cpu/amd.c')
| -rw-r--r-- | arch/x86/kernel/cpu/amd.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/arch/x86/kernel/cpu/amd.c b/arch/x86/kernel/cpu/amd.c index 8e36964a7721..2ba9f2d42d8c 100644 --- a/arch/x86/kernel/cpu/amd.c +++ b/arch/x86/kernel/cpu/amd.c @@ -1038,6 +1038,7 @@ static void init_amd_zen4(struct cpuinfo_x86 *c) static const struct x86_cpu_id zen5_rdseed_microcode[] = { ZEN_MODEL_STEP_UCODE(0x1a, 0x02, 0x1, 0x0b00215a), ZEN_MODEL_STEP_UCODE(0x1a, 0x11, 0x0, 0x0b101054), + {}, }; static void init_amd_zen5(struct cpuinfo_x86 *c) |
