forked from pool/glibc
Andreas Schwab
a41899225a
- math-c++-compat.patch: Add more C++ compatibility (BZ #22296) - malloc-tcache-leak.patch: Fix tcache leak after thread destruction (BZ #22111) - falkor-memcpy-memmove.patch: Optimized implementation of memcpy/memmove for Qualcomm Falkor - aarch64-cpu-features.patch: Fix glibc.tune.cpu tunable handling - nss-files-large-buffers.patch: Avoid large buffers with many host addresses (BZ #22078) - sysconf-uio-maxiov.patch: Fix missing definition of UIO_MAXIOV (BZ #22321) - glob-tilde-overflow.patch: Fix buffer overflows with GLOB_TILDE (CVE-2017-15670, CVE-2017-15671, CVE-2017-15804, bsc#1064569. bsc#1064580, bsc#1064583, BZ #22320, BZ #22325, BZ #22332) - dl-runtime-resolve-xsave.patch: Use fxsave/xsave/xsavec in _dl_runtime_resolve (BZ #21265) OBS-URL: https://build.opensuse.org/request/show/535960 OBS-URL: https://build.opensuse.org/package/show/Base:System/glibc?expand=0&rev=483
19 lines
732 B
Diff
19 lines
732 B
Diff
2017-10-10 Steve Ellcey <sellcey@cavium.com>
|
|
|
|
* sysdeps/unix/sysv/linux/aarch64/cpu-features.c (get_midr_from_mcpu):
|
|
Use strcmp instead of tunable_is_name.
|
|
|
|
Index: glibc-2.26/sysdeps/unix/sysv/linux/aarch64/cpu-features.c
|
|
===================================================================
|
|
--- glibc-2.26.orig/sysdeps/unix/sysv/linux/aarch64/cpu-features.c
|
|
+++ glibc-2.26/sysdeps/unix/sysv/linux/aarch64/cpu-features.c
|
|
@@ -37,7 +37,7 @@ static uint64_t
|
|
get_midr_from_mcpu (const char *mcpu)
|
|
{
|
|
for (int i = 0; i < sizeof (cpu_list) / sizeof (struct cpu_list); i++)
|
|
- if (tunable_is_name (mcpu, cpu_list[i].name) == 0)
|
|
+ if (strcmp (mcpu, cpu_list[i].name) == 0)
|
|
return cpu_list[i].midr;
|
|
|
|
return UINT64_MAX;
|