x86: PIE executable randomization, uninlining
authorAndrew Morton <[email protected]>
Wed, 30 Jan 2008 12:31:07 +0000 (13:31 +0100)
committerIngo Molnar <[email protected]>
Wed, 30 Jan 2008 12:31:07 +0000 (13:31 +0100)
Cc: "Luck, Tony" <[email protected]>
Cc: Arjan van de Ven <[email protected]>
Cc: Jakub Jelinek <[email protected]>
Cc: Jiri Kosina <[email protected]>
Cc: KAMEZAWA Hiroyuki <[email protected]>
Cc: Roland McGrath <[email protected]>
Signed-off-by: Andrew Morton <[email protected]>
Signed-off-by: Ingo Molnar <[email protected]>
Signed-off-by: Thomas Gleixner <[email protected]>
arch/x86/mm/mmap_64.c

index 65b34f226f149fb64538161c5f2bfe099d73ff1a..119bf34ec5298b070b183caf30d9817df6dfae52 100644 (file)
@@ -42,7 +42,7 @@
 #define MIN_GAP (128*1024*1024)
 #define MAX_GAP (TASK_SIZE/6*5)
 
-static inline unsigned long mmap_base(void)
+static unsigned long mmap_base(void)
 {
        unsigned long gap = current->signal->rlim[RLIMIT_STACK].rlim_cur;
 
@@ -54,7 +54,7 @@ static inline unsigned long mmap_base(void)
        return TASK_SIZE - (gap & PAGE_MASK);
 }
 
-static inline int mmap_is_32(void)
+static int mmap_is_32(void)
 {
 #ifdef CONFIG_IA32_EMULATION
        if (test_thread_flag(TIF_IA32))
@@ -63,7 +63,7 @@ static inline int mmap_is_32(void)
        return 0;
 }
 
-static inline int mmap_is_legacy(void)
+static int mmap_is_legacy(void)
 {
        if (current->personality & ADDR_COMPAT_LAYOUT)
                return 1;