summaryrefslogtreecommitdiffstats
path: root/arch/mips64/tools
diff options
context:
space:
mode:
authorRalf Baechle <ralf@linux-mips.org>1999-12-04 03:58:56 +0000
committerRalf Baechle <ralf@linux-mips.org>1999-12-04 03:58:56 +0000
commit1d67e90f19a7acfd9a05dc59678e7d0c5090bd0d (patch)
tree357efc7b93f8f5102110d20d293f41360ec212fc /arch/mips64/tools
parentaea27b2e18d69af87e673972246e66657b4fa274 (diff)
Merge with Linux 2.3.21.
Diffstat (limited to 'arch/mips64/tools')
-rw-r--r--arch/mips64/tools/Makefile2
-rw-r--r--arch/mips64/tools/offset.c6
2 files changed, 3 insertions, 5 deletions
diff --git a/arch/mips64/tools/Makefile b/arch/mips64/tools/Makefile
index 6e82a2dcc..6a7d7de6b 100644
--- a/arch/mips64/tools/Makefile
+++ b/arch/mips64/tools/Makefile
@@ -1,4 +1,4 @@
-# $Id$
+# $Id: Makefile,v 1.1 1999/08/18 21:46:53 ralf Exp $
#
# Makefile for MIPS kernel build tools.
#
diff --git a/arch/mips64/tools/offset.c b/arch/mips64/tools/offset.c
index 2d5eae28f..4f8e28d09 100644
--- a/arch/mips64/tools/offset.c
+++ b/arch/mips64/tools/offset.c
@@ -1,9 +1,8 @@
-/* $Id: offset.c,v 1.2 1999/09/28 22:25:54 ralf Exp $
+/* $Id: offset.c,v 1.5 1999/10/08 21:07:52 ralf Exp $
*
* offset.c: Calculate pt_regs and task_struct offsets.
*
* Copyright (C) 1996 David S. Miller
- * Made portable by Ralf Baechle
* Copyright (C) 1997, 1998, 1999 Ralf Baechle
* Copyright (C) 1999 Silicon Graphics, Inc.
*/
@@ -111,7 +110,6 @@ void output_thread_defines(void)
offset("#define THREAD_ECODE ", struct task_struct, \
thread.error_code);
offset("#define THREAD_TRAPNO ", struct task_struct, thread.trap_no);
- offset("#define THREAD_PGDIR ", struct task_struct, thread.pg_dir);
offset("#define THREAD_MFLAGS ", struct task_struct, thread.mflags);
offset("#define THREAD_CURDS ", struct task_struct, \
thread.current_ds);
@@ -125,7 +123,7 @@ void output_thread_defines(void)
void output_mm_defines(void)
{
text("/* Linux mm_struct offsets. */");
- offset("#define MM_USERS ", struct mm_struct, users);
+ offset("#define MM_USERS ", struct mm_struct, mm_users);
offset("#define MM_PGD ", struct mm_struct, pgd);
offset("#define MM_CONTEXT ", struct mm_struct, context);
linefeed;