This is the mail archive of the libc-alpha@sourceware.org mailing list for the glibc project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

Re: Tunables for 2.23?


I finally tracked down now why the tunables patchkit disabled elision
on x86. The register function always calls the set function with
an empty string, and atoi returns 0 for that.

That results in all the elision configuration variables being
zeroed.

With this patch -- avoiding calling set_func for empty strings --
the tunables work as expected for me on x86.

-Andi


diff --git a/tunables/tunables.c b/tunables/tunables.c
index 6e5aaa9..e8a5690 100644
--- a/tunables/tunables.c
+++ b/tunables/tunables.c
@@ -182,7 +182,7 @@ tunable_register (tunable_id_t id, tunable_setter_t set_func, char **envp)
   tunable_t *cur = &tunable_list[id];
 
   cur->set = set_func;
-  if (cur->val != NULL)
+  if (cur->val != NULL && *cur->val)
     {
       set_func (cur->val);
       cur->initialized = true;


-- 
ak@linux.intel.com -- Speaking for myself only.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]