diff options
Diffstat (limited to 'arch/um/kernel/process.c')
| -rw-r--r-- | arch/um/kernel/process.c | 125 |
1 files changed, 35 insertions, 90 deletions
diff --git a/arch/um/kernel/process.c b/arch/um/kernel/process.c index 348b272bb766..8d2c5496532b 100644 --- a/arch/um/kernel/process.c +++ b/arch/um/kernel/process.c | |||
| @@ -32,8 +32,8 @@ | |||
| 32 | #include "asm/tlbflush.h" | 32 | #include "asm/tlbflush.h" |
| 33 | #include "asm/uaccess.h" | 33 | #include "asm/uaccess.h" |
| 34 | #include "asm/user.h" | 34 | #include "asm/user.h" |
| 35 | #include "user_util.h" | ||
| 36 | #include "kern_util.h" | 35 | #include "kern_util.h" |
| 36 | #include "as-layout.h" | ||
| 37 | #include "kern.h" | 37 | #include "kern.h" |
| 38 | #include "signal_kern.h" | 38 | #include "signal_kern.h" |
| 39 | #include "init.h" | 39 | #include "init.h" |
| @@ -54,11 +54,9 @@ | |||
| 54 | */ | 54 | */ |
| 55 | struct cpu_task cpu_tasks[NR_CPUS] = { [0 ... NR_CPUS - 1] = { -1, NULL } }; | 55 | struct cpu_task cpu_tasks[NR_CPUS] = { [0 ... NR_CPUS - 1] = { -1, NULL } }; |
| 56 | 56 | ||
| 57 | int external_pid(void *t) | 57 | static inline int external_pid(struct task_struct *task) |
| 58 | { | 58 | { |
| 59 | struct task_struct *task = t ? t : current; | 59 | return CHOOSE_MODE_PROC(external_pid_tt, external_pid_skas, task); |
| 60 | |||
| 61 | return(CHOOSE_MODE_PROC(external_pid_tt, external_pid_skas, task)); | ||
| 62 | } | 60 | } |
| 63 | 61 | ||
| 64 | int pid_to_processor_id(int pid) | 62 | int pid_to_processor_id(int pid) |
| @@ -66,9 +64,10 @@ int pid_to_processor_id(int pid) | |||
| 66 | int i; | 64 | int i; |
| 67 | 65 | ||
| 68 | for(i = 0; i < ncpus; i++){ | 66 | for(i = 0; i < ncpus; i++){ |
| 69 | if(cpu_tasks[i].pid == pid) return(i); | 67 | if(cpu_tasks[i].pid == pid) |
| 68 | return i; | ||
| 70 | } | 69 | } |
| 71 | return(-1); | 70 | return -1; |
| 72 | } | 71 | } |
| 73 | 72 | ||
| 74 | void free_stack(unsigned long stack, int order) | 73 | void free_stack(unsigned long stack, int order) |
| @@ -85,9 +84,9 @@ unsigned long alloc_stack(int order, int atomic) | |||
| 85 | flags = GFP_ATOMIC; | 84 | flags = GFP_ATOMIC; |
| 86 | page = __get_free_pages(flags, order); | 85 | page = __get_free_pages(flags, order); |
| 87 | if(page == 0) | 86 | if(page == 0) |
| 88 | return(0); | 87 | return 0; |
| 89 | stack_protections(page); | 88 | stack_protections(page); |
| 90 | return(page); | 89 | return page; |
| 91 | } | 90 | } |
| 92 | 91 | ||
| 93 | int kernel_thread(int (*fn)(void *), void * arg, unsigned long flags) | 92 | int kernel_thread(int (*fn)(void *), void * arg, unsigned long flags) |
| @@ -98,15 +97,11 @@ int kernel_thread(int (*fn)(void *), void * arg, unsigned long flags) | |||
| 98 | current->thread.request.u.thread.arg = arg; | 97 | current->thread.request.u.thread.arg = arg; |
| 99 | pid = do_fork(CLONE_VM | CLONE_UNTRACED | flags, 0, | 98 | pid = do_fork(CLONE_VM | CLONE_UNTRACED | flags, 0, |
| 100 | ¤t->thread.regs, 0, NULL, NULL); | 99 | ¤t->thread.regs, 0, NULL, NULL); |
| 101 | if(pid < 0) | 100 | return pid; |
| 102 | panic("do_fork failed in kernel_thread, errno = %d", pid); | ||
| 103 | return(pid); | ||
| 104 | } | 101 | } |
| 105 | 102 | ||
| 106 | void set_current(void *t) | 103 | static inline void set_current(struct task_struct *task) |
| 107 | { | 104 | { |
| 108 | struct task_struct *task = t; | ||
| 109 | |||
| 110 | cpu_tasks[task_thread_info(task)->cpu] = ((struct cpu_task) | 105 | cpu_tasks[task_thread_info(task)->cpu] = ((struct cpu_task) |
| 111 | { external_pid(task), task }); | 106 | { external_pid(task), task }); |
| 112 | } | 107 | } |
| @@ -128,14 +123,16 @@ void *_switch_to(void *prev, void *next, void *last) | |||
| 128 | prev= current; | 123 | prev= current; |
| 129 | } while(current->thread.saved_task); | 124 | } while(current->thread.saved_task); |
| 130 | 125 | ||
| 131 | return(current->thread.prev_sched); | 126 | return current->thread.prev_sched; |
| 132 | 127 | ||
| 133 | } | 128 | } |
| 134 | 129 | ||
| 135 | void interrupt_end(void) | 130 | void interrupt_end(void) |
| 136 | { | 131 | { |
| 137 | if(need_resched()) schedule(); | 132 | if(need_resched()) |
| 138 | if(test_tsk_thread_flag(current, TIF_SIGPENDING)) do_signal(); | 133 | schedule(); |
| 134 | if(test_tsk_thread_flag(current, TIF_SIGPENDING)) | ||
| 135 | do_signal(); | ||
| 139 | } | 136 | } |
| 140 | 137 | ||
| 141 | void release_thread(struct task_struct *task) | 138 | void release_thread(struct task_struct *task) |
| @@ -150,7 +147,7 @@ void exit_thread(void) | |||
| 150 | 147 | ||
| 151 | void *get_current(void) | 148 | void *get_current(void) |
| 152 | { | 149 | { |
| 153 | return(current); | 150 | return current; |
| 154 | } | 151 | } |
| 155 | 152 | ||
| 156 | int copy_thread(int nr, unsigned long clone_flags, unsigned long sp, | 153 | int copy_thread(int nr, unsigned long clone_flags, unsigned long sp, |
| @@ -188,15 +185,12 @@ void initial_thread_cb(void (*proc)(void *), void *arg) | |||
| 188 | kmalloc_ok = save_kmalloc_ok; | 185 | kmalloc_ok = save_kmalloc_ok; |
| 189 | } | 186 | } |
| 190 | 187 | ||
| 188 | #ifdef CONFIG_MODE_TT | ||
| 191 | unsigned long stack_sp(unsigned long page) | 189 | unsigned long stack_sp(unsigned long page) |
| 192 | { | 190 | { |
| 193 | return(page + PAGE_SIZE - sizeof(void *)); | 191 | return page + PAGE_SIZE - sizeof(void *); |
| 194 | } | ||
| 195 | |||
| 196 | int current_pid(void) | ||
| 197 | { | ||
| 198 | return(current->pid); | ||
| 199 | } | 192 | } |
| 193 | #endif | ||
| 200 | 194 | ||
| 201 | void default_idle(void) | 195 | void default_idle(void) |
| 202 | { | 196 | { |
| @@ -221,11 +215,6 @@ void cpu_idle(void) | |||
| 221 | CHOOSE_MODE(init_idle_tt(), init_idle_skas()); | 215 | CHOOSE_MODE(init_idle_tt(), init_idle_skas()); |
| 222 | } | 216 | } |
| 223 | 217 | ||
| 224 | int page_size(void) | ||
| 225 | { | ||
| 226 | return(PAGE_SIZE); | ||
| 227 | } | ||
| 228 | |||
| 229 | void *um_virt_to_phys(struct task_struct *task, unsigned long addr, | 218 | void *um_virt_to_phys(struct task_struct *task, unsigned long addr, |
| 230 | pte_t *pte_out) | 219 | pte_t *pte_out) |
| 231 | { | 220 | { |
| @@ -236,68 +225,43 @@ void *um_virt_to_phys(struct task_struct *task, unsigned long addr, | |||
| 236 | pte_t ptent; | 225 | pte_t ptent; |
| 237 | 226 | ||
| 238 | if(task->mm == NULL) | 227 | if(task->mm == NULL) |
| 239 | return(ERR_PTR(-EINVAL)); | 228 | return ERR_PTR(-EINVAL); |
| 240 | pgd = pgd_offset(task->mm, addr); | 229 | pgd = pgd_offset(task->mm, addr); |
| 241 | if(!pgd_present(*pgd)) | 230 | if(!pgd_present(*pgd)) |
| 242 | return(ERR_PTR(-EINVAL)); | 231 | return ERR_PTR(-EINVAL); |
| 243 | 232 | ||
| 244 | pud = pud_offset(pgd, addr); | 233 | pud = pud_offset(pgd, addr); |
| 245 | if(!pud_present(*pud)) | 234 | if(!pud_present(*pud)) |
| 246 | return(ERR_PTR(-EINVAL)); | 235 | return ERR_PTR(-EINVAL); |
| 247 | 236 | ||
| 248 | pmd = pmd_offset(pud, addr); | 237 | pmd = pmd_offset(pud, addr); |
| 249 | if(!pmd_present(*pmd)) | 238 | if(!pmd_present(*pmd)) |
| 250 | return(ERR_PTR(-EINVAL)); | 239 | return ERR_PTR(-EINVAL); |
| 251 | 240 | ||
| 252 | pte = pte_offset_kernel(pmd, addr); | 241 | pte = pte_offset_kernel(pmd, addr); |
| 253 | ptent = *pte; | 242 | ptent = *pte; |
| 254 | if(!pte_present(ptent)) | 243 | if(!pte_present(ptent)) |
| 255 | return(ERR_PTR(-EINVAL)); | 244 | return ERR_PTR(-EINVAL); |
| 256 | 245 | ||
| 257 | if(pte_out != NULL) | 246 | if(pte_out != NULL) |
| 258 | *pte_out = ptent; | 247 | *pte_out = ptent; |
| 259 | return((void *) (pte_val(ptent) & PAGE_MASK) + (addr & ~PAGE_MASK)); | 248 | return (void *) (pte_val(ptent) & PAGE_MASK) + (addr & ~PAGE_MASK); |
| 260 | } | 249 | } |
| 261 | 250 | ||
| 262 | char *current_cmd(void) | 251 | char *current_cmd(void) |
| 263 | { | 252 | { |
| 264 | #if defined(CONFIG_SMP) || defined(CONFIG_HIGHMEM) | 253 | #if defined(CONFIG_SMP) || defined(CONFIG_HIGHMEM) |
| 265 | return("(Unknown)"); | 254 | return "(Unknown)"; |
| 266 | #else | 255 | #else |
| 267 | void *addr = um_virt_to_phys(current, current->mm->arg_start, NULL); | 256 | void *addr = um_virt_to_phys(current, current->mm->arg_start, NULL); |
| 268 | return IS_ERR(addr) ? "(Unknown)": __va((unsigned long) addr); | 257 | return IS_ERR(addr) ? "(Unknown)": __va((unsigned long) addr); |
| 269 | #endif | 258 | #endif |
| 270 | } | 259 | } |
| 271 | 260 | ||
| 272 | void force_sigbus(void) | ||
| 273 | { | ||
| 274 | printk(KERN_ERR "Killing pid %d because of a lack of memory\n", | ||
| 275 | current->pid); | ||
| 276 | lock_kernel(); | ||
| 277 | sigaddset(¤t->pending.signal, SIGBUS); | ||
| 278 | recalc_sigpending(); | ||
| 279 | current->flags |= PF_SIGNALED; | ||
| 280 | do_exit(SIGBUS | 0x80); | ||
| 281 | } | ||
| 282 | |||
| 283 | void dump_thread(struct pt_regs *regs, struct user *u) | 261 | void dump_thread(struct pt_regs *regs, struct user *u) |
| 284 | { | 262 | { |
| 285 | } | 263 | } |
| 286 | 264 | ||
| 287 | void enable_hlt(void) | ||
| 288 | { | ||
| 289 | panic("enable_hlt"); | ||
| 290 | } | ||
| 291 | |||
| 292 | EXPORT_SYMBOL(enable_hlt); | ||
| 293 | |||
| 294 | void disable_hlt(void) | ||
| 295 | { | ||
| 296 | panic("disable_hlt"); | ||
| 297 | } | ||
| 298 | |||
| 299 | EXPORT_SYMBOL(disable_hlt); | ||
| 300 | |||
| 301 | void *um_kmalloc(int size) | 265 | void *um_kmalloc(int size) |
| 302 | { | 266 | { |
| 303 | return kmalloc(size, GFP_KERNEL); | 267 | return kmalloc(size, GFP_KERNEL); |
| @@ -313,36 +277,17 @@ void *um_vmalloc(int size) | |||
| 313 | return vmalloc(size); | 277 | return vmalloc(size); |
| 314 | } | 278 | } |
| 315 | 279 | ||
| 316 | void *um_vmalloc_atomic(int size) | ||
| 317 | { | ||
| 318 | return __vmalloc(size, GFP_ATOMIC | __GFP_HIGHMEM, PAGE_KERNEL); | ||
| 319 | } | ||
| 320 | |||
| 321 | int __cant_sleep(void) { | 280 | int __cant_sleep(void) { |
| 322 | return in_atomic() || irqs_disabled() || in_interrupt(); | 281 | return in_atomic() || irqs_disabled() || in_interrupt(); |
| 323 | /* Is in_interrupt() really needed? */ | 282 | /* Is in_interrupt() really needed? */ |
| 324 | } | 283 | } |
| 325 | 284 | ||
| 326 | unsigned long get_fault_addr(void) | ||
| 327 | { | ||
| 328 | return((unsigned long) current->thread.fault_addr); | ||
| 329 | } | ||
| 330 | |||
| 331 | EXPORT_SYMBOL(get_fault_addr); | ||
| 332 | |||
| 333 | void not_implemented(void) | ||
| 334 | { | ||
| 335 | printk(KERN_DEBUG "Something isn't implemented in here\n"); | ||
| 336 | } | ||
| 337 | |||
| 338 | EXPORT_SYMBOL(not_implemented); | ||
| 339 | |||
| 340 | int user_context(unsigned long sp) | 285 | int user_context(unsigned long sp) |
| 341 | { | 286 | { |
| 342 | unsigned long stack; | 287 | unsigned long stack; |
| 343 | 288 | ||
| 344 | stack = sp & (PAGE_MASK << CONFIG_KERNEL_STACK_ORDER); | 289 | stack = sp & (PAGE_MASK << CONFIG_KERNEL_STACK_ORDER); |
| 345 | return(stack != (unsigned long) current_thread); | 290 | return stack != (unsigned long) current_thread; |
| 346 | } | 291 | } |
| 347 | 292 | ||
| 348 | extern exitcall_t __uml_exitcall_begin, __uml_exitcall_end; | 293 | extern exitcall_t __uml_exitcall_begin, __uml_exitcall_end; |
| @@ -363,22 +308,22 @@ char *uml_strdup(char *string) | |||
| 363 | 308 | ||
| 364 | int copy_to_user_proc(void __user *to, void *from, int size) | 309 | int copy_to_user_proc(void __user *to, void *from, int size) |
| 365 | { | 310 | { |
| 366 | return(copy_to_user(to, from, size)); | 311 | return copy_to_user(to, from, size); |
| 367 | } | 312 | } |
| 368 | 313 | ||
| 369 | int copy_from_user_proc(void *to, void __user *from, int size) | 314 | int copy_from_user_proc(void *to, void __user *from, int size) |
| 370 | { | 315 | { |
| 371 | return(copy_from_user(to, from, size)); | 316 | return copy_from_user(to, from, size); |
| 372 | } | 317 | } |
| 373 | 318 | ||
| 374 | int clear_user_proc(void __user *buf, int size) | 319 | int clear_user_proc(void __user *buf, int size) |
| 375 | { | 320 | { |
| 376 | return(clear_user(buf, size)); | 321 | return clear_user(buf, size); |
| 377 | } | 322 | } |
| 378 | 323 | ||
| 379 | int strlen_user_proc(char __user *str) | 324 | int strlen_user_proc(char __user *str) |
| 380 | { | 325 | { |
| 381 | return(strlen_user(str)); | 326 | return strlen_user(str); |
| 382 | } | 327 | } |
| 383 | 328 | ||
| 384 | int smp_sigio_handler(void) | 329 | int smp_sigio_handler(void) |
| @@ -387,14 +332,14 @@ int smp_sigio_handler(void) | |||
| 387 | int cpu = current_thread->cpu; | 332 | int cpu = current_thread->cpu; |
| 388 | IPI_handler(cpu); | 333 | IPI_handler(cpu); |
| 389 | if(cpu != 0) | 334 | if(cpu != 0) |
| 390 | return(1); | 335 | return 1; |
| 391 | #endif | 336 | #endif |
| 392 | return(0); | 337 | return 0; |
| 393 | } | 338 | } |
| 394 | 339 | ||
| 395 | int cpu(void) | 340 | int cpu(void) |
| 396 | { | 341 | { |
| 397 | return(current_thread->cpu); | 342 | return current_thread->cpu; |
| 398 | } | 343 | } |
| 399 | 344 | ||
| 400 | static atomic_t using_sysemu = ATOMIC_INIT(0); | 345 | static atomic_t using_sysemu = ATOMIC_INIT(0); |
| @@ -443,7 +388,7 @@ int __init make_proc_sysemu(void) | |||
| 443 | if (ent == NULL) | 388 | if (ent == NULL) |
| 444 | { | 389 | { |
| 445 | printk(KERN_WARNING "Failed to register /proc/sysemu\n"); | 390 | printk(KERN_WARNING "Failed to register /proc/sysemu\n"); |
| 446 | return(0); | 391 | return 0; |
| 447 | } | 392 | } |
| 448 | 393 | ||
| 449 | ent->read_proc = proc_read_sysemu; | 394 | ent->read_proc = proc_read_sysemu; |
