[PATCH] x86_64: Change default setting for noexec32 to match i386 kernel
authorAndi Kleen <ak@suse.de>
Sat, 25 Mar 2006 15:31:04 +0000 (16:31 +0100)
committerLinus Torvalds <torvalds@g5.osdl.org>
Sat, 25 Mar 2006 17:10:56 +0000 (09:10 -0800)
This means i386 processes compiled with a recent compiler will get non
executable heap by default now.  This is the same default as a 32bit PAE
kernel would use on a NX enabled CPU.

Signed-off-by: Andi Kleen <ak@suse.de>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
arch/x86_64/kernel/setup64.c

index 356b462cb0ecb620b0766e2b3af27cc2e65feb8b..eabdb63fec310135c51bb661dcdc4b2f1bfbee7d 100644 (file)
@@ -59,7 +59,7 @@ int __init nonx_setup(char *str)
 } 
 __setup("noexec=", nonx_setup);        /* parsed early actually */
 
-int force_personality32 = READ_IMPLIES_EXEC;
+int force_personality32 = 0; 
 
 /* noexec32=on|off
 Control non executable heap for 32bit processes.
This page took 0.037304 seconds and 5 git commands to generate.