aboutsummaryrefslogtreecommitdiffstats
path: root/arch/x86/kernel/process_32.c
diff options
context:
space:
mode:
authorAmerigo Wang <amwang@redhat.com>2009-05-11 22:05:28 -0400
committerIngo Molnar <mingo@elte.hu>2009-05-12 11:13:45 +0200
commit9d62dcdfa6f6fc843f7d9b494bcd48f00b94f883 (patch)
treec319c1053b2b72b4d5eb29f87995f0e93c3ada51 /arch/x86/kernel/process_32.c
parentx86: use sparse_memory_present_with_active_regions() on UMA (diff)
downloadlinux-dev-9d62dcdfa6f6fc843f7d9b494bcd48f00b94f883.tar.xz
linux-dev-9d62dcdfa6f6fc843f7d9b494bcd48f00b94f883.zip
x86: merge process.c a bit
Merge arch_align_stack() and arch_randomize_brk(), since they are the same. Tested on x86_64. [ Impact: cleanup ] Signed-off-by: Amerigo Wang <amwang@redhat.com> Signed-off-by: Ingo Molnar <mingo@elte.hu>
Diffstat (limited to 'arch/x86/kernel/process_32.c')
-rw-r--r--arch/x86/kernel/process_32.c13
1 files changed, 0 insertions, 13 deletions
diff --git a/arch/x86/kernel/process_32.c b/arch/x86/kernel/process_32.c
index 76f8f84043a2..a3bb049ad082 100644
--- a/arch/x86/kernel/process_32.c
+++ b/arch/x86/kernel/process_32.c
@@ -33,7 +33,6 @@
#include <linux/module.h>
#include <linux/kallsyms.h>
#include <linux/ptrace.h>
-#include <linux/random.h>
#include <linux/personality.h>
#include <linux/tick.h>
#include <linux/percpu.h>
@@ -497,15 +496,3 @@ unsigned long get_wchan(struct task_struct *p)
return 0;
}
-unsigned long arch_align_stack(unsigned long sp)
-{
- if (!(current->personality & ADDR_NO_RANDOMIZE) && randomize_va_space)
- sp -= get_random_int() % 8192;
- return sp & ~0xf;
-}
-
-unsigned long arch_randomize_brk(struct mm_struct *mm)
-{
- unsigned long range_end = mm->brk + 0x02000000;
- return randomize_range(mm->brk, range_end, 0) ? : mm->brk;
-}