x86: Drop always empty .text..page_aligned section
authorJan Beulich <JBeulich@suse.com>
Mon, 11 Mar 2013 10:06:12 +0000 (10:06 +0000)
committerIngo Molnar <mingo@kernel.org>
Mon, 11 Mar 2013 14:07:56 +0000 (15:07 +0100)
Commit e44b7b7 ("x86: move suspend wakeup code to C") didn't
care to also eliminate the side effects that the earlier 4c49156
("x86: make arch/x86/kernel/acpi/wakeup_32.S use a separate")
had, thus leaving a now pointless, almost page size gap at the
beginning of .text.

Signed-off-by: Jan Beulich <jbeulich@suse.com>
Cc: Eric Dumazet <edumazet@google.com>
Cc: Pavel Machek <pavel@ucw.cz>
Link: http://lkml.kernel.org/r/513DBAA402000078000C4896@nat28.tlf.novell.com
Signed-off-by: Ingo Molnar <mingo@kernel.org>
arch/x86/kernel/acpi/wakeup_32.S
arch/x86/kernel/vmlinux.lds.S

index 13ab720573e3e31e317ac52f977e168401552f17..ced4638c83415717173c7699b9c169b06eb8f9d8 100644 (file)
@@ -1,4 +1,4 @@
-       .section .text..page_aligned
+       .text
 #include <linux/linkage.h>
 #include <asm/segment.h>
 #include <asm/page_types.h>
index 22a1530146a8740ab14efed3ca8c0fce5ce68959..10c4f3006afd3471142ceb8f217fefaba90591d7 100644 (file)
@@ -94,10 +94,6 @@ SECTIONS
                _text = .;
                /* bootstrapping code */
                HEAD_TEXT
-#ifdef CONFIG_X86_32
-               . = ALIGN(PAGE_SIZE);
-               *(.text..page_aligned)
-#endif
                . = ALIGN(8);
                _stext = .;
                TEXT_TEXT
This page took 0.026435 seconds and 5 git commands to generate.