]> Git Repo - linux.git/blob - arch/m32r/kernel/asm-offsets.c
KVM: s390: prevent buffer overrun on memory hotplug during migration
[linux.git] / arch / m32r / kernel / asm-offsets.c
1 // SPDX-License-Identifier: GPL-2.0
2 #include <linux/thread_info.h>
3 #include <linux/kbuild.h>
4
5 int foo(void)
6 {
7         OFFSET(TI_TASK, thread_info, task);
8         OFFSET(TI_FLAGS, thread_info, flags);
9         OFFSET(TI_STATUS, thread_info, status);
10         OFFSET(TI_CPU, thread_info, cpu);
11         OFFSET(TI_PRE_COUNT, thread_info, preempt_count);
12         OFFSET(TI_ADDR_LIMIT, thread_info, addr_limit);
13
14         return 0;
15 }
This page took 0.032722 seconds and 4 git commands to generate.