Fix glibc.tune.cpu tunable handling
authorSteve Ellcey <sellcey@caviumnetworks.com>
Fri, 8 Sep 2017 17:59:53 +0000 (10:59 -0700)
committerSteve Ellcey <sellcey@caviumnetworks.com>
Fri, 8 Sep 2017 17:59:53 +0000 (10:59 -0700)
* sysdeps/unix/sysv/linux/aarch64/cpu-features.c (get_midr_from_mcpu):
Use strcmp instead of tunable_is_name.

ChangeLog
sysdeps/unix/sysv/linux/aarch64/cpu-features.c

index 9f085b7..8ee6a05 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2017-09-08  Steve Ellcey  <sellcey@cavium.com>
+
+       * sysdeps/unix/sysv/linux/aarch64/cpu-features.c (get_midr_from_mcpu):
+       Use strcmp instead of tunable_is_name.
+
 2017-09-08  Joseph Myers  <joseph@codesourcery.com>
 
        * sysdeps/unix/sysv/linux/bits/fcntl-linux.h [__USE_GNU]
index 18f5e60..0c7e13f 100644 (file)
@@ -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;