Gitweb:     
http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=28078e8f9790be0854a54f06de822689ab571944
Commit:     28078e8f9790be0854a54f06de822689ab571944
Parent:     18badddaa84e13e126f4ca5df47ac55b97a2635a
Author:     Jeff Dike <[EMAIL PROTECTED]>
AuthorDate: Tue Oct 16 01:27:08 2007 -0700
Committer:  Linus Torvalds <[EMAIL PROTECTED]>
CommitDate: Tue Oct 16 09:43:06 2007 -0700

    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 <[EMAIL PROTECTED]>
    Signed-off-by: Andrew Morton <[EMAIL PROTECTED]>
    Signed-off-by: Linus Torvalds <[EMAIL PROTECTED]>
---
 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 48c8c13..ae79888 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);
 }
-
To unsubscribe from this list: send the line "unsubscribe git-commits-head" in
the body of a message to [EMAIL PROTECTED]
More majordomo info at  http://vger.kernel.org/majordomo-info.html

Reply via email to