diff options
author | Stephen Rothwell <sfr@canb.auug.org.au> | 2006-03-26 04:37:27 -0500 |
---|---|---|
committer | Linus Torvalds <torvalds@g5.osdl.org> | 2006-03-26 11:56:57 -0500 |
commit | 88959ea968709c35e8b979ac9f5a398fa748091a (patch) | |
tree | 7d93892ec8d7b15cd810e4bcb75715c797e01ab3 /arch/sparc64 | |
parent | eb76b3fda1f7c2aa2d1523b36835048a15e5e5d2 (diff) |
[PATCH] create struct compat_timex and use it everywhere
We had a copy of the compatibility version of struct timex in each 64 bit
architecture. This patch just creates a global one and replaces all the
usages of the old ones.
Signed-off-by: Stephen Rothwell <sfr@canb.auug.org.au>
Cc: Arnd Bergmann <arnd@arndb.de>
Acked-by: Kyle McMartin <kyle@parisc-linux.org>
Acked-by: Tony Luck <tony.luck@intel.com>
Acked-by: Paul Mackerras <paulus@samba.org>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
Diffstat (limited to 'arch/sparc64')
-rw-r--r-- | arch/sparc64/kernel/sys_sparc32.c | 15 |
1 files changed, 1 insertions, 14 deletions
diff --git a/arch/sparc64/kernel/sys_sparc32.c b/arch/sparc64/kernel/sys_sparc32.c index 0e41df024489..48f02f201918 100644 --- a/arch/sparc64/kernel/sys_sparc32.c +++ b/arch/sparc64/kernel/sys_sparc32.c | |||
@@ -947,22 +947,9 @@ asmlinkage long compat_sys_sendfile64(int out_fd, int in_fd, | |||
947 | 947 | ||
948 | /* Handle adjtimex compatibility. */ | 948 | /* Handle adjtimex compatibility. */ |
949 | 949 | ||
950 | struct timex32 { | ||
951 | u32 modes; | ||
952 | s32 offset, freq, maxerror, esterror; | ||
953 | s32 status, constant, precision, tolerance; | ||
954 | struct compat_timeval time; | ||
955 | s32 tick; | ||
956 | s32 ppsfreq, jitter, shift, stabil; | ||
957 | s32 jitcnt, calcnt, errcnt, stbcnt; | ||
958 | s32 :32; s32 :32; s32 :32; s32 :32; | ||
959 | s32 :32; s32 :32; s32 :32; s32 :32; | ||
960 | s32 :32; s32 :32; s32 :32; s32 :32; | ||
961 | }; | ||
962 | |||
963 | extern int do_adjtimex(struct timex *); | 950 | extern int do_adjtimex(struct timex *); |
964 | 951 | ||
965 | asmlinkage long sys32_adjtimex(struct timex32 __user *utp) | 952 | asmlinkage long sys32_adjtimex(struct compat_timex __user *utp) |
966 | { | 953 | { |
967 | struct timex txc; | 954 | struct timex txc; |
968 | int ret; | 955 | int ret; |