diff options
-rw-r--r-- | arch/powerpc/kernel/vdso.c | 2 | ||||
-rw-r--r-- | arch/s390/kernel/vdso.c | 2 | ||||
-rw-r--r-- | arch/sh/kernel/vsyscall/vsyscall.c | 2 | ||||
-rw-r--r-- | arch/x86/mm/init_64.c | 8 | ||||
-rw-r--r-- | arch/x86/vdso/vdso32-setup.c | 2 | ||||
-rw-r--r-- | include/linux/mm.h | 6 | ||||
-rw-r--r-- | kernel/kallsyms.c | 4 | ||||
-rw-r--r-- | mm/memory.c | 2 | ||||
-rw-r--r-- | mm/nommu.c | 2 |
9 files changed, 15 insertions, 15 deletions
diff --git a/arch/powerpc/kernel/vdso.c b/arch/powerpc/kernel/vdso.c index 467aa9ecbf9d..142ab1008c3b 100644 --- a/arch/powerpc/kernel/vdso.c +++ b/arch/powerpc/kernel/vdso.c | |||
@@ -820,7 +820,7 @@ static int __init vdso_init(void) | |||
820 | } | 820 | } |
821 | arch_initcall(vdso_init); | 821 | arch_initcall(vdso_init); |
822 | 822 | ||
823 | int in_gate_area_no_task(unsigned long addr) | 823 | int in_gate_area_no_mm(unsigned long addr) |
824 | { | 824 | { |
825 | return 0; | 825 | return 0; |
826 | } | 826 | } |
diff --git a/arch/s390/kernel/vdso.c b/arch/s390/kernel/vdso.c index 9006e966ef00..d73630b4fe1d 100644 --- a/arch/s390/kernel/vdso.c +++ b/arch/s390/kernel/vdso.c | |||
@@ -337,7 +337,7 @@ static int __init vdso_init(void) | |||
337 | } | 337 | } |
338 | arch_initcall(vdso_init); | 338 | arch_initcall(vdso_init); |
339 | 339 | ||
340 | int in_gate_area_no_task(unsigned long addr) | 340 | int in_gate_area_no_mm(unsigned long addr) |
341 | { | 341 | { |
342 | return 0; | 342 | return 0; |
343 | } | 343 | } |
diff --git a/arch/sh/kernel/vsyscall/vsyscall.c b/arch/sh/kernel/vsyscall/vsyscall.c index 62c36a8961d3..1d6d51a1ce79 100644 --- a/arch/sh/kernel/vsyscall/vsyscall.c +++ b/arch/sh/kernel/vsyscall/vsyscall.c | |||
@@ -104,7 +104,7 @@ int in_gate_area(struct mm_struct *mm, unsigned long address) | |||
104 | return 0; | 104 | return 0; |
105 | } | 105 | } |
106 | 106 | ||
107 | int in_gate_area_no_task(unsigned long address) | 107 | int in_gate_area_no_mm(unsigned long address) |
108 | { | 108 | { |
109 | return 0; | 109 | return 0; |
110 | } | 110 | } |
diff --git a/arch/x86/mm/init_64.c b/arch/x86/mm/init_64.c index 43c441622c89..835393c85546 100644 --- a/arch/x86/mm/init_64.c +++ b/arch/x86/mm/init_64.c | |||
@@ -881,11 +881,11 @@ int in_gate_area(struct mm_struct *mm, unsigned long addr) | |||
881 | } | 881 | } |
882 | 882 | ||
883 | /* | 883 | /* |
884 | * Use this when you have no reliable task/vma, typically from interrupt | 884 | * Use this when you have no reliable mm, typically from interrupt |
885 | * context. It is less reliable than using the task's vma and may give | 885 | * context. It is less reliable than using a task's mm and may give |
886 | * false positives: | 886 | * false positives. |
887 | */ | 887 | */ |
888 | int in_gate_area_no_task(unsigned long addr) | 888 | int in_gate_area_no_mm(unsigned long addr) |
889 | { | 889 | { |
890 | return (addr >= VSYSCALL_START) && (addr < VSYSCALL_END); | 890 | return (addr >= VSYSCALL_START) && (addr < VSYSCALL_END); |
891 | } | 891 | } |
diff --git a/arch/x86/vdso/vdso32-setup.c b/arch/x86/vdso/vdso32-setup.c index f849bb29fda1..468d591dde31 100644 --- a/arch/x86/vdso/vdso32-setup.c +++ b/arch/x86/vdso/vdso32-setup.c | |||
@@ -435,7 +435,7 @@ int in_gate_area(struct mm_struct *mm, unsigned long addr) | |||
435 | return vma && addr >= vma->vm_start && addr < vma->vm_end; | 435 | return vma && addr >= vma->vm_start && addr < vma->vm_end; |
436 | } | 436 | } |
437 | 437 | ||
438 | int in_gate_area_no_task(unsigned long addr) | 438 | int in_gate_area_no_mm(unsigned long addr) |
439 | { | 439 | { |
440 | return 0; | 440 | return 0; |
441 | } | 441 | } |
diff --git a/include/linux/mm.h b/include/linux/mm.h index 5c6d916cd302..9d6efefdde50 100644 --- a/include/linux/mm.h +++ b/include/linux/mm.h | |||
@@ -1580,11 +1580,11 @@ static inline bool kernel_page_present(struct page *page) { return true; } | |||
1580 | 1580 | ||
1581 | extern struct vm_area_struct *get_gate_vma(struct mm_struct *mm); | 1581 | extern struct vm_area_struct *get_gate_vma(struct mm_struct *mm); |
1582 | #ifdef __HAVE_ARCH_GATE_AREA | 1582 | #ifdef __HAVE_ARCH_GATE_AREA |
1583 | int in_gate_area_no_task(unsigned long addr); | 1583 | int in_gate_area_no_mm(unsigned long addr); |
1584 | int in_gate_area(struct mm_struct *mm, unsigned long addr); | 1584 | int in_gate_area(struct mm_struct *mm, unsigned long addr); |
1585 | #else | 1585 | #else |
1586 | int in_gate_area_no_task(unsigned long addr); | 1586 | int in_gate_area_no_mm(unsigned long addr); |
1587 | #define in_gate_area(mm, addr) ({(void)mm; in_gate_area_no_task(addr);}) | 1587 | #define in_gate_area(mm, addr) ({(void)mm; in_gate_area_no_mm(addr);}) |
1588 | #endif /* __HAVE_ARCH_GATE_AREA */ | 1588 | #endif /* __HAVE_ARCH_GATE_AREA */ |
1589 | 1589 | ||
1590 | int drop_caches_sysctl_handler(struct ctl_table *, int, | 1590 | int drop_caches_sysctl_handler(struct ctl_table *, int, |
diff --git a/kernel/kallsyms.c b/kernel/kallsyms.c index 6f6d091b5757..b9d0fd1d21c7 100644 --- a/kernel/kallsyms.c +++ b/kernel/kallsyms.c | |||
@@ -64,14 +64,14 @@ static inline int is_kernel_text(unsigned long addr) | |||
64 | if ((addr >= (unsigned long)_stext && addr <= (unsigned long)_etext) || | 64 | if ((addr >= (unsigned long)_stext && addr <= (unsigned long)_etext) || |
65 | arch_is_kernel_text(addr)) | 65 | arch_is_kernel_text(addr)) |
66 | return 1; | 66 | return 1; |
67 | return in_gate_area_no_task(addr); | 67 | return in_gate_area_no_mm(addr); |
68 | } | 68 | } |
69 | 69 | ||
70 | static inline int is_kernel(unsigned long addr) | 70 | static inline int is_kernel(unsigned long addr) |
71 | { | 71 | { |
72 | if (addr >= (unsigned long)_stext && addr <= (unsigned long)_end) | 72 | if (addr >= (unsigned long)_stext && addr <= (unsigned long)_end) |
73 | return 1; | 73 | return 1; |
74 | return in_gate_area_no_task(addr); | 74 | return in_gate_area_no_mm(addr); |
75 | } | 75 | } |
76 | 76 | ||
77 | static int is_ksym_addr(unsigned long addr) | 77 | static int is_ksym_addr(unsigned long addr) |
diff --git a/mm/memory.c b/mm/memory.c index 931d479b80c2..5f5b5de5a40e 100644 --- a/mm/memory.c +++ b/mm/memory.c | |||
@@ -3505,7 +3505,7 @@ struct vm_area_struct *get_gate_vma(struct mm_struct *mm) | |||
3505 | #endif | 3505 | #endif |
3506 | } | 3506 | } |
3507 | 3507 | ||
3508 | int in_gate_area_no_task(unsigned long addr) | 3508 | int in_gate_area_no_mm(unsigned long addr) |
3509 | { | 3509 | { |
3510 | #ifdef AT_SYSINFO_EHDR | 3510 | #ifdef AT_SYSINFO_EHDR |
3511 | if ((addr >= FIXADDR_USER_START) && (addr < FIXADDR_USER_END)) | 3511 | if ((addr >= FIXADDR_USER_START) && (addr < FIXADDR_USER_END)) |
diff --git a/mm/nommu.c b/mm/nommu.c index f59e1424d3db..e629143f9440 100644 --- a/mm/nommu.c +++ b/mm/nommu.c | |||
@@ -1963,7 +1963,7 @@ error: | |||
1963 | return -ENOMEM; | 1963 | return -ENOMEM; |
1964 | } | 1964 | } |
1965 | 1965 | ||
1966 | int in_gate_area_no_task(unsigned long addr) | 1966 | int in_gate_area_no_mm(unsigned long addr) |
1967 | { | 1967 | { |
1968 | return 0; | 1968 | return 0; |
1969 | } | 1969 | } |