commit: 70317ac112a76f65cd6ecef63d2a9c153e287c65 Author: Arisu Tachibana <alicef <AT> gentoo <DOT> org> AuthorDate: Mon Jul 14 16:21:00 2025 +0000 Commit: Arisu Tachibana <alicef <AT> gentoo <DOT> org> CommitDate: Mon Jul 14 16:21:00 2025 +0000 URL: https://gitweb.gentoo.org/proj/linux-patches.git/commit/?id=70317ac1
Linux patch 6.1.145 Signed-off-by: Arisu Tachibana <alicef <AT> gentoo.org> 0000_README | 4 ++++ 1144_linux-6.1.145.patch | 43 +++++++++++++++++++++++++++++++++++++++++++ 2 files changed, 47 insertions(+) diff --git a/0000_README b/0000_README index 0c3f9638..ed3a53f3 100644 --- a/0000_README +++ b/0000_README @@ -619,6 +619,10 @@ Patch: 1143_linux-6.1.144.patch From: https://www.kernel.org Desc: Linux 6.1.144 +Patch: 1144_linux-6.1.145.patch +From: https://www.kernel.org +Desc: Linux 6.1.145 + Patch: 1500_XATTR_USER_PREFIX.patch From: https://bugs.gentoo.org/show_bug.cgi?id=470644 Desc: Support for namespace user.pax.* on tmpfs. diff --git a/1144_linux-6.1.145.patch b/1144_linux-6.1.145.patch new file mode 100644 index 00000000..5788101a --- /dev/null +++ b/1144_linux-6.1.145.patch @@ -0,0 +1,43 @@ +diff --git a/Makefile b/Makefile +index 4efcf0614caf4a..ebcf5587ebf955 100644 +--- a/Makefile ++++ b/Makefile +@@ -1,7 +1,7 @@ + # SPDX-License-Identifier: GPL-2.0 + VERSION = 6 + PATCHLEVEL = 1 +-SUBLEVEL = 144 ++SUBLEVEL = 145 + EXTRAVERSION = + NAME = Curry Ramen + +diff --git a/arch/x86/kernel/cpu/amd.c b/arch/x86/kernel/cpu/amd.c +index 3e3679709e9032..4785d41558d61b 100644 +--- a/arch/x86/kernel/cpu/amd.c ++++ b/arch/x86/kernel/cpu/amd.c +@@ -561,6 +561,7 @@ static bool amd_check_tsa_microcode(void) + + p.ext_fam = c->x86 - 0xf; + p.model = c->x86_model; ++ p.ext_model = c->x86_model >> 4; + p.stepping = c->x86_stepping; + + if (c->x86 == 0x19) { +@@ -675,6 +676,8 @@ static void bsp_init_amd(struct cpuinfo_x86 *c) + } + + resctrl_cpu_detect(c); ++ ++ tsa_init(c); + } + + static void early_detect_mem_encrypt(struct cpuinfo_x86 *c) +@@ -719,8 +722,6 @@ static void early_detect_mem_encrypt(struct cpuinfo_x86 *c) + goto clear_sev; + + +- tsa_init(c); +- + return; + + clear_all:
