329e925ee9
Upstream commit: 91c2e6c3db44297bf4cb3a2e3c40236c5b6a0b23 - dlfcn: Implement the RTLD_DI_PHDR request type for dlinfo - manual: Document the dlinfo function - x86: Fix fallback for wcsncmp_avx2 in strcmp-avx2.S [BZ #28896] - x86: Fix bug in strncmp-evex and strncmp-avx2 [BZ #28895] - x86: Set .text section in memset-vec-unaligned-erms - x86-64: Optimize bzero - x86: Remove SSSE3 instruction for broadcast in memset.S (SSE2 Only) - x86: Improve vec generation in memset-vec-unaligned-erms.S - x86-64: Fix strcmp-evex.S - x86-64: Fix strcmp-avx2.S - x86: Optimize strcmp-evex.S - x86: Optimize strcmp-avx2.S - manual: Clarify that abbreviations of long options are allowed - Add HWCAP2_AFP, HWCAP2_RPRES from Linux 5.17 to AArch64 bits/hwcap.h - aarch64: Add HWCAP2_ECV from Linux 5.16 - Add SOL_MPTCP, SOL_MCTP from Linux 5.16 to bits/socket.h - Update kernel version to 5.17 in tst-mman-consts.py - Update kernel version to 5.16 in tst-mman-consts.py - Update syscall lists for Linux 5.17 - Add ARPHRD_CAN, ARPHRD_MCTP to net/if_arp.h - Update kernel version to 5.15 in tst-mman-consts.py - Add PF_MCTP, AF_MCTP from Linux 5.15 to bits/socket.h
72 lines
2.2 KiB
Diff
72 lines
2.2 KiB
Diff
commit e123f08ad5ea4691bc37430ce536988c221332d6
|
|
Author: Noah Goldstein <goldstein.w.n@gmail.com>
|
|
Date: Thu Mar 24 15:50:33 2022 -0500
|
|
|
|
x86: Fix fallback for wcsncmp_avx2 in strcmp-avx2.S [BZ #28896]
|
|
|
|
Overflow case for __wcsncmp_avx2_rtm should be __wcscmp_avx2_rtm not
|
|
__wcscmp_avx2.
|
|
|
|
commit ddf0992cf57a93200e0c782e2a94d0733a5a0b87
|
|
Author: Noah Goldstein <goldstein.w.n@gmail.com>
|
|
Date: Sun Jan 9 16:02:21 2022 -0600
|
|
|
|
x86: Fix __wcsncmp_avx2 in strcmp-avx2.S [BZ# 28755]
|
|
|
|
Set the wrong fallback function for `__wcsncmp_avx2_rtm`. It was set
|
|
to fallback on to `__wcscmp_avx2` instead of `__wcscmp_avx2_rtm` which
|
|
can cause spurious aborts.
|
|
|
|
This change will need to be backported.
|
|
|
|
All string/memory tests pass.
|
|
Reviewed-by: H.J. Lu <hjl.tools@gmail.com>
|
|
|
|
(cherry picked from commit 9fef7039a7d04947bc89296ee0d187bc8d89b772)
|
|
|
|
diff --git a/sysdeps/x86/tst-strncmp-rtm.c b/sysdeps/x86/tst-strncmp-rtm.c
|
|
index aef9866cf2fbe774..ba6543be8ce13927 100644
|
|
--- a/sysdeps/x86/tst-strncmp-rtm.c
|
|
+++ b/sysdeps/x86/tst-strncmp-rtm.c
|
|
@@ -70,6 +70,16 @@ function_overflow (void)
|
|
return 1;
|
|
}
|
|
|
|
+__attribute__ ((noinline, noclone))
|
|
+static int
|
|
+function_overflow2 (void)
|
|
+{
|
|
+ if (STRNCMP (string1, string2, SIZE_MAX >> 4) == 0)
|
|
+ return 0;
|
|
+ else
|
|
+ return 1;
|
|
+}
|
|
+
|
|
static int
|
|
do_test (void)
|
|
{
|
|
@@ -77,5 +87,10 @@ do_test (void)
|
|
if (status != EXIT_SUCCESS)
|
|
return status;
|
|
status = do_test_1 (TEST_NAME, LOOP, prepare, function_overflow);
|
|
+ if (status != EXIT_SUCCESS)
|
|
+ return status;
|
|
+ status = do_test_1 (TEST_NAME, LOOP, prepare, function_overflow2);
|
|
+ if (status != EXIT_SUCCESS)
|
|
+ return status;
|
|
return status;
|
|
}
|
|
diff --git a/sysdeps/x86_64/multiarch/strcmp-avx2.S b/sysdeps/x86_64/multiarch/strcmp-avx2.S
|
|
index f9bdc5ccd03aa1f9..09a73942086f9c9f 100644
|
|
--- a/sysdeps/x86_64/multiarch/strcmp-avx2.S
|
|
+++ b/sysdeps/x86_64/multiarch/strcmp-avx2.S
|
|
@@ -122,7 +122,7 @@ ENTRY(STRCMP)
|
|
are cases where length is large enough that it can never be a
|
|
bound on valid memory so just use wcscmp. */
|
|
shrq $56, %rcx
|
|
- jnz __wcscmp_avx2
|
|
+ jnz OVERFLOW_STRCMP
|
|
|
|
leaq (, %rdx, 4), %rdx
|
|
# endif
|