diff options
author | Linus Torvalds <torvalds@linux-foundation.org> | 2012-10-09 22:15:20 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2012-10-09 22:15:20 -0400 |
commit | f59b51fe3d3092c08d7d554ecb40db24011b2ebc (patch) | |
tree | f19a5cb72adda3963f83609dbe2314620a4cf63e /arch/um/include/asm | |
parent | aac2b1f5747ea34696d0da5bdc4d8247aa6437af (diff) | |
parent | 062d52672446014222942cae6934d97769b329f0 (diff) |
Merge branch 'for-linus-37rc1' of git://git.kernel.org/pub/scm/linux/kernel/git/rw/uml
Pull UML changes from Richard Weinberger:
"UML receives this time only cleanups.
The most outstanding change is the 'include "foo.h"' do 'include
<foo.h>' conversion done by Al Viro.
It touches many files, that's why the diffstat is rather big."
* 'for-linus-37rc1' of git://git.kernel.org/pub/scm/linux/kernel/git/rw/uml:
typo in UserModeLinux-HOWTO
hppfs: fix the return value of get_inode()
hostfs: drop vmtruncate
um: get rid of pointless include "..." where include <...> will do
um: move sysrq.h out of include/shared
um/x86: merge 32 and 64 bit variants of ptrace.h
um/x86: merge 32 and 64bit variants of checksum.h
Diffstat (limited to 'arch/um/include/asm')
-rw-r--r-- | arch/um/include/asm/dma.h | 2 | ||||
-rw-r--r-- | arch/um/include/asm/mmu.h | 2 | ||||
-rw-r--r-- | arch/um/include/asm/page.h | 2 | ||||
-rw-r--r-- | arch/um/include/asm/pgtable.h | 4 | ||||
-rw-r--r-- | arch/um/include/asm/processor-generic.h | 6 | ||||
-rw-r--r-- | arch/um/include/asm/ptrace-generic.h | 2 | ||||
-rw-r--r-- | arch/um/include/asm/smp.h | 6 | ||||
-rw-r--r-- | arch/um/include/asm/sysrq.h | 7 |
8 files changed, 19 insertions, 12 deletions
diff --git a/arch/um/include/asm/dma.h b/arch/um/include/asm/dma.h index 9f6139a8a525..f88c5860520b 100644 --- a/arch/um/include/asm/dma.h +++ b/arch/um/include/asm/dma.h | |||
@@ -1,7 +1,7 @@ | |||
1 | #ifndef __UM_DMA_H | 1 | #ifndef __UM_DMA_H |
2 | #define __UM_DMA_H | 2 | #define __UM_DMA_H |
3 | 3 | ||
4 | #include "asm/io.h" | 4 | #include <asm/io.h> |
5 | 5 | ||
6 | extern unsigned long uml_physmem; | 6 | extern unsigned long uml_physmem; |
7 | 7 | ||
diff --git a/arch/um/include/asm/mmu.h b/arch/um/include/asm/mmu.h index 53e8b498ebba..da705448590f 100644 --- a/arch/um/include/asm/mmu.h +++ b/arch/um/include/asm/mmu.h | |||
@@ -6,7 +6,7 @@ | |||
6 | #ifndef __ARCH_UM_MMU_H | 6 | #ifndef __ARCH_UM_MMU_H |
7 | #define __ARCH_UM_MMU_H | 7 | #define __ARCH_UM_MMU_H |
8 | 8 | ||
9 | #include "mm_id.h" | 9 | #include <mm_id.h> |
10 | #include <asm/mm_context.h> | 10 | #include <asm/mm_context.h> |
11 | 11 | ||
12 | typedef struct mm_context { | 12 | typedef struct mm_context { |
diff --git a/arch/um/include/asm/page.h b/arch/um/include/asm/page.h index 7cfc3cedce84..5ff53d9185f7 100644 --- a/arch/um/include/asm/page.h +++ b/arch/um/include/asm/page.h | |||
@@ -99,7 +99,7 @@ extern unsigned long uml_physmem; | |||
99 | 99 | ||
100 | #define __va_space (8*1024*1024) | 100 | #define __va_space (8*1024*1024) |
101 | 101 | ||
102 | #include "mem.h" | 102 | #include <mem.h> |
103 | 103 | ||
104 | /* Cast to unsigned long before casting to void * to avoid a warning from | 104 | /* Cast to unsigned long before casting to void * to avoid a warning from |
105 | * mmap_kmem about cutting a long long down to a void *. Not sure that | 105 | * mmap_kmem about cutting a long long down to a void *. Not sure that |
diff --git a/arch/um/include/asm/pgtable.h b/arch/um/include/asm/pgtable.h index 5888f1b83477..ae02909a1875 100644 --- a/arch/um/include/asm/pgtable.h +++ b/arch/um/include/asm/pgtable.h | |||
@@ -23,9 +23,9 @@ | |||
23 | pte_present gives true */ | 23 | pte_present gives true */ |
24 | 24 | ||
25 | #ifdef CONFIG_3_LEVEL_PGTABLES | 25 | #ifdef CONFIG_3_LEVEL_PGTABLES |
26 | #include "asm/pgtable-3level.h" | 26 | #include <asm/pgtable-3level.h> |
27 | #else | 27 | #else |
28 | #include "asm/pgtable-2level.h" | 28 | #include <asm/pgtable-2level.h> |
29 | #endif | 29 | #endif |
30 | 30 | ||
31 | extern pgd_t swapper_pg_dir[PTRS_PER_PGD]; | 31 | extern pgd_t swapper_pg_dir[PTRS_PER_PGD]; |
diff --git a/arch/um/include/asm/processor-generic.h b/arch/um/include/asm/processor-generic.h index 33a6a2423bd2..24e97be814bc 100644 --- a/arch/um/include/asm/processor-generic.h +++ b/arch/um/include/asm/processor-generic.h | |||
@@ -10,9 +10,9 @@ struct pt_regs; | |||
10 | 10 | ||
11 | struct task_struct; | 11 | struct task_struct; |
12 | 12 | ||
13 | #include "asm/ptrace.h" | 13 | #include <asm/ptrace.h> |
14 | #include "registers.h" | 14 | #include <registers.h> |
15 | #include "sysdep/archsetjmp.h" | 15 | #include <sysdep/archsetjmp.h> |
16 | 16 | ||
17 | #include <linux/prefetch.h> | 17 | #include <linux/prefetch.h> |
18 | 18 | ||
diff --git a/arch/um/include/asm/ptrace-generic.h b/arch/um/include/asm/ptrace-generic.h index 442f1d025dc2..cb9b3c47ca8e 100644 --- a/arch/um/include/asm/ptrace-generic.h +++ b/arch/um/include/asm/ptrace-generic.h | |||
@@ -9,7 +9,7 @@ | |||
9 | #ifndef __ASSEMBLY__ | 9 | #ifndef __ASSEMBLY__ |
10 | 10 | ||
11 | #include <asm/ptrace-abi.h> | 11 | #include <asm/ptrace-abi.h> |
12 | #include "sysdep/ptrace.h" | 12 | #include <sysdep/ptrace.h> |
13 | 13 | ||
14 | struct pt_regs { | 14 | struct pt_regs { |
15 | struct uml_pt_regs regs; | 15 | struct uml_pt_regs regs; |
diff --git a/arch/um/include/asm/smp.h b/arch/um/include/asm/smp.h index 4a4b09d4f366..e4507938d8cf 100644 --- a/arch/um/include/asm/smp.h +++ b/arch/um/include/asm/smp.h | |||
@@ -3,9 +3,9 @@ | |||
3 | 3 | ||
4 | #ifdef CONFIG_SMP | 4 | #ifdef CONFIG_SMP |
5 | 5 | ||
6 | #include "linux/bitops.h" | 6 | #include <linux/bitops.h> |
7 | #include "asm/current.h" | 7 | #include <asm/current.h> |
8 | #include "linux/cpumask.h" | 8 | #include <linux/cpumask.h> |
9 | 9 | ||
10 | #define raw_smp_processor_id() (current_thread->cpu) | 10 | #define raw_smp_processor_id() (current_thread->cpu) |
11 | 11 | ||
diff --git a/arch/um/include/asm/sysrq.h b/arch/um/include/asm/sysrq.h new file mode 100644 index 000000000000..c8d332b56b98 --- /dev/null +++ b/arch/um/include/asm/sysrq.h | |||
@@ -0,0 +1,7 @@ | |||
1 | #ifndef __UM_SYSRQ_H | ||
2 | #define __UM_SYSRQ_H | ||
3 | |||
4 | struct task_struct; | ||
5 | extern void show_trace(struct task_struct* task, unsigned long *stack); | ||
6 | |||
7 | #endif | ||