public inbox for libc-alpha@sourceware.org
 help / color / mirror / Atom feed
* [PATCH] elf: correct relocation statistics for !ELF_MACHINE_START_ADDRESS
@ 2024-01-29 16:03 Andreas Schwab
  2024-01-29 17:22 ` Adhemerval Zanella Netto
  0 siblings, 1 reply; 4+ messages in thread
From: Andreas Schwab @ 2024-01-29 16:03 UTC (permalink / raw)
  To: libc-alpha

Fixes: 6628c742b2 ("elf: Remove prelink support")
---
 elf/rtld.c | 7 +++----
 1 file 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.  */
-- 
2.43.0


-- 
Andreas Schwab, SUSE Labs, schwab@suse.de
GPG Key fingerprint = 0196 BAD8 1CE9 1970 F4BE  1748 E4D4 88E3 0EEA B9D7
"And now for something completely different."

^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: [PATCH] elf: correct relocation statistics for !ELF_MACHINE_START_ADDRESS
  2024-01-29 16:03 [PATCH] elf: correct relocation statistics for !ELF_MACHINE_START_ADDRESS Andreas Schwab
@ 2024-01-29 17:22 ` Adhemerval Zanella Netto
  2024-01-29 20:39   ` Andreas K. Huettel
  0 siblings, 1 reply; 4+ messages in thread
From: Adhemerval Zanella Netto @ 2024-01-29 17:22 UTC (permalink / raw)
  To: Andreas Schwab, libc-alpha



On 29/01/24 13:03, Andreas Schwab wrote:
> Fixes: 6628c742b2 ("elf: Remove prelink support")

LGTM, thanks.

Reviewed-by: Adhemerval Zanella  <adhemerval.zanella@linaro.org>

> ---
>  elf/rtld.c | 7 +++----
>  1 file 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.  */

^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: [PATCH] elf: correct relocation statistics for !ELF_MACHINE_START_ADDRESS
  2024-01-29 17:22 ` Adhemerval Zanella Netto
@ 2024-01-29 20:39   ` Andreas K. Huettel
  2024-01-29 20:48     ` Andreas K. Huettel
  0 siblings, 1 reply; 4+ messages in thread
From: Andreas K. Huettel @ 2024-01-29 20:39 UTC (permalink / raw)
  To: Andreas Schwab, libc-alpha; +Cc: Adhemerval Zanella Netto

[-- Attachment #1: Type: text/plain, Size: 1468 bytes --]

Am Montag, 29. Januar 2024, 18:22:10 CET schrieb Adhemerval Zanella Netto:
> 
> On 29/01/24 13:03, Andreas Schwab wrote:
> > Fixes: 6628c742b2 ("elf: Remove prelink support")
> 
> LGTM, thanks.
> 
> Reviewed-by: Adhemerval Zanella  <adhemerval.zanella@linaro.org>
> 

Is that a fix that should still go into the release? If yes, 
please confirm...

> > ---
> >  elf/rtld.c | 7 +++----
> >  1 file 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.  */
> 


-- 
Andreas K. Hüttel
dilfridge@gentoo.org
Gentoo Linux developer
(council, toolchain, base-system, perl, libreoffice)

[-- Attachment #2: This is a digitally signed message part. --]
[-- Type: application/pgp-signature, Size: 981 bytes --]

^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: [PATCH] elf: correct relocation statistics for !ELF_MACHINE_START_ADDRESS
  2024-01-29 20:39   ` Andreas K. Huettel
@ 2024-01-29 20:48     ` Andreas K. Huettel
  0 siblings, 0 replies; 4+ messages in thread
From: Andreas K. Huettel @ 2024-01-29 20:48 UTC (permalink / raw)
  To: Andreas Schwab, libc-alpha; +Cc: Adhemerval Zanella Netto, Andreas K. Huettel

[-- Attachment #1: Type: text/plain, Size: 624 bytes --]

Am Montag, 29. Januar 2024, 21:39:31 CET schrieb Andreas K. Huettel:
> Am Montag, 29. Januar 2024, 18:22:10 CET schrieb Adhemerval Zanella Netto:
> > 
> > On 29/01/24 13:03, Andreas Schwab wrote:
> > > Fixes: 6628c742b2 ("elf: Remove prelink support")
> > 
> > LGTM, thanks.
> > 
> > Reviewed-by: Adhemerval Zanella  <adhemerval.zanella@linaro.org>
> > 
> 
> Is that a fix that should still go into the release? If yes, 
> please confirm...
> 
Sorry for the noise, it's in already. -a

-- 
Andreas K. Hüttel
dilfridge@gentoo.org
Gentoo Linux developer
(council, toolchain, base-system, perl, libreoffice)

[-- Attachment #2: This is a digitally signed message part. --]
[-- Type: application/pgp-signature, Size: 981 bytes --]

^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2024-01-29 20:48 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2024-01-29 16:03 [PATCH] elf: correct relocation statistics for !ELF_MACHINE_START_ADDRESS Andreas Schwab
2024-01-29 17:22 ` Adhemerval Zanella Netto
2024-01-29 20:39   ` Andreas K. Huettel
2024-01-29 20:48     ` Andreas K. Huettel

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).