Skip to content

Commit 876f0d4

Browse files
andyhhpbp3tk0v
authored andcommitted
x86/microcode: Fix Entrysign revision check for Zen1/Naples
... to match AMD's statement here: https://www.amd.com/en/resources/product-security/bulletin/amd-sb-7033.html Fixes: 50cef76 ("x86/microcode/AMD: Load only SHA256-checksummed patches") Signed-off-by: Andrew Cooper <[email protected]> Signed-off-by: Borislav Petkov (AMD) <[email protected]> Cc: <[email protected]> Link: https://patch.msgid.link/[email protected]
1 parent 19de711 commit 876f0d4

File tree

1 file changed

+1
-1
lines changed
  • arch/x86/kernel/cpu/microcode

1 file changed

+1
-1
lines changed

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -194,7 +194,7 @@ static bool need_sha_check(u32 cur_rev)
194194
}
195195

196196
switch (cur_rev >> 8) {
197-
case 0x80012: return cur_rev <= 0x800126f; break;
197+
case 0x80012: return cur_rev <= 0x8001277; break;
198198
case 0x80082: return cur_rev <= 0x800820f; break;
199199
case 0x83010: return cur_rev <= 0x830107c; break;
200200
case 0x86001: return cur_rev <= 0x860010e; break;

0 commit comments

Comments
 (0)