diff options
Diffstat (limited to 'arch/um')
-rw-r--r-- | arch/um/Kconfig.debug | 1 | ||||
-rw-r--r-- | arch/um/drivers/mconsole_kern.c | 2 | ||||
-rw-r--r-- | arch/um/include/sysdep-x86_64/syscalls.h | 2 | ||||
-rw-r--r-- | arch/um/kernel/physmem.c | 2 | ||||
-rw-r--r-- | arch/um/kernel/time_kern.c | 2 | ||||
-rw-r--r-- | arch/um/sys-ppc/misc.S | 6 |
6 files changed, 3 insertions, 12 deletions
diff --git a/arch/um/Kconfig.debug b/arch/um/Kconfig.debug index 5681a8bd370b..bab51d619173 100644 --- a/arch/um/Kconfig.debug +++ b/arch/um/Kconfig.debug | |||
@@ -49,7 +49,6 @@ config GCOV | |||
49 | 49 | ||
50 | config SYSCALL_DEBUG | 50 | config SYSCALL_DEBUG |
51 | bool "Enable system call debugging" | 51 | bool "Enable system call debugging" |
52 | default N | ||
53 | depends on DEBUG_INFO | 52 | depends on DEBUG_INFO |
54 | help | 53 | help |
55 | This adds some system debugging to UML, including keeping a ring buffer | 54 | This adds some system debugging to UML, including keeping a ring buffer |
diff --git a/arch/um/drivers/mconsole_kern.c b/arch/um/drivers/mconsole_kern.c index 6d7173fc55a3..79149314ed04 100644 --- a/arch/um/drivers/mconsole_kern.c +++ b/arch/um/drivers/mconsole_kern.c | |||
@@ -300,8 +300,6 @@ void mconsole_reboot(struct mc_request *req) | |||
300 | machine_restart(NULL); | 300 | machine_restart(NULL); |
301 | } | 301 | } |
302 | 302 | ||
303 | extern void ctrl_alt_del(void); | ||
304 | |||
305 | void mconsole_cad(struct mc_request *req) | 303 | void mconsole_cad(struct mc_request *req) |
306 | { | 304 | { |
307 | mconsole_reply(req, "", 0, 0); | 305 | mconsole_reply(req, "", 0, 0); |
diff --git a/arch/um/include/sysdep-x86_64/syscalls.h b/arch/um/include/sysdep-x86_64/syscalls.h index e06f83e80f4a..5e86aa047b2b 100644 --- a/arch/um/include/sysdep-x86_64/syscalls.h +++ b/arch/um/include/sysdep-x86_64/syscalls.h | |||
@@ -12,8 +12,6 @@ | |||
12 | 12 | ||
13 | typedef long syscall_handler_t(void); | 13 | typedef long syscall_handler_t(void); |
14 | 14 | ||
15 | extern syscall_handler_t *ia32_sys_call_table[]; | ||
16 | |||
17 | extern syscall_handler_t *sys_call_table[]; | 15 | extern syscall_handler_t *sys_call_table[]; |
18 | 16 | ||
19 | #define EXECUTE_SYSCALL(syscall, regs) \ | 17 | #define EXECUTE_SYSCALL(syscall, regs) \ |
diff --git a/arch/um/kernel/physmem.c b/arch/um/kernel/physmem.c index fc0f0b085ca7..166cb09cae4c 100644 --- a/arch/um/kernel/physmem.c +++ b/arch/um/kernel/physmem.c | |||
@@ -69,7 +69,7 @@ static void insert_phys_mapping(struct phys_desc *desc) | |||
69 | panic("Physical remapping for %p already present", | 69 | panic("Physical remapping for %p already present", |
70 | desc->virt); | 70 | desc->virt); |
71 | 71 | ||
72 | rb_link_node(&desc->rb, (*n)->rb_parent, n); | 72 | rb_link_node(&desc->rb, rb_parent(*n), n); |
73 | rb_insert_color(&desc->rb, &phys_mappings); | 73 | rb_insert_color(&desc->rb, &phys_mappings); |
74 | } | 74 | } |
75 | 75 | ||
diff --git a/arch/um/kernel/time_kern.c b/arch/um/kernel/time_kern.c index 86f51d04c98d..87cdbc560d36 100644 --- a/arch/um/kernel/time_kern.c +++ b/arch/um/kernel/time_kern.c | |||
@@ -87,7 +87,7 @@ void timer_irq(union uml_pt_regs *regs) | |||
87 | 87 | ||
88 | void time_init_kern(void) | 88 | void time_init_kern(void) |
89 | { | 89 | { |
90 | unsigned long long nsecs; | 90 | long long nsecs; |
91 | 91 | ||
92 | nsecs = os_nsecs(); | 92 | nsecs = os_nsecs(); |
93 | set_normalized_timespec(&wall_to_monotonic, -nsecs / BILLION, | 93 | set_normalized_timespec(&wall_to_monotonic, -nsecs / BILLION, |
diff --git a/arch/um/sys-ppc/misc.S b/arch/um/sys-ppc/misc.S index 11b7bd768cfd..f0c971db47e4 100644 --- a/arch/um/sys-ppc/misc.S +++ b/arch/um/sys-ppc/misc.S | |||
@@ -23,14 +23,10 @@ | |||
23 | #define CACHE_LINE_SIZE 16 | 23 | #define CACHE_LINE_SIZE 16 |
24 | #define LG_CACHE_LINE_SIZE 4 | 24 | #define LG_CACHE_LINE_SIZE 4 |
25 | #define MAX_COPY_PREFETCH 1 | 25 | #define MAX_COPY_PREFETCH 1 |
26 | #elif !defined(CONFIG_PPC64BRIDGE) | 26 | #else |
27 | #define CACHE_LINE_SIZE 32 | 27 | #define CACHE_LINE_SIZE 32 |
28 | #define LG_CACHE_LINE_SIZE 5 | 28 | #define LG_CACHE_LINE_SIZE 5 |
29 | #define MAX_COPY_PREFETCH 4 | 29 | #define MAX_COPY_PREFETCH 4 |
30 | #else | ||
31 | #define CACHE_LINE_SIZE 128 | ||
32 | #define LG_CACHE_LINE_SIZE 7 | ||
33 | #define MAX_COPY_PREFETCH 1 | ||
34 | #endif /* CONFIG_4xx || CONFIG_8xx */ | 30 | #endif /* CONFIG_4xx || CONFIG_8xx */ |
35 | 31 | ||
36 | .text | 32 | .text |