Skip to content

Commit ade9679

Browse files
rddunlaptorvalds
authored andcommitted
h8300: fix PREEMPTION build, TI_PRE_COUNT undefined
Fix a build error for undefined 'TI_PRE_COUNT' by adding it to asm-offsets.c. h8300-linux-ld: arch/h8300/kernel/entry.o: in function `resume_kernel': (.text+0x29a): undefined reference to `TI_PRE_COUNT' Link: https://lkml.kernel.org/r/[email protected] Fixes: df2078b ("h8300: Low level entry") Signed-off-by: Randy Dunlap <[email protected]> Reported-by: kernel test robot <[email protected]> Cc: Yoshinori Sato <[email protected]> Cc: Thomas Gleixner <[email protected]> Signed-off-by: Andrew Morton <[email protected]> Signed-off-by: Linus Torvalds <[email protected]>
1 parent fee92a7 commit ade9679

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

arch/h8300/kernel/asm-offsets.c

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -63,6 +63,9 @@ int main(void)
6363
OFFSET(TI_FLAGS, thread_info, flags);
6464
OFFSET(TI_CPU, thread_info, cpu);
6565
OFFSET(TI_PRE, thread_info, preempt_count);
66+
#ifdef CONFIG_PREEMPTION
67+
DEFINE(TI_PRE_COUNT, offsetof(struct thread_info, preempt_count));
68+
#endif
6669

6770
return 0;
6871
}

0 commit comments

Comments
 (0)