diff options
author | Jeff Dike <jdike@addtoit.com> | 2007-10-16 10:27:08 +0200 |
---|---|---|
committer | Linus Torvalds <torvalds@woody.linux-foundation.org> | 2007-10-16 18:43:06 +0200 |
commit | 28078e8f9790be0854a54f06de822689ab571944 (patch) | |
tree | 0eb88c18906541020c79b0411d17b988ed5fcedf /arch/um/kernel/skas | |
parent | uml: rename pt_regs general-purpose register file (diff) | |
download | linux-28078e8f9790be0854a54f06de822689ab571944.tar.xz linux-28078e8f9790be0854a54f06de822689ab571944.zip |
uml: free LDT state on process exit
The space allocated for a process LDT wasn't being freed when the process
exited.
Signed-off-by: Jeff Dike <jdike@linux.intel.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'arch/um/kernel/skas')
-rw-r--r-- | arch/um/kernel/skas/mmu.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/arch/um/kernel/skas/mmu.c b/arch/um/kernel/skas/mmu.c index 48c8c136c038..ae79888cf520 100644 --- a/arch/um/kernel/skas/mmu.c +++ b/arch/um/kernel/skas/mmu.c @@ -149,4 +149,6 @@ void destroy_context(struct mm_struct *mm) pmd_free((pmd_t *) mmu->last_pmd); #endif } + + free_ldt(mmu); } |