Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit b5db854a authored by Sam Ravnborg's avatar Sam Ravnborg Committed by David S. Miller
Browse files

sparc,sparc64: unify asm-offsets.c



sparc64 does not use constants generated from asm-offsets
but to prepare it to do so the parts that could be
shared do now generate constants for sparc64 too.

Signed-off-by: default avatarSam Ravnborg <sam@ravnborg.org>
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent 104495a1
Loading
Loading
Loading
Loading
+16 −3
Original line number Diff line number Diff line
@@ -14,15 +14,28 @@
// #include <linux/mm.h>
#include <linux/kbuild.h>

int foo(void)
#ifdef CONFIG_SPARC32
int sparc32_foo(void)
{
	DEFINE(AOFF_task_thread, offsetof(struct task_struct, thread));
	BLANK();
	DEFINE(AOFF_thread_fork_kpsr,
			offsetof(struct thread_struct, fork_kpsr));
	return 0;
}
#else
int sparc64_foo(void)
{
	return 0;
}
#endif

int foo(void)
{
	BLANK();
	DEFINE(AOFF_task_thread, offsetof(struct task_struct, thread));
	BLANK();
	DEFINE(AOFF_mm_context, offsetof(struct mm_struct, context));

	/* DEFINE(NUM_USER_SEGMENTS, TASK_SIZE>>28); */
	return 0;
}
+1 −1
Original line number Diff line number Diff line
/* Dummy asm-offsets.c file. Required by kbuild and ready to be used - hint! */
#include "../../sparc/kernel/asm-offsets.c"