summaryrefslogtreecommitdiffstats
path: root/arch/s390/kernel
diff options
context:
space:
mode:
authorChristoph Lameter2008-04-29 10:04:09 +0200
committerLinus Torvalds2008-04-29 17:06:30 +0200
commit7a88d7a8f467e4ab1d3393ed5bce3d68cdf9be2e (patch)
treec09e0791d66fce1dc6f042bbe692f27b251f9051 /arch/s390/kernel
parentppc/powerpc: use kbuild.h instead of defining macros in asm-offsets.c (diff)
downloadkernel-qcow2-linux-7a88d7a8f467e4ab1d3393ed5bce3d68cdf9be2e.tar.gz
kernel-qcow2-linux-7a88d7a8f467e4ab1d3393ed5bce3d68cdf9be2e.tar.xz
kernel-qcow2-linux-7a88d7a8f467e4ab1d3393ed5bce3d68cdf9be2e.zip
s390: use kbuild.h instead of defining macros in asm-offsets.c
s390 has a strange marker in DEFINE. Undefine the DEFINE from kbuild.h and define it the way s390 wants it to preserve things as they were. May be good if the arch maintainer could go over this and check if this workaround is really necessary. Signed-off-by: Christoph Lameter <clameter@sgi.com> Cc: Martin Schwidefsky <schwidefsky@de.ibm.com> Cc: Heiko Carstens <heiko.carstens@de.ibm.com> Signed-off-by: Andrew Morton <akpm@linux-foundation.org> Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'arch/s390/kernel')
-rw-r--r--arch/s390/kernel/asm-offsets.c5
1 files changed, 2 insertions, 3 deletions
diff --git a/arch/s390/kernel/asm-offsets.c b/arch/s390/kernel/asm-offsets.c
index 1375f8a4469e..f7807b81c474 100644
--- a/arch/s390/kernel/asm-offsets.c
+++ b/arch/s390/kernel/asm-offsets.c
@@ -5,14 +5,13 @@
*/
#include <linux/sched.h>
+#include <linux/kbuild.h>
/* Use marker if you need to separate the values later */
-
+#undef DEFINE
#define DEFINE(sym, val, marker) \
asm volatile("\n->" #sym " %0 " #val " " #marker : : "i" (val))
-#define BLANK() asm volatile("\n->" : : )
-
int main(void)
{
DEFINE(__THREAD_info, offsetof(struct task_struct, stack),);