forked from pool/glibc
Andreas Schwab
2d58c46aab
- dl-show-auxv.patch: Fix output of LD_SHOW_AUXV=1 - s390-vx-vxe-hwcap.patch: S390: Mark vx and vxe as important hwcap - taisho-era-string.patch: ja_JP: Change the offset for Taisho gan-nen from 2 to 1 (BZ #24162) - malloc-tracing-hooks.patch: malloc: Set and reset all hooks for tracing (BZ #16573) - pldd-inf-loop.patch: elf: Fix pldd (BZ#18035) - malloc-large-bin-corruption-check.patch: malloc: Check for large bin list corruption when inserting unsorted chunk (BZ #24216) - wfile-sync-crash.patch: Fix crash in _IO_wfile_sync (BZ #20568) OBS-URL: https://build.opensuse.org/request/show/703415 OBS-URL: https://build.opensuse.org/package/show/Base:System/glibc?expand=0&rev=527
20 lines
652 B
Diff
20 lines
652 B
Diff
2019-03-21 Stefan Liebler <stli@linux.ibm.com>
|
|
|
|
* sysdeps/s390/dl-procinfo.h (HWCAP_IMPORTANT):
|
|
Add HWCAP_S390_VX and HWCAP_S390_VXE.
|
|
|
|
Index: glibc-2.29/sysdeps/s390/dl-procinfo.h
|
|
===================================================================
|
|
--- glibc-2.29.orig/sysdeps/s390/dl-procinfo.h
|
|
+++ glibc-2.29/sysdeps/s390/dl-procinfo.h
|
|
@@ -57,7 +57,8 @@ enum
|
|
};
|
|
|
|
#define HWCAP_IMPORTANT (HWCAP_S390_ZARCH | HWCAP_S390_LDISP \
|
|
- | HWCAP_S390_EIMM | HWCAP_S390_DFP)
|
|
+ | HWCAP_S390_EIMM | HWCAP_S390_DFP \
|
|
+ | HWCAP_S390_VX | HWCAP_S390_VXE)
|
|
|
|
/* We cannot provide a general printing function. */
|
|
#define _dl_procinfo(type, word) -1
|