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
30 lines
1.0 KiB
Diff
30 lines
1.0 KiB
Diff
commit 70509f9b4807295b2b4b43bffe110580fc0381ef
|
|
Author: Noah Goldstein <goldstein.w.n@gmail.com>
|
|
Date: Sat Feb 12 00:45:00 2022 -0600
|
|
|
|
x86: Set .text section in memset-vec-unaligned-erms
|
|
|
|
commit 3d9f171bfb5325bd5f427e9fc386453358c6e840
|
|
Author: H.J. Lu <hjl.tools@gmail.com>
|
|
Date: Mon Feb 7 05:55:15 2022 -0800
|
|
|
|
x86-64: Optimize bzero
|
|
|
|
Remove setting the .text section for the code. This commit
|
|
adds that back.
|
|
|
|
(cherry picked from commit 7912236f4a597deb092650ca79f33504ddb4af28)
|
|
|
|
diff --git a/sysdeps/x86_64/multiarch/memset-vec-unaligned-erms.S b/sysdeps/x86_64/multiarch/memset-vec-unaligned-erms.S
|
|
index 39a096a594ccb5b6..d9c577fb5ff9700f 100644
|
|
--- a/sysdeps/x86_64/multiarch/memset-vec-unaligned-erms.S
|
|
+++ b/sysdeps/x86_64/multiarch/memset-vec-unaligned-erms.S
|
|
@@ -114,6 +114,7 @@
|
|
# error SECTION is not defined!
|
|
#endif
|
|
|
|
+ .section SECTION(.text), "ax", @progbits
|
|
#if IS_IN (libc)
|
|
# if defined SHARED
|
|
ENTRY_CHK (WMEMSET_CHK_SYMBOL (__wmemset_chk, unaligned))
|