diff options
author | Russell King <rmk+kernel@arm.linux.org.uk> | 2010-07-31 09:20:16 -0400 |
---|---|---|
committer | Russell King <rmk+kernel@arm.linux.org.uk> | 2010-07-31 09:20:16 -0400 |
commit | 7b70c4275f28702b76b273c8534c38f8313812e9 (patch) | |
tree | 1df2229ca02466bd1adda814ac5c37aa0a597db1 /arch/arm/kernel/process.c | |
parent | ceb0885d3b01bb2e2f18765770e212914f2864be (diff) | |
parent | a20df564d15bd28e3df24e1c65b885bd74d23f17 (diff) |
Merge branch 'devel-stable' into devel
Conflicts:
arch/arm/kernel/entry-armv.S
arch/arm/kernel/setup.c
arch/arm/mm/init.c
Diffstat (limited to 'arch/arm/kernel/process.c')
-rw-r--r-- | arch/arm/kernel/process.c | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/arch/arm/kernel/process.c b/arch/arm/kernel/process.c index 2e2ec97cc50c..401e38be1f78 100644 --- a/arch/arm/kernel/process.c +++ b/arch/arm/kernel/process.c | |||
@@ -28,6 +28,7 @@ | |||
28 | #include <linux/tick.h> | 28 | #include <linux/tick.h> |
29 | #include <linux/utsname.h> | 29 | #include <linux/utsname.h> |
30 | #include <linux/uaccess.h> | 30 | #include <linux/uaccess.h> |
31 | #include <linux/random.h> | ||
31 | 32 | ||
32 | #include <asm/cacheflush.h> | 33 | #include <asm/cacheflush.h> |
33 | #include <asm/leds.h> | 34 | #include <asm/leds.h> |
@@ -37,6 +38,12 @@ | |||
37 | #include <asm/stacktrace.h> | 38 | #include <asm/stacktrace.h> |
38 | #include <asm/mach/time.h> | 39 | #include <asm/mach/time.h> |
39 | 40 | ||
41 | #ifdef CONFIG_CC_STACKPROTECTOR | ||
42 | #include <linux/stackprotector.h> | ||
43 | unsigned long __stack_chk_guard __read_mostly; | ||
44 | EXPORT_SYMBOL(__stack_chk_guard); | ||
45 | #endif | ||
46 | |||
40 | static const char *processor_modes[] = { | 47 | static const char *processor_modes[] = { |
41 | "USER_26", "FIQ_26" , "IRQ_26" , "SVC_26" , "UK4_26" , "UK5_26" , "UK6_26" , "UK7_26" , | 48 | "USER_26", "FIQ_26" , "IRQ_26" , "SVC_26" , "UK4_26" , "UK5_26" , "UK6_26" , "UK7_26" , |
42 | "UK8_26" , "UK9_26" , "UK10_26", "UK11_26", "UK12_26", "UK13_26", "UK14_26", "UK15_26", | 49 | "UK8_26" , "UK9_26" , "UK10_26", "UK11_26", "UK12_26", "UK13_26", "UK14_26", "UK15_26", |
@@ -445,3 +452,9 @@ unsigned long get_wchan(struct task_struct *p) | |||
445 | } while (count ++ < 16); | 452 | } while (count ++ < 16); |
446 | return 0; | 453 | return 0; |
447 | } | 454 | } |
455 | |||
456 | unsigned long arch_randomize_brk(struct mm_struct *mm) | ||
457 | { | ||
458 | unsigned long range_end = mm->brk + 0x02000000; | ||
459 | return randomize_range(mm->brk, range_end, 0) ? : mm->brk; | ||
460 | } | ||