]> git.hungrycats.org Git - linux/commitdiff
[PATCH] ppc64: Add missing section definition
authorAndrew Morton <akpm@osdl.org>
Wed, 7 Jan 2004 13:56:59 +0000 (05:56 -0800)
committerLinus Torvalds <torvalds@home.osdl.org>
Wed, 7 Jan 2004 13:56:59 +0000 (05:56 -0800)
From: Anton Blanchard <anton@samba.org>

For a laugh we moved the BSS and our world exploded. Turns out we zero
from __bss_start to _end. Add __bss_stop to our section definitions so
we can use it instead.

include/asm-generic/sections.h

index ce400f39ba25ac3443dfa3f5d7ee55a15de60644..40b935fa003f27009e094cd315b7e03297c365e2 100644 (file)
@@ -5,7 +5,7 @@
 
 extern char _text[], _stext[], _etext[];
 extern char _data[], _sdata[], _edata[];
-extern char __bss_start[];
+extern char __bss_start[], __bss_stop[];
 extern char __init_begin[], __init_end[];
 extern char _sinittext[], _einittext[];