public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
From: Petr Tesarik <ptesarik@suse.cz>
To: LKML <linux-kernel@vger.kernel.org>
Cc: Thomas Gleixner <tglx@linutronix.de>,
	Ingo Molnar <mingo@redhat.com>, "H. Peter Anvin" <hpa@zytor.com>,
	Andi Kleen <andi@firstfloor.org>,
	Roland McGrath <roland@redhat.com>
Subject: Re: [PATCH 3/8] x86: Remove .dynbss from the vDSO linker script
Date: Fri, 12 Jun 2009 15:29:46 +0200	[thread overview]
Message-ID: <1244813386.5377.3.camel@nathan.suse.cz> (raw)
In-Reply-To: <8de6230206ca20a4c205066fd213bbc951dbfac6.1244812577.git.ptesarik@suse.cz>

Petr Tesarik píše v Pá 12. 06. 2009 v 15:25 +0200:
> As far as I can see, the .dynbss section does not make any sense
> and cannot even appear in a shared library.
> 
> Remove it.

Argh, this commit was wrong. But it changes the context for some of the
following patches. :/ I'll just send the whole patch series again.

Sorry.

Petr Tesarik

> Signed-off-by: Petr Tesarik <ptesarik@suse.cz>
> ---
>  arch/x86/vdso/vdso-layout.lds.S |   11 ++++-------
>  1 files changed, 4 insertions(+), 7 deletions(-)
> 
> diff --git a/arch/x86/vdso/vdso-layout.lds.S b/arch/x86/vdso/vdso-layout.lds.S
> index af3fa61..0386c92 100644
> --- a/arch/x86/vdso/vdso-layout.lds.S
> +++ b/arch/x86/vdso/vdso-layout.lds.S
> @@ -46,15 +46,12 @@ SECTIONS
>  	} :text :dynamic
>  
>  	.rodata : {
> -		*(.rodata*)
> +		*(.rodata* .gnu.linkonce.r.*)
>  	} :text
>  	.data : {
> -		*(.data*)
> +		*(.data* .gnu.linkonce.d.*)
>  		*(.got.plt) *(.got)
> -		*(.gnu.linkonce.d.*)
> -		*(.bss*)
> -		*(.dynbss*)
> -		*(.gnu.linkonce.b.*)
> +		*(.bss* .gnu.linkonce.b.*)
>  	}
>  
>  	.altinstructions : {
> @@ -71,7 +68,7 @@ SECTIONS
>  	. = ALIGN(0x100);
>  
>  	.text : {
> -		*(.text*)
> +		*(.text* .gnu.linkonce.t.*)
>  	} :text	=0x90909090
>  }
>  


  reply	other threads:[~2009-06-12 13:36 UTC|newest]

Thread overview: 10+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2009-06-12 13:25 [PATCH 0/8] clean up vdso-layout.lds.S Petr Tesarik
2009-06-12 13:25 ` [PATCH 1/8] x86: Adjust the coding style of vdso-layout.lds.S Petr Tesarik
2009-06-12 13:25 ` [PATCH 2/8] x86: Remove .sdata from the vDSO linker script Petr Tesarik
2009-06-12 13:25 ` [PATCH 3/8] x86: Remove .dynbss " Petr Tesarik
2009-06-12 13:29   ` Petr Tesarik [this message]
2009-06-12 13:25 ` [PATCH 4/8] x86: add .broken section to " Petr Tesarik
2009-06-12 13:25 ` [PATCH 5/8] x86: mark altinstr-related sections in vDSO as broken Petr Tesarik
2009-06-12 13:25 ` [PATCH 6/8] x86: mark some standard sections as broken in a vDSO Petr Tesarik
2009-06-12 13:25 ` [PATCH 7/8] x86: check the size of GOT in vDSO Petr Tesarik
2009-06-12 13:25 ` [PATCH 8/8] x86: remove unneeded section from the vDSO Petr Tesarik

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=1244813386.5377.3.camel@nathan.suse.cz \
    --to=ptesarik@suse.cz \
    --cc=andi@firstfloor.org \
    --cc=hpa@zytor.com \
    --cc=linux-kernel@vger.kernel.org \
    --cc=mingo@redhat.com \
    --cc=roland@redhat.com \
    --cc=tglx@linutronix.de \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox