about summary refs log tree commit diff
diff options
context:
space:
mode:
authorAndreas Schwab <schwab@suse.de>2024-01-29 17:01:07 +0100
committerAndreas Schwab <schwab@suse.de>2024-01-29 18:27:35 +0100
commit9c72830eb3e12c1d57ac7d1992c96ee69ccd835d (patch)
tree8ffcc307f5a786353f700e56cfa5d54f67ae6b21
parentae49a7b29acc184b03c2a6bd6ac01b5e08efd54f (diff)
downloadglibc-9c72830eb3e12c1d57ac7d1992c96ee69ccd835d.tar.gz
glibc-9c72830eb3e12c1d57ac7d1992c96ee69ccd835d.tar.xz
glibc-9c72830eb3e12c1d57ac7d1992c96ee69ccd835d.zip
elf: correct relocation statistics for !ELF_MACHINE_START_ADDRESS
Fixes: 6628c742b2 ("elf: Remove prelink support")
-rw-r--r--elf/rtld.c7
1 files changed, 3 insertions, 4 deletions
diff --git a/elf/rtld.c b/elf/rtld.c
index 4f494b792e..ac4bb23652 100644
--- a/elf/rtld.c
+++ b/elf/rtld.c
@@ -2815,10 +2815,9 @@ print_statistics (const hp_timing_t *rtld_total_timep)
 	    num_relative_relocations
 	      += l->l_info[VERSYMIDX (DT_RELCOUNT)]->d_un.d_val;
 #ifndef ELF_MACHINE_REL_RELATIVE
-	  /* Relative relocations are processed on these architectures if
-	     library is loaded to different address than p_vaddr.  */
-	  if ((l->l_addr != 0)
-	      && l->l_info[VERSYMIDX (DT_RELACOUNT)])
+	  /* Relative relocations are always processed on these
+	     architectures.  */
+	  if (l->l_info[VERSYMIDX (DT_RELACOUNT)])
 #else
 	  /* On e.g. IA-64 or Alpha, relative relocations are processed
 	     only if library is loaded to different address than p_vaddr.  */