All of lore.kernel.org
 help / color / mirror / Atom feed
* Fwd: [parisc-linux] [PATCH] Section mismatch fix
@ 2007-12-26 17:07 Helge Deller
  2008-03-06 18:10 ` Kyle McMartin
  0 siblings, 1 reply; 2+ messages in thread
From: Helge Deller @ 2007-12-26 17:07 UTC (permalink / raw)
  To: linux-parisc

Just resending it to our new mailing list (my original mail was eaten by our old list).
Kyle wanted to (partly) add it to his tree, but it's not there yet.

Helge

----------  Forwarded Message  ----------

Subject: [parisc-linux] [PATCH] Section mismatch fix
Date: Saturday 17 November 2007
From: Helge Deller <deller@gmx.de>
To: Kyle McMartin <kyle@parisc-linux.org>, parisc-linux@lists.parisc-linux.org

- move boot_args[] into the init section
- move $global$ into the read_mostly section
- fix the following two section mismatches:
WARNING: vmlinux.o(.text+0x9c): Section mismatch: reference to .init.text:start_kernel (between '$pgt_fill_loop' and '$is_pa20')
WARNING: vmlinux.o(.text+0xa0): Section mismatch: reference to .init.text:start_kernel (between '$pgt_fill_loop' and '$is_pa20')

Signed-off-by: Helge Deller <deller@gmx.de>

 head.S |    7 ++++---
 1 file changed, 4 insertions(+), 3 deletions(-)

diff --git a/arch/parisc/kernel/head.S b/arch/parisc/kernel/head.S
index a7b8859..ec2482d 100644
--- a/arch/parisc/kernel/head.S
+++ b/arch/parisc/kernel/head.S
@@ -20,10 +20,11 @@
 #include <asm/pgtable.h>
 
 #include <linux/linkage.h>
+#include <linux/init.h>
 
 	.level	LEVEL
 
-	.data
+	__INITDATA
 ENTRY(boot_args)
 	.word 0 /* arg0 */
 	.word 0 /* arg1 */
@@ -31,7 +32,7 @@ ENTRY(boot_args)
 	.word 0 /* arg3 */
 END(boot_args)
 
-	.text
+	.section .text.head
 	.align	4
 	.import init_thread_union,data
 	.import fault_vector_20,code    /* IVA parisc 2.0 32 bit */
@@ -343,7 +344,7 @@ smp_slave_stext:
 ENDPROC(stext)
 
 #ifndef CONFIG_64BIT
-	.data
+	.section .data.read_mostly
 
 	.align	4
 	.export	$global$,data
_______________________________________________
parisc-linux mailing list
parisc-linux@lists.parisc-linux.org
http://lists.parisc-linux.org/mailman/listinfo/parisc-linux

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

* Re: Fwd: [parisc-linux] [PATCH] Section mismatch fix
  2007-12-26 17:07 Fwd: [parisc-linux] [PATCH] Section mismatch fix Helge Deller
@ 2008-03-06 18:10 ` Kyle McMartin
  0 siblings, 0 replies; 2+ messages in thread
From: Kyle McMartin @ 2008-03-06 18:10 UTC (permalink / raw)
  To: Helge Deller; +Cc: linux-parisc

On Wed, Dec 26, 2007 at 06:07:01PM +0100, Helge Deller wrote:
> Just resending it to our new mailing list (my original mail was eaten by our old list).
> Kyle wanted to (partly) add it to his tree, but it's not there yet.
> 
> Helge
> 

Got it, sorry.

--Kyle

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

end of thread, other threads:[~2008-03-06 18:10 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2007-12-26 17:07 Fwd: [parisc-linux] [PATCH] Section mismatch fix Helge Deller
2008-03-06 18:10 ` Kyle McMartin

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.