* [PATCH 1/1] arm64: Align an assembler string properly @ 2013-09-02 10:48 Radha Mohan 2013-09-02 11:28 ` Catalin Marinas 2013-09-04 12:52 ` Radha Mohan 0 siblings, 2 replies; 5+ messages in thread From: Radha Mohan @ 2013-09-02 10:48 UTC (permalink / raw) To: linux-arm-kernel From: Corey Minyard <cminyard@mvista.com> Do a proper align and put it in the right section. Signed-off-by: Corey Minyard <cminyard@mvista.com> --- arch/arm64/mm/proc.S | 3 ++- 1 files changed, 2 insertions(+), 1 deletions(-) diff --git a/arch/arm64/mm/proc.S b/arch/arm64/mm/proc.S index 76d8320..1f89adc 100644 --- a/arch/arm64/mm/proc.S +++ b/arch/arm64/mm/proc.S @@ -95,10 +95,11 @@ ENTRY(cpu_do_switch_mm) ret ENDPROC(cpu_do_switch_mm) + .section ".rodata" cpu_name: .ascii "AArch64 Processor" - .align + .align 3 .section ".text.init", #alloc, #execinstr /* -- 1.7.1 ^ permalink raw reply related [flat|nested] 5+ messages in thread
* [PATCH 1/1] arm64: Align an assembler string properly 2013-09-02 10:48 [PATCH 1/1] arm64: Align an assembler string properly Radha Mohan @ 2013-09-02 11:28 ` Catalin Marinas 2013-09-04 12:52 ` Radha Mohan 1 sibling, 0 replies; 5+ messages in thread From: Catalin Marinas @ 2013-09-02 11:28 UTC (permalink / raw) To: linux-arm-kernel On Mon, Sep 02, 2013 at 11:48:02AM +0100, Radha Mohan wrote: > From: Corey Minyard <cminyard@mvista.com> > > Do a proper align and put it in the right section. > > Signed-off-by: Corey Minyard <cminyard@mvista.com> > --- > arch/arm64/mm/proc.S | 3 ++- > 1 files changed, 2 insertions(+), 1 deletions(-) > > diff --git a/arch/arm64/mm/proc.S b/arch/arm64/mm/proc.S > index 76d8320..1f89adc 100644 > --- a/arch/arm64/mm/proc.S > +++ b/arch/arm64/mm/proc.S > @@ -95,10 +95,11 @@ ENTRY(cpu_do_switch_mm) > ret > ENDPROC(cpu_do_switch_mm) > > + .section ".rodata" > cpu_name: > .ascii "AArch64 Processor" > - .align > > + .align 3 > .section ".text.init", #alloc, #execinstr Oh, we still have this in proc.S. I moved it long time ago to arch/arm64/kernel/cputable.c but forgot about this. It compiles fine after removing it completely. -- Catalin ^ permalink raw reply [flat|nested] 5+ messages in thread
* [PATCH 1/1] arm64: Align an assembler string properly 2013-09-02 10:48 [PATCH 1/1] arm64: Align an assembler string properly Radha Mohan 2013-09-02 11:28 ` Catalin Marinas @ 2013-09-04 12:52 ` Radha Mohan 2013-09-04 14:50 ` Dave Martin 1 sibling, 1 reply; 5+ messages in thread From: Radha Mohan @ 2013-09-04 12:52 UTC (permalink / raw) To: linux-arm-kernel Hi Catalin, Can you please review this? regards, Radha Mohan On Mon, Sep 2, 2013 at 4:18 PM, Radha Mohan <mohun106@gmail.com> wrote: > From: Corey Minyard <cminyard@mvista.com> > > Do a proper align and put it in the right section. > > Signed-off-by: Corey Minyard <cminyard@mvista.com> > --- > arch/arm64/mm/proc.S | 3 ++- > 1 files changed, 2 insertions(+), 1 deletions(-) > > diff --git a/arch/arm64/mm/proc.S b/arch/arm64/mm/proc.S > index 76d8320..1f89adc 100644 > --- a/arch/arm64/mm/proc.S > +++ b/arch/arm64/mm/proc.S > @@ -95,10 +95,11 @@ ENTRY(cpu_do_switch_mm) > ret > ENDPROC(cpu_do_switch_mm) > > + .section ".rodata" > cpu_name: > .ascii "AArch64 Processor" > - .align > > + .align 3 > .section ".text.init", #alloc, #execinstr > > /* > -- > 1.7.1 ^ permalink raw reply [flat|nested] 5+ messages in thread
* [PATCH 1/1] arm64: Align an assembler string properly 2013-09-04 12:52 ` Radha Mohan @ 2013-09-04 14:50 ` Dave Martin 2013-09-05 9:05 ` Catalin Marinas 0 siblings, 1 reply; 5+ messages in thread From: Dave Martin @ 2013-09-04 14:50 UTC (permalink / raw) To: linux-arm-kernel On Wed, Sep 04, 2013 at 06:22:44PM +0530, Radha Mohan wrote: > Hi Catalin, > Can you please review this? > > regards, > Radha Mohan > > On Mon, Sep 2, 2013 at 4:18 PM, Radha Mohan <mohun106@gmail.com> wrote: > > From: Corey Minyard <cminyard@mvista.com> > > > > Do a proper align and put it in the right section. > > > > Signed-off-by: Corey Minyard <cminyard@mvista.com> > > --- > > arch/arm64/mm/proc.S | 3 ++- > > 1 files changed, 2 insertions(+), 1 deletions(-) > > > > diff --git a/arch/arm64/mm/proc.S b/arch/arm64/mm/proc.S > > index 76d8320..1f89adc 100644 > > --- a/arch/arm64/mm/proc.S > > +++ b/arch/arm64/mm/proc.S > > @@ -95,10 +95,11 @@ ENTRY(cpu_do_switch_mm) > > ret > > ENDPROC(cpu_do_switch_mm) > > > > + .section ".rodata" > > cpu_name: > > .ascii "AArch64 Processor" > > - .align > > > > + .align 3 Since cpu_name is local, not referenced, and not next to anything noteworthy (so, unlikely to be found implicitly), I wonder why it's needed at all. cputable.c:cpu_table just has a C string literal instead, with the same content. Perhaps proc.S:cpu_name is used in some other way, but I can't see it. The kernel still builds if it is deleted. Cheers ---Dave > > .section ".text.init", #alloc, #execinstr > > > > /* > > -- > > 1.7.1 > > _______________________________________________ > linaro-kernel mailing list > linaro-kernel at lists.linaro.org > http://lists.linaro.org/mailman/listinfo/linaro-kernel ^ permalink raw reply [flat|nested] 5+ messages in thread
* [PATCH 1/1] arm64: Align an assembler string properly 2013-09-04 14:50 ` Dave Martin @ 2013-09-05 9:05 ` Catalin Marinas 0 siblings, 0 replies; 5+ messages in thread From: Catalin Marinas @ 2013-09-05 9:05 UTC (permalink / raw) To: linux-arm-kernel On Wed, Sep 04, 2013 at 03:50:59PM +0100, Dave P Martin wrote: > On Wed, Sep 04, 2013 at 06:22:44PM +0530, Radha Mohan wrote: > > Hi Catalin, > > Can you please review this? > > > > regards, > > Radha Mohan > > > > On Mon, Sep 2, 2013 at 4:18 PM, Radha Mohan <mohun106@gmail.com> wrote: > > > From: Corey Minyard <cminyard@mvista.com> > > > > > > Do a proper align and put it in the right section. > > > > > > Signed-off-by: Corey Minyard <cminyard@mvista.com> > > > --- > > > arch/arm64/mm/proc.S | 3 ++- > > > 1 files changed, 2 insertions(+), 1 deletions(-) > > > > > > diff --git a/arch/arm64/mm/proc.S b/arch/arm64/mm/proc.S > > > index 76d8320..1f89adc 100644 > > > --- a/arch/arm64/mm/proc.S > > > +++ b/arch/arm64/mm/proc.S > > > @@ -95,10 +95,11 @@ ENTRY(cpu_do_switch_mm) > > > ret > > > ENDPROC(cpu_do_switch_mm) > > > > > > + .section ".rodata" > > > cpu_name: > > > .ascii "AArch64 Processor" > > > - .align > > > > > > + .align 3 > > Since cpu_name is local, not referenced, and not next to anything > noteworthy (so, unlikely to be found implicitly), I wonder why it's > needed at all. > > cputable.c:cpu_table just has a C string literal instead, with the same > content. > > Perhaps proc.S:cpu_name is used in some other way, but I can't see it. > The kernel still builds if it is deleted. I replied couple of days ago but the SMTP server was playing tricks, so still not sure whether it is delayed or dropped. Anyway, what I said was: Oh, we still have this in proc.S. I moved it long time ago to arch/arm64/kernel/cputable.c but forgot about this. It compiles fine after removing it completely. And I already pushed a patch to -next removing it (and it will make it to mainline shortly. Thanks. -- Catalin ^ permalink raw reply [flat|nested] 5+ messages in thread
end of thread, other threads:[~2013-09-05 9:05 UTC | newest] Thread overview: 5+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2013-09-02 10:48 [PATCH 1/1] arm64: Align an assembler string properly Radha Mohan 2013-09-02 11:28 ` Catalin Marinas 2013-09-04 12:52 ` Radha Mohan 2013-09-04 14:50 ` Dave Martin 2013-09-05 9:05 ` Catalin Marinas
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 NNTP newsgroup(s).