1d4c55
commit 0884724a95b60452ad483dbe086d237d02ba624d
1d4c55
Author: Florian Weimer <fweimer@redhat.com>
1d4c55
Date:   Tue Dec 14 12:37:44 2021 +0100
1d4c55
1d4c55
    elf: Use new dependency sorting algorithm by default
1d4c55
    
1d4c55
    The default has to change eventually, and there are no known failures
1d4c55
    that require a delay.
1d4c55
    
1d4c55
    Reviewed-by: Adhemerval Zanella  <adhemerval.zanella@linaro.org>
1d4c55
1d4c55
diff --git a/elf/dl-tunables.list b/elf/dl-tunables.list
1d4c55
index 54ef2a921310b229..f11ca5b3e8b09b43 100644
1d4c55
--- a/elf/dl-tunables.list
1d4c55
+++ b/elf/dl-tunables.list
1d4c55
@@ -146,7 +146,7 @@ glibc {
1d4c55
       type: INT_32
1d4c55
       minval: 1
1d4c55
       maxval: 2
1d4c55
-      default: 1
1d4c55
+      default: 2
1d4c55
     }
1d4c55
   }
1d4c55
 }
1d4c55
diff --git a/elf/tst-rtld-list-tunables.exp b/elf/tst-rtld-list-tunables.exp
1d4c55
index 118afc271057afd4..478ee8ab091685eb 100644
1d4c55
--- a/elf/tst-rtld-list-tunables.exp
1d4c55
+++ b/elf/tst-rtld-list-tunables.exp
1d4c55
@@ -10,6 +10,6 @@ glibc.malloc.tcache_max: 0x0 (min: 0x0, max: 0x[f]+)
1d4c55
 glibc.malloc.tcache_unsorted_limit: 0x0 (min: 0x0, max: 0x[f]+)
1d4c55
 glibc.malloc.top_pad: 0x0 (min: 0x0, max: 0x[f]+)
1d4c55
 glibc.malloc.trim_threshold: 0x0 (min: 0x0, max: 0x[f]+)
1d4c55
-glibc.rtld.dynamic_sort: 1 (min: 1, max: 2)
1d4c55
+glibc.rtld.dynamic_sort: 2 (min: 1, max: 2)
1d4c55
 glibc.rtld.nns: 0x4 (min: 0x1, max: 0x10)
1d4c55
 glibc.rtld.optional_static_tls: 0x200 (min: 0x0, max: 0x[f]+)
1d4c55
diff --git a/manual/tunables.texi b/manual/tunables.texi
1d4c55
index c3f96cdc85208926..7b70e80391ee87f7 100644
1d4c55
--- a/manual/tunables.texi
1d4c55
+++ b/manual/tunables.texi
1d4c55
@@ -312,7 +312,7 @@ value of @samp{2}, a different algorithm is used, which implements a
1d4c55
 topological sort through depth-first search, and does not exhibit the
1d4c55
 performance issues of @samp{1}.
1d4c55
 
1d4c55
-The default value of this tunable is @samp{1}.
1d4c55
+The default value of this tunable is @samp{2}.
1d4c55
 @end deftp
1d4c55
 
1d4c55
 @node Elision Tunables