179894
commit c489c35054c39d7f2437ca61b369e3ede448f022
179894
Author: Szabolcs Nagy <szabolcs.nagy@arm.com>
179894
Date:   Wed Nov 30 11:44:25 2016 +0000
179894
179894
    elf: Fix comments and logic in _dl_add_to_slotinfo
179894
    
179894
    Since
179894
    
179894
      commit a509eb117fac1d764b15eba64993f4bdb63d7f3c
179894
      Avoid late dlopen failure due to scope, TLS slotinfo updates [BZ #25112]
179894
    
179894
    the generation counter update is not needed in the failure path.
179894
    That commit ensures allocation in _dl_add_to_slotinfo happens before
179894
    the demarcation point in dlopen (it is called twice, first time is for
179894
    allocation only where dlopen can still be reverted on failure, then
179894
    second time actual dtv updates are done which then cannot fail).
179894
    
179894
    Reviewed-by: Adhemerval Zanella  <adhemerval.zanella@linaro.org>
179894
179894
diff --git a/elf/dl-tls.c b/elf/dl-tls.c
179894
index 0b96b1dceed99d58..9375650a3ab5247d 100644
179894
--- a/elf/dl-tls.c
179894
+++ b/elf/dl-tls.c
179894
@@ -998,16 +998,7 @@ _dl_add_to_slotinfo (struct link_map *l, bool do_add)
179894
 		+ TLS_SLOTINFO_SURPLUS * sizeof (struct dtv_slotinfo));
179894
       if (listp == NULL)
179894
 	{
179894
-	  /* We ran out of memory.  We will simply fail this
179894
-	     call but don't undo anything we did so far.  The
179894
-	     application will crash or be terminated anyway very
179894
-	     soon.  */
179894
-
179894
-	  /* We have to do this since some entries in the dtv
179894
-	     slotinfo array might already point to this
179894
-	     generation.  */
179894
-	  ++GL(dl_tls_generation);
179894
-
179894
+	  /* We ran out of memory while resizing the dtv slotinfo list.  */
179894
 	  _dl_signal_error (ENOMEM, "dlopen", NULL, N_("\
179894
 cannot create TLS data structures"));
179894
 	}