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: [PATCH][malloc] Improve malloc initialization sequence


On 09/29/2017 06:48 PM, Wilco Dijkstra wrote:
       thread attempting to use the arena in parallel waits on us till we
       finish.  */
    __libc_lock_lock (main_arena.mutex);
-  malloc_consolidate (&main_arena);
+  malloc_init_state (&main_arena);

The locking is unnecessary. You should remove it and call malloc_init_state before the tunables preprocessor conditional.

I believe this fixes bug 22159, so please reference this bug (both in the commit message and the ChangeLog).

Thanks,
Florian


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