This is the mail archive of the glibc-cvs@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]

GNU C Library master sources branch master updated. glibc-2.27.9000-388-g0937e20


This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "GNU C Library master sources".

The branch, master has been updated
       via  0937e209a7080d52cf7e5a6605532ea081a542ff (commit)
      from  5db7d705db472f47a349fe342a8d7150ec922786 (commit)

Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.

- Log -----------------------------------------------------------------
http://sourceware.org/git/gitweb.cgi?p=glibc.git;a=commitdiff;h=0937e209a7080d52cf7e5a6605532ea081a542ff

commit 0937e209a7080d52cf7e5a6605532ea081a542ff
Author: Alan Modra <amodra@gmail.com>
Date:   Sat Apr 21 12:41:29 2018 +0930

    R_PARISC_TLS_DTPOFF32 reloc handling
    
    	* sysdeps/hppa/dl-machine.h (elf_machine_rela): Add
    	R_PARISC_TLS_DTPOFF32 reloc addend.

diff --git a/ChangeLog b/ChangeLog
index fb2f6e9..909dd90 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2018-05-13  Alan Modra  <amodra@gmail.com>
+
+	* sysdeps/hppa/dl-machine.h (elf_machine_rela): Add
+	R_PARISC_TLS_DTPOFF32 reloc addend.
+
 2018-05-11  Tulio Magno Quites Machado Filho  <tuliom@linux.ibm.com>
 
 	* bits/floatn-common.h: Define __HAVE_FLOAT128_UNLIKE_LDBL.
diff --git a/sysdeps/hppa/dl-machine.h b/sysdeps/hppa/dl-machine.h
index 3a57c7e..5f4e0d3 100644
--- a/sysdeps/hppa/dl-machine.h
+++ b/sysdeps/hppa/dl-machine.h
@@ -690,7 +690,7 @@ elf_machine_rela (struct link_map *map,
       /* During relocation all TLS symbols are defined and used.
 	 Therefore the offset is already correct.  */
       if (sym != NULL)
-	*reloc_addr = sym->st_value;
+	*reloc_addr = sym->st_value + reloc->r_addend;
       return;
 
     case R_PARISC_TLS_TPREL32:

-----------------------------------------------------------------------

Summary of changes:
 ChangeLog                 |    5 +++++
 sysdeps/hppa/dl-machine.h |    2 +-
 2 files changed, 6 insertions(+), 1 deletions(-)


hooks/post-receive
-- 
GNU C Library master sources


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