summaryrefslogtreecommitdiffstats
path: root/arch/mips/tools/offset.c
diff options
context:
space:
mode:
Diffstat (limited to 'arch/mips/tools/offset.c')
-rw-r--r--arch/mips/tools/offset.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/arch/mips/tools/offset.c b/arch/mips/tools/offset.c
index 3bb46de6e..a8660dcf6 100644
--- a/arch/mips/tools/offset.c
+++ b/arch/mips/tools/offset.c
@@ -77,12 +77,11 @@ void output_task_defines(void)
{
text("/* MIPS task_struct offsets. */");
offset("#define TASK_STATE ", struct task_struct, state);
+ offset("#define TASK_COUNTER ", struct task_struct, counter);
offset("#define TASK_PRIORITY ", struct task_struct, priority);
offset("#define TASK_SIGNAL ", struct task_struct, signal);
offset("#define TASK_BLOCKED ", struct task_struct, blocked);
offset("#define TASK_FLAGS ", struct task_struct, flags);
- offset("#define TASK_SAVED_KSTACK ", struct task_struct, saved_kernel_stack);
- offset("#define TASK_KSTACK_PG ", struct task_struct, kernel_stack_page);
offset("#define TASK_MM ", struct task_struct, mm);
linefeed;
}