diff options
author | Jeff Dike <jdike@addtoit.com> | 2007-10-16 04:26:58 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@woody.linux-foundation.org> | 2007-10-16 12:43:05 -0400 |
commit | 77bf4400319db9d2a8af6b00c2be6faa0f3d07cb (patch) | |
tree | ddc8fd48349b8d4dd2c0b26bce7f52f79b4e4077 /arch/um/kernel/time.c | |
parent | ae2587e41254e48e670346aefa332d7469d86352 (diff) |
uml: remove code made redundant by CHOOSE_MODE removal
This patch makes a number of simplifications enabled by the removal of
CHOOSE_MODE. There were lots of functions that looked like
int foo(args){
foo_skas(args);
}
The bodies of foo_skas are now folded into foo, and their declarations (and
sometimes entire header files) are deleted.
In addition, the union uml_pt_regs, which was a union between the tt and skas
register formats, is now a struct, with the tt-mode arm of the union being
removed.
It turns out that usr2_handler was unused, so it is gone.
Signed-off-by: Jeff Dike <jdike@linux.intel.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'arch/um/kernel/time.c')
-rw-r--r-- | arch/um/kernel/time.c | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/arch/um/kernel/time.c b/arch/um/kernel/time.c index 3571703a7cb4..90e24e2dbeaa 100644 --- a/arch/um/kernel/time.c +++ b/arch/um/kernel/time.c | |||
@@ -18,7 +18,6 @@ | |||
18 | #include "asm/param.h" | 18 | #include "asm/param.h" |
19 | #include "asm/current.h" | 19 | #include "asm/current.h" |
20 | #include "kern_util.h" | 20 | #include "kern_util.h" |
21 | #include "mode.h" | ||
22 | #include "os.h" | 21 | #include "os.h" |
23 | 22 | ||
24 | int hz(void) | 23 | int hz(void) |
@@ -39,7 +38,7 @@ static unsigned long long prev_nsecs[NR_CPUS]; | |||
39 | static long long delta[NR_CPUS]; /* Deviation per interval */ | 38 | static long long delta[NR_CPUS]; /* Deviation per interval */ |
40 | #endif | 39 | #endif |
41 | 40 | ||
42 | void timer_irq(union uml_pt_regs *regs) | 41 | void timer_irq(struct uml_pt_regs *regs) |
43 | { | 42 | { |
44 | unsigned long long ticks = 0; | 43 | unsigned long long ticks = 0; |
45 | #ifdef CONFIG_UML_REAL_TIME_CLOCK | 44 | #ifdef CONFIG_UML_REAL_TIME_CLOCK |
@@ -175,13 +174,13 @@ int do_settimeofday(struct timespec *tv) | |||
175 | return 0; | 174 | return 0; |
176 | } | 175 | } |
177 | 176 | ||
178 | void timer_handler(int sig, union uml_pt_regs *regs) | 177 | void timer_handler(int sig, struct uml_pt_regs *regs) |
179 | { | 178 | { |
180 | if(current_thread->cpu == 0) | 179 | if(current_thread->cpu == 0) |
181 | timer_irq(regs); | 180 | timer_irq(regs); |
182 | local_irq_disable(); | 181 | local_irq_disable(); |
183 | irq_enter(); | 182 | irq_enter(); |
184 | update_process_times((regs)->skas.is_user); | 183 | update_process_times(regs->is_user); |
185 | irq_exit(); | 184 | irq_exit(); |
186 | local_irq_enable(); | 185 | local_irq_enable(); |
187 | } | 186 | } |