diff options
author | Jeff Dike <jdike@addtoit.com> | 2005-06-25 14:55:23 -0700 |
---|---|---|
committer | Linus Torvalds <torvalds@ppc970.osdl.org> | 2005-06-25 16:24:35 -0700 |
commit | 026549d28469f7d4ca7e5a4707f0d2dc4f2c164c (patch) | |
tree | c616d69c9f70c9fdecae42a3d97009572cc82e07 /arch/um/kernel/main.c | |
parent | a6f4e3cf75538a75ee4fab620e3c8466f2154458 (diff) | |
download | linux-stable-026549d28469f7d4ca7e5a4707f0d2dc4f2c164c.tar.gz linux-stable-026549d28469f7d4ca7e5a4707f0d2dc4f2c164c.tar.bz2 linux-stable-026549d28469f7d4ca7e5a4707f0d2dc4f2c164c.zip |
[PATCH] uml: always disable kmalloc during shutdown
kmalloc wasn't being disabled during panic. This patch ensures that, no
matter how UML is exiting, it is disabled. This matters because part of the
cleanup is to remove the umid file, which involves readdir, which calls
malloc. This must map to libc malloc, rather than kmalloc or vmalloc.
Signed-off-by: Jeff Dike <jdike@addtoit.com>
Cc: Paolo Giarrusso <blaisorblade@yahoo.it>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
Diffstat (limited to 'arch/um/kernel/main.c')
-rw-r--r-- | arch/um/kernel/main.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/arch/um/kernel/main.c b/arch/um/kernel/main.c index e59f58152678..1e1a87f1c510 100644 --- a/arch/um/kernel/main.c +++ b/arch/um/kernel/main.c @@ -69,7 +69,6 @@ static __init void do_uml_initcalls(void) static void last_ditch_exit(int sig) { - kmalloc_ok = 0; signal(SIGINT, SIG_DFL); signal(SIGTERM, SIG_DFL); signal(SIGHUP, SIG_DFL); |