Relevant commits already backported; skipped from this sync: - elf: handle addition overflow in _dl_find_object_update_1 [BZ #32245] (glibc-RHEL-119398.patch) - Avoid uninitialized result in sem_open when file does not exist (glibc-RHEL-119392-1.patch) - Rename new tst-sem17 test to tst-sem18 (glibc-RHEL-119392-2.patch) - nss: Group merge does not react to ERANGE during merge (bug 33361) (glibc-RHEL-114265.patch) - AArch64: Fix instability in AdvSIMD tan (glibc-RHEL-118273-44.patch) RPM-Changelog: - Sync with upstream branch release/2.39/master (RHEL-126766) - Upstream commit: ce65d944e38a20cb70af2a48a4b8aa5d8fabe1cc - posix: Reset wordexp_t fields with WRDE_REUSE (CVE-2025-15281 / BZ 33814) - resolv: Fix NSS DNS backend for getnetbyaddr (CVE-2026-0915) - memalign: reinstate alignment overflow check (CVE-2026-0861) - support: Exit on consistency check failure in resolv_response_add_name - support: Fix FILE * leak in check_for_unshare_hints in test-container - sprof: fix -Wformat warnings on 32-bit hosts - sprof: check pread size and offset for overflow - getaddrinfo.c: Avoid uninitialized pointer access [BZ #32465] - nptl: Optimize trylock for high cache contention workloads (BZ #33704) - ppc64le: Power 10 rawmemchr clobbers v20 (bug #33091) - ppc64le: Restore optimized strncmp for power10 - ppc64le: Restore optimized strcmp for power10 - AArch64: Optimise SVE scalar callbacks - aarch64: fix includes in SME tests - aarch64: fix cfi directives around __libc_arm_za_disable - aarch64: tests for SME - aarch64: clear ZA state of SME before clone and clone3 syscalls - aarch64: define macro for calling __libc_arm_za_disable - aarch64: update tests for SME - aarch64: Disable ZA state of SME in setjmp and sigsetjmp - linux: Also check pkey_get for ENOSYS on tst-pkey (BZ 31996) - aarch64: Do not link conform tests with -Wl,-z,force-bti (bug 33601) - x86: fix wmemset ifunc stray '!' (bug 33542) - x86: Detect Intel Nova Lake Processor - x86: Detect Intel Wildcat Lake Processor Resolves: RHEL-126766 Resolves: RHEL-45143 Resolves: RHEL-45145 Resolves: RHEL-142786 Resolves: RHEL-141852 Resolves: RHEL-141733
51 lines
1.4 KiB
Diff
51 lines
1.4 KiB
Diff
commit 58cbbd43fe82910cf8ae9008351b0b0665104500
|
|
Author: Sunil K Pandey <sunil.k.pandey@intel.com>
|
|
Date: Wed Sep 24 09:38:17 2025 -0700
|
|
|
|
x86: Detect Intel Nova Lake Processor
|
|
|
|
Detect Intel Nova Lake Processor and tune it similar to Intel Panther
|
|
Lake. https://cdrdv2.intel.com/v1/dl/getContent/671368 Section 1.2.
|
|
|
|
Reviewed-by: H.J. Lu <hjl.tools@gmail.com>
|
|
(cherry picked from commit a114e29ddd530962d2b44aa9d89f1f6075abe7fa)
|
|
|
|
diff --git a/sysdeps/x86/cpu-features.c b/sysdeps/x86/cpu-features.c
|
|
index c00502328fbcb839..f87d6d354924f3d9 100644
|
|
--- a/sysdeps/x86/cpu-features.c
|
|
+++ b/sysdeps/x86/cpu-features.c
|
|
@@ -547,6 +547,7 @@ enum intel_microarch
|
|
INTEL_BIGCORE_GRANITERAPIDS,
|
|
INTEL_BIGCORE_DIAMONDRAPIDS,
|
|
INTEL_BIGCORE_WILDCATLAKE,
|
|
+ INTEL_BIGCORE_NOVALAKE,
|
|
|
|
/* Mixed (bigcore + atom SOC). */
|
|
INTEL_MIXED_LAKEFIELD,
|
|
@@ -824,6 +825,17 @@ disable_tsx:
|
|
break;
|
|
}
|
|
}
|
|
+ else if (family == 18)
|
|
+ switch (model)
|
|
+ {
|
|
+ case 0x01:
|
|
+ case 0x03:
|
|
+ microarch = INTEL_BIGCORE_NOVALAKE;
|
|
+ break;
|
|
+
|
|
+ default:
|
|
+ break;
|
|
+ }
|
|
else if (family == 19)
|
|
switch (model)
|
|
{
|
|
@@ -941,6 +953,7 @@ disable_tsx:
|
|
case INTEL_BIGCORE_ARROWLAKE:
|
|
case INTEL_BIGCORE_PANTHERLAKE:
|
|
case INTEL_BIGCORE_WILDCATLAKE:
|
|
+ case INTEL_BIGCORE_NOVALAKE:
|
|
case INTEL_BIGCORE_SAPPHIRERAPIDS:
|
|
case INTEL_BIGCORE_EMERALDRAPIDS:
|
|
case INTEL_BIGCORE_GRANITERAPIDS:
|