diff options
author | Jeff Dike <jdike@addtoit.com> | 2007-10-16 04:27:21 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@woody.linux-foundation.org> | 2007-10-16 12:43:08 -0400 |
commit | 532d0fa4d104ca3e37dd38bc5073376fcc3c2712 (patch) | |
tree | a2ece8d09bc22a616abd743c170b2a727c1d077e /arch/um/include | |
parent | 088bec4141ceb663eecdd961292d110db891db73 (diff) |
uml: eliminate hz()
Eliminate hz() since its only purpose was to provide a kernel-space constant
to userspace code. This can be done instead by providing the constant
directly through kernel_constants.h.
Signed-off-by: Jeff Dike <jdike@linux.intel.com>
Cc: Thomas Gleixner <tglx@linutronix.de>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'arch/um/include')
-rw-r--r-- | arch/um/include/common-offsets.h | 2 | ||||
-rw-r--r-- | arch/um/include/kern_util.h | 1 |
2 files changed, 2 insertions, 1 deletions
diff --git a/arch/um/include/common-offsets.h b/arch/um/include/common-offsets.h index 439b91f141a5..54694693f400 100644 --- a/arch/um/include/common-offsets.h +++ b/arch/um/include/common-offsets.h | |||
@@ -32,3 +32,5 @@ DEFINE(UM_GFP_ATOMIC, GFP_ATOMIC); | |||
32 | DEFINE(crypto_tfm_ctx_offset, offsetof(struct crypto_tfm, __crt_ctx)); | 32 | DEFINE(crypto_tfm_ctx_offset, offsetof(struct crypto_tfm, __crt_ctx)); |
33 | 33 | ||
34 | DEFINE(UM_THREAD_SIZE, THREAD_SIZE); | 34 | DEFINE(UM_THREAD_SIZE, THREAD_SIZE); |
35 | |||
36 | DEFINE(UM_HZ, HZ); | ||
diff --git a/arch/um/include/kern_util.h b/arch/um/include/kern_util.h index 7e7e84e4bc53..74ce8e5370a6 100644 --- a/arch/um/include/kern_util.h +++ b/arch/um/include/kern_util.h | |||
@@ -64,7 +64,6 @@ extern void paging_init(void); | |||
64 | extern void init_flush_vm(void); | 64 | extern void init_flush_vm(void); |
65 | extern void *syscall_sp(void *t); | 65 | extern void *syscall_sp(void *t); |
66 | extern void syscall_trace(struct uml_pt_regs *regs, int entryexit); | 66 | extern void syscall_trace(struct uml_pt_regs *regs, int entryexit); |
67 | extern int hz(void); | ||
68 | extern unsigned int do_IRQ(int irq, struct uml_pt_regs *regs); | 67 | extern unsigned int do_IRQ(int irq, struct uml_pt_regs *regs); |
69 | extern void interrupt_end(void); | 68 | extern void interrupt_end(void); |
70 | extern void initial_thread_cb(void (*proc)(void *), void *arg); | 69 | extern void initial_thread_cb(void (*proc)(void *), void *arg); |