Tunables for 2.23?
Andi Kleen
andi@firstfloor.org
Fri Jan 8 02:20:00 GMT 2016
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.
More information about the Libc-alpha
mailing list