diff options
Diffstat (limited to 'arch')
-rw-r--r-- | arch/um/drivers/random.c | 1 | ||||
-rw-r--r-- | arch/um/include/um_uaccess.h | 4 | ||||
-rw-r--r-- | arch/um/kernel/mem.c | 21 | ||||
-rw-r--r-- | arch/um/kernel/process.c | 8 | ||||
-rw-r--r-- | arch/um/kernel/skas/uaccess.c | 13 | ||||
-rw-r--r-- | arch/um/kernel/tlb.c | 7 | ||||
-rw-r--r-- | arch/um/sys-i386/bug.c | 1 | ||||
-rw-r--r-- | arch/um/sys-i386/ldt.c | 5 |
8 files changed, 43 insertions, 17 deletions
diff --git a/arch/um/drivers/random.c b/arch/um/drivers/random.c index e942e836f995..71f0959c1535 100644 --- a/arch/um/drivers/random.c +++ b/arch/um/drivers/random.c | |||
@@ -5,6 +5,7 @@ | |||
5 | * This software may be used and distributed according to the terms | 5 | * This software may be used and distributed according to the terms |
6 | * of the GNU General Public License, incorporated herein by reference. | 6 | * of the GNU General Public License, incorporated herein by reference. |
7 | */ | 7 | */ |
8 | #include <linux/sched.h> | ||
8 | #include <linux/module.h> | 9 | #include <linux/module.h> |
9 | #include <linux/fs.h> | 10 | #include <linux/fs.h> |
10 | #include <linux/miscdevice.h> | 11 | #include <linux/miscdevice.h> |
diff --git a/arch/um/include/um_uaccess.h b/arch/um/include/um_uaccess.h index fdfc06b85605..2b6fc8e0f071 100644 --- a/arch/um/include/um_uaccess.h +++ b/arch/um/include/um_uaccess.h | |||
@@ -6,7 +6,9 @@ | |||
6 | #ifndef __ARCH_UM_UACCESS_H | 6 | #ifndef __ARCH_UM_UACCESS_H |
7 | #define __ARCH_UM_UACCESS_H | 7 | #define __ARCH_UM_UACCESS_H |
8 | 8 | ||
9 | #include "asm/fixmap.h" | 9 | #include <asm/elf.h> |
10 | #include <asm/fixmap.h> | ||
11 | #include "sysdep/archsetjmp.h" | ||
10 | 12 | ||
11 | #define __under_task_size(addr, size) \ | 13 | #define __under_task_size(addr, size) \ |
12 | (((unsigned long) (addr) < TASK_SIZE) && \ | 14 | (((unsigned long) (addr) < TASK_SIZE) && \ |
diff --git a/arch/um/kernel/mem.c b/arch/um/kernel/mem.c index 96072e27a0e7..1f8f0c195173 100644 --- a/arch/um/kernel/mem.c +++ b/arch/um/kernel/mem.c | |||
@@ -152,7 +152,7 @@ pgprot_t kmap_prot; | |||
152 | 152 | ||
153 | #define kmap_get_fixmap_pte(vaddr) \ | 153 | #define kmap_get_fixmap_pte(vaddr) \ |
154 | pte_offset_kernel(pmd_offset(pud_offset(pgd_offset_k(vaddr), (vaddr)),\ | 154 | pte_offset_kernel(pmd_offset(pud_offset(pgd_offset_k(vaddr), (vaddr)),\ |
155 | (vaddr)), (vaddr)) | 155 | (vaddr)), (vaddr)) |
156 | 156 | ||
157 | static void __init kmap_init(void) | 157 | static void __init kmap_init(void) |
158 | { | 158 | { |
@@ -278,7 +278,8 @@ struct page *arch_validate(struct page *page, gfp_t mask, int order) | |||
278 | goto again; | 278 | goto again; |
279 | } | 279 | } |
280 | 280 | ||
281 | /* This can't do anything because nothing in the kernel image can be freed | 281 | /* |
282 | * This can't do anything because nothing in the kernel image can be freed | ||
282 | * since it's not in kernel physical memory. | 283 | * since it's not in kernel physical memory. |
283 | */ | 284 | */ |
284 | 285 | ||
@@ -331,9 +332,7 @@ void show_mem(void) | |||
331 | printk("%d pages swap cached\n", cached); | 332 | printk("%d pages swap cached\n", cached); |
332 | } | 333 | } |
333 | 334 | ||
334 | /* | 335 | /* Allocate and free page tables. */ |
335 | * Allocate and free page tables. | ||
336 | */ | ||
337 | 336 | ||
338 | pgd_t *pgd_alloc(struct mm_struct *mm) | 337 | pgd_t *pgd_alloc(struct mm_struct *mm) |
339 | { | 338 | { |
@@ -368,3 +367,15 @@ struct page *pte_alloc_one(struct mm_struct *mm, unsigned long address) | |||
368 | pte = alloc_page(GFP_KERNEL|__GFP_REPEAT|__GFP_ZERO); | 367 | pte = alloc_page(GFP_KERNEL|__GFP_REPEAT|__GFP_ZERO); |
369 | return pte; | 368 | return pte; |
370 | } | 369 | } |
370 | |||
371 | #ifdef CONFIG_3_LEVEL_PGTABLES | ||
372 | pmd_t *pmd_alloc_one(struct mm_struct *mm, unsigned long address) | ||
373 | { | ||
374 | pmd_t *pmd = (pmd_t *) __get_free_page(GFP_KERNEL); | ||
375 | |||
376 | if (pmd) | ||
377 | memset(pmd, 0, PAGE_SIZE); | ||
378 | |||
379 | return pmd; | ||
380 | } | ||
381 | #endif | ||
diff --git a/arch/um/kernel/process.c b/arch/um/kernel/process.c index 541a2bf331c5..570471218086 100644 --- a/arch/um/kernel/process.c +++ b/arch/um/kernel/process.c | |||
@@ -446,3 +446,11 @@ unsigned long get_wchan(struct task_struct *p) | |||
446 | 446 | ||
447 | return 0; | 447 | return 0; |
448 | } | 448 | } |
449 | |||
450 | int elf_core_copy_fpregs(struct task_struct *t, elf_fpregset_t *fpu) | ||
451 | { | ||
452 | int cpu = current_thread_info()->cpu; | ||
453 | |||
454 | return save_fp_registers(userspace_pid[cpu], (unsigned long *) fpu); | ||
455 | } | ||
456 | |||
diff --git a/arch/um/kernel/skas/uaccess.c b/arch/um/kernel/skas/uaccess.c index 302425b03d49..d145565b5f4b 100644 --- a/arch/um/kernel/skas/uaccess.c +++ b/arch/um/kernel/skas/uaccess.c | |||
@@ -3,12 +3,13 @@ | |||
3 | * Licensed under the GPL | 3 | * Licensed under the GPL |
4 | */ | 4 | */ |
5 | 5 | ||
6 | #include "linux/err.h" | 6 | #include <linux/err.h> |
7 | #include "linux/highmem.h" | 7 | #include <linux/highmem.h> |
8 | #include "linux/mm.h" | 8 | #include <linux/mm.h> |
9 | #include "asm/current.h" | 9 | #include <linux/sched.h> |
10 | #include "asm/page.h" | 10 | #include <asm/current.h> |
11 | #include "asm/pgtable.h" | 11 | #include <asm/page.h> |
12 | #include <asm/pgtable.h> | ||
12 | #include "kern_util.h" | 13 | #include "kern_util.h" |
13 | #include "os.h" | 14 | #include "os.h" |
14 | 15 | ||
diff --git a/arch/um/kernel/tlb.c b/arch/um/kernel/tlb.c index f4a0e407eee4..96e097879f5b 100644 --- a/arch/um/kernel/tlb.c +++ b/arch/um/kernel/tlb.c | |||
@@ -3,9 +3,10 @@ | |||
3 | * Licensed under the GPL | 3 | * Licensed under the GPL |
4 | */ | 4 | */ |
5 | 5 | ||
6 | #include "linux/mm.h" | 6 | #include <linux/mm.h> |
7 | #include "asm/pgtable.h" | 7 | #include <linux/sched.h> |
8 | #include "asm/tlbflush.h" | 8 | #include <asm/pgtable.h> |
9 | #include <asm/tlbflush.h> | ||
9 | #include "as-layout.h" | 10 | #include "as-layout.h" |
10 | #include "mem_user.h" | 11 | #include "mem_user.h" |
11 | #include "os.h" | 12 | #include "os.h" |
diff --git a/arch/um/sys-i386/bug.c b/arch/um/sys-i386/bug.c index a4360b5207db..8d4f273f1219 100644 --- a/arch/um/sys-i386/bug.c +++ b/arch/um/sys-i386/bug.c | |||
@@ -4,6 +4,7 @@ | |||
4 | */ | 4 | */ |
5 | 5 | ||
6 | #include <linux/uaccess.h> | 6 | #include <linux/uaccess.h> |
7 | #include <asm/errno.h> | ||
7 | 8 | ||
8 | /* Mostly copied from i386/x86_86 - eliminated the eip < PAGE_OFFSET because | 9 | /* Mostly copied from i386/x86_86 - eliminated the eip < PAGE_OFFSET because |
9 | * that's not relevant in skas mode. | 10 | * that's not relevant in skas mode. |
diff --git a/arch/um/sys-i386/ldt.c b/arch/um/sys-i386/ldt.c index 67c0958eb984..505ed5c9a68d 100644 --- a/arch/um/sys-i386/ldt.c +++ b/arch/um/sys-i386/ldt.c | |||
@@ -3,8 +3,9 @@ | |||
3 | * Licensed under the GPL | 3 | * Licensed under the GPL |
4 | */ | 4 | */ |
5 | 5 | ||
6 | #include "linux/mm.h" | 6 | #include <linux/mm.h> |
7 | #include "asm/unistd.h" | 7 | #include <linux/sched.h> |
8 | #include <asm/unistd.h> | ||
8 | #include "os.h" | 9 | #include "os.h" |
9 | #include "proc_mm.h" | 10 | #include "proc_mm.h" |
10 | #include "skas.h" | 11 | #include "skas.h" |