]> git.ipfire.org Git - thirdparty/glibc.git/commitdiff
malloc: Use __get_nprocs on arena_get2 (BZ 30945)
authorAdhemerval Zanella <adhemerval.zanella@linaro.org>
Wed, 11 Oct 2023 16:43:56 +0000 (13:43 -0300)
committerAdhemerval Zanella <adhemerval.zanella@linaro.org>
Wed, 22 Nov 2023 12:39:29 +0000 (09:39 -0300)
This restore the 2.33 semantic for arena_get2.  It was changed by
11a02b035b46 to avoid arena_get2 call malloc (back when __get_nproc
was refactored to use an scratch_buffer - 903bc7dcc2acafc).  The
__get_nproc was refactored over then and now it also avoid to call
malloc.

The 11a02b035b46 did not take in consideration any performance
implication, which should have been discussed properly.  The
__get_nprocs_sched is still used as a fallback mechanism if procfs
and sysfs is not acessible.

Checked on x86_64-linux-gnu.
Reviewed-by: DJ Delorie <dj@redhat.com>
include/sys/sysinfo.h
malloc/arena.c
misc/getsysstats.c
sysdeps/mach/getsysstats.c
sysdeps/unix/sysv/linux/getsysstats.c

index c490561581733038fa4ac0377143125bb133a8be..65742b10366590f053a97b77310316012d54d588 100644 (file)
@@ -14,10 +14,6 @@ libc_hidden_proto (__get_nprocs_conf)
 extern int __get_nprocs (void);
 libc_hidden_proto (__get_nprocs)
 
-/* Return the number of available processors which the process can
-   be scheduled.  */
-extern int __get_nprocs_sched (void) attribute_hidden;
-
 /* Return number of physical pages of memory in the system.  */
 extern long int __get_phys_pages (void);
 libc_hidden_proto (__get_phys_pages)
index d1e214ac2ec2a3144f6400b5557a9fbecf278a73..a1a75e5a2b80e46371fb984dc38289048564dfc6 100644 (file)
@@ -824,7 +824,7 @@ arena_get2 (size_t size, mstate avoid_arena)
             narenas_limit = mp_.arena_max;
           else if (narenas > mp_.arena_test)
             {
-              int n = __get_nprocs_sched ();
+              int n = __get_nprocs ();
 
               if (n >= 1)
                 narenas_limit = NARENAS_FROM_NCORES (n);
index 5f36adc0e8f12588ce07b42af8301a0ec518c4e9..23cc11207480732a6507891557e219f60769b66f 100644 (file)
@@ -44,12 +44,6 @@ weak_alias (__get_nprocs, get_nprocs)
 link_warning (get_nprocs, "warning: get_nprocs will always return 1")
 
 
-int
-__get_nprocs_sched (void)
-{
-  return 1;
-}
-
 long int
 __get_phys_pages (void)
 {
index 5184e5eee1cd430451aadfc8d0899bfdcb46a8f0..d3834f3b6955885708e33d04e4dd69d2b9f768fe 100644 (file)
@@ -62,12 +62,6 @@ __get_nprocs (void)
 libc_hidden_def (__get_nprocs)
 weak_alias (__get_nprocs, get_nprocs)
 
-int
-__get_nprocs_sched (void)
-{
-  return __get_nprocs ();
-}
-
 /* Return the number of physical pages on the system. */
 long int
 __get_phys_pages (void)
index b0b6c154acab6ff635399835459401387700778c..1ea7f1f01fd18fa25ff72697343f654286dec61a 100644 (file)
@@ -29,7 +29,7 @@
 #include <sys/sysinfo.h>
 #include <sysdep.h>
 
-int
+static int
 __get_nprocs_sched (void)
 {
   enum