Skip to content

Commit

Permalink
m32r: Autogenerate offsets in struct thread_info
Browse files Browse the repository at this point in the history
Maintaining offsets by hand is no fun.

Signed-off-by: Richard Weinberger <richard@nod.at>
  • Loading branch information
Richard Weinberger committed Apr 12, 2015
1 parent 7bd8301 commit 37f078f
Showing 4 changed files with 17 additions and 13 deletions.
1 change: 1 addition & 0 deletions arch/m32r/include/asm/asm-offsets.h
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
#include <generated/asm-offsets.h>
13 changes: 1 addition & 12 deletions arch/m32r/include/asm/thread_info.h
Original file line number Diff line number Diff line change
@@ -38,18 +38,7 @@ struct thread_info {
__u8 supervisor_stack[0];
};

#else /* !__ASSEMBLY__ */

/* offsets into the thread_info struct for assembly code access */
#define TI_TASK 0x00000000
#define TI_EXEC_DOMAIN 0x00000004
#define TI_FLAGS 0x00000008
#define TI_STATUS 0x0000000C
#define TI_CPU 0x00000010
#define TI_PRE_COUNT 0x00000014
#define TI_ADDR_LIMIT 0x00000018

#endif
#endif /* !__ASSEMBLY__ */

#define THREAD_SIZE (PAGE_SIZE << 1)
#define THREAD_SIZE_ORDER 1
15 changes: 14 additions & 1 deletion arch/m32r/kernel/asm-offsets.c
Original file line number Diff line number Diff line change
@@ -1 +1,14 @@
/* Dummy asm-offsets.c file. Required by kbuild and ready to be used - hint! */
#include <linux/thread_info.h>
#include <linux/kbuild.h>

int foo(void)
{
OFFSET(TI_TASK, thread_info, task);
OFFSET(TI_FLAGS, thread_info, flags);
OFFSET(TI_STATUS, thread_info, status);
OFFSET(TI_CPU, thread_info, cpu);
OFFSET(TI_PRE_COUNT, thread_info, preempt_count);
OFFSET(TI_ADDR_LIMIT, thread_info, addr_limit);

return 0;
}
1 change: 1 addition & 0 deletions arch/m32r/kernel/entry.S
Original file line number Diff line number Diff line change
@@ -65,6 +65,7 @@
#include <asm/page.h>
#include <asm/m32r.h>
#include <asm/mmu_context.h>
#include <asm/asm-offsets.h>

#if !defined(CONFIG_MMU)
#define sys_madvise sys_ni_syscall

0 comments on commit 37f078f

Please sign in to comment.