From: Tim Abbott <tabbott@MIT.EDU>
To: Sam Ravnborg <sam@ravnborg.org>
Cc: Linus Torvalds <torvalds@linux-foundation.org>,
Linux kernel mailing list <linux-kernel@vger.kernel.org>,
Anders Kaseorg <andersk@MIT.EDU>, Waseem Daher <wdaher@MIT.EDU>,
Denys Vlasenko <vda.linux@googlemail.com>,
Jeff Arnold <jbarnold@MIT.EDU>, Paul Mundt <lethal@linux-sh.org>,
David Howells <dhowells@redhat.com>, Tim Abbott <tabbott@MIT.EDU>,
Sam Ravnborg <sam@ravnborg.org>
Subject: [PATCH v2 01/15] Add new macros for page-aligned data and bss sections.
Date: Tue, 28 Apr 2009 13:00:48 -0400 [thread overview]
Message-ID: <1240938062-3264-2-git-send-email-tabbott@mit.edu> (raw)
In-Reply-To: <1240938062-3264-1-git-send-email-tabbott@mit.edu>
This patch is preparation for replacing most uses of
".bss.page_aligned" and ".data.page_aligned" in the kernel with
macros, so that the section name can later be changed without having
to touch a lot of the kernel.
The long-term goal here is to be able to change the kernel's magic
section names to those that are compatible with -ffunction-sections
-fdata-sections. This requires renaming all magic sections with names
of the form ".data.foo".
Signed-off-by: Tim Abbott <tabbott@mit.edu>
Cc: Sam Ravnborg <sam@ravnborg.org>
---
include/asm-generic/vmlinux.lds.h | 8 ++++++++
include/linux/linkage.h | 9 +++++++++
2 files changed, 17 insertions(+), 0 deletions(-)
diff --git a/include/asm-generic/vmlinux.lds.h b/include/asm-generic/vmlinux.lds.h
index 89853bc..3d88c87 100644
--- a/include/asm-generic/vmlinux.lds.h
+++ b/include/asm-generic/vmlinux.lds.h
@@ -116,6 +116,14 @@
FTRACE_EVENTS() \
TRACE_SYSCALLS()
+#define PAGE_ALIGNED_DATA \
+ . = ALIGN(PAGE_SIZE); \
+ *(.data.page_aligned)
+
+#define PAGE_ALIGNED_BSS \
+ . = ALIGN(PAGE_SIZE); \
+ *(.bss.page_aligned)
+
#define RO_DATA(align) \
. = ALIGN((align)); \
.rodata : AT(ADDR(.rodata) - LOAD_OFFSET) { \
diff --git a/include/linux/linkage.h b/include/linux/linkage.h
index fee9e59..af051fc 100644
--- a/include/linux/linkage.h
+++ b/include/linux/linkage.h
@@ -22,6 +22,15 @@
#define __page_aligned_bss __section(.bss.page_aligned) __aligned(PAGE_SIZE)
/*
+ * For assembly routines.
+ *
+ * Note when using these that you must specify the appropriate
+ * alignment directives yourself
+ */
+#define __PAGE_ALIGNED_DATA .section ".data.page_aligned", "aw", @progbits
+#define __PAGE_ALIGNED_BSS .section ".bss.page_aligned", "aw", @nobits
+
+/*
* This is used by architectures to keep arguments on the stack
* untouched by the compiler by keeping them live until the end.
* The argument stack may be owned by the assembly-language
--
1.6.2.1
next prev parent reply other threads:[~2009-04-28 17:01 UTC|newest]
Thread overview: 22+ messages / expand[flat|nested] mbox.gz Atom feed top
2009-04-28 17:00 [PATCH v2 00/15] clean up page aligned " Tim Abbott
2009-04-28 17:00 ` Tim Abbott [this message]
2009-04-28 17:00 ` [PATCH v2 02/15] sh: Use macros for .bss.page_aligned section Tim Abbott
2009-04-28 17:00 ` [PATCH v2 03/15] mn10300: " Tim Abbott
2009-04-28 17:00 ` [PATCH v2 04/15] xtensa: " Tim Abbott
2009-04-28 17:00 ` [PATCH v2 05/15] x86: " Tim Abbott
2009-04-28 17:00 ` [PATCH v2 06/15] alpha: Use macros for .data.page_aligned Tim Abbott
2009-04-28 17:00 ` [PATCH v2 07/15] avr32: Use standard macros for .data.page_aligned section Tim Abbott
2009-04-28 17:00 ` [PATCH v2 08/15] sh: Use " Tim Abbott
2009-04-28 17:00 ` [PATCH v2 09/15] s390: Use macros for .data.page_aligned Tim Abbott
2009-04-28 17:00 ` [PATCH v2 10/15] powerpc: Remove unused __page_aligned macro Tim Abbott
2009-04-28 17:00 ` [PATCH v2 11/15] powerpc: share .data output section definition between 32 and 64 bits Tim Abbott
2009-04-28 17:00 ` [PATCH v2 12/15] powerpc: Use macros for .data.page_aligned section Tim Abbott
2009-04-28 17:01 ` [PATCH v2 13/15] mn10300: Drop unused .data.idt section Tim Abbott
2009-04-28 17:01 ` [PATCH v2 14/15] x86: Use section .data.page_aligned for the idt_table Tim Abbott
2009-04-28 17:01 ` [PATCH v2 15/15] x86: Use macros for .data.page_aligned Tim Abbott
2009-04-28 21:27 ` [PATCH v2 13/15] mn10300: Drop unused .data.idt section David Howells
2009-04-28 22:52 ` [PATCH v2 12/15] powerpc: Use macros for .data.page_aligned section Paul Mackerras
2009-04-28 21:27 ` [PATCH v2 03/15] mn10300: Use macros for .bss.page_aligned section David Howells
2009-04-28 19:48 ` [PATCH v2 00/15] clean up page aligned data and bss sections Tim Abbott
2009-04-29 20:50 ` Sam Ravnborg
2009-04-28 21:27 ` [PATCH v2 01/15] Add new macros for page-aligned " David Howells
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=1240938062-3264-2-git-send-email-tabbott@mit.edu \
--to=tabbott@mit.edu \
--cc=andersk@MIT.EDU \
--cc=dhowells@redhat.com \
--cc=jbarnold@MIT.EDU \
--cc=lethal@linux-sh.org \
--cc=linux-kernel@vger.kernel.org \
--cc=sam@ravnborg.org \
--cc=torvalds@linux-foundation.org \
--cc=vda.linux@googlemail.com \
--cc=wdaher@MIT.EDU \
/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
Powered by JetHome