Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1753323AbZIEVXW (ORCPT ); Sat, 5 Sep 2009 17:23:22 -0400 Received: (majordomo@vger.kernel.org) by vger.kernel.org id S1751889AbZIEVXV (ORCPT ); Sat, 5 Sep 2009 17:23:21 -0400 Received: from mk-filter-2-a-1.mail.uk.tiscali.com ([212.74.100.53]:57148 "EHLO mk-filter-2-a-1.mail.uk.tiscali.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751786AbZIEVXU (ORCPT ); Sat, 5 Sep 2009 17:23:20 -0400 X-Trace: 257786959/mk-filter-2.mail.uk.tiscali.com/B2C/$b2c-THROTTLED-DYNAMIC/b2c-CUSTOMER-DYNAMIC-IP/79.69.92.10/None/hugh.dickins@tiscali.co.uk X-SBRS: None X-RemoteIP: 79.69.92.10 X-IP-MAIL-FROM: hugh.dickins@tiscali.co.uk X-SMTP-AUTH: X-MUA: X-IP-BHB: Once X-IronPort-Anti-Spam-Filtered: true X-IronPort-Anti-Spam-Result: AucFAM5zokpPRVwK/2dsb2JhbACBU45gAcdahBgF X-IronPort-AV: E=Sophos;i="4.44,339,1249254000"; d="scan'208";a="257786959" Date: Sat, 5 Sep 2009 22:22:23 +0100 (BST) From: Hugh Dickins X-X-Sender: hugh@sister.anvils To: Andrew Morton cc: Izik Eidus , Andrea Arcangeli , linux-kernel@vger.kernel.org, linux-mm@kvack.org Subject: [PATCH 1/3] ksm: clean up obsolete references Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 3357 Lines: 100 A few cleanups, given the munlock fix: the comment on ksm_test_exit() no longer applies, and it can be made private to ksm.c; there's no more reference to mmu_gather or tlb.h, and mmap.c doesn't need ksm.h. Signed-off-by: Hugh Dickins --- include/linux/ksm.h | 20 -------------------- mm/ksm.c | 14 +++++++++++++- mm/mmap.c | 1 - 3 files changed, 13 insertions(+), 22 deletions(-) --- mmotm/include/linux/ksm.h 2009-09-05 14:40:16.000000000 +0100 +++ linux/include/linux/ksm.h 2009-09-05 16:41:55.000000000 +0100 @@ -12,8 +12,6 @@ #include #include -struct mmu_gather; - #ifdef CONFIG_KSM int ksm_madvise(struct vm_area_struct *vma, unsigned long start, unsigned long end, int advice, unsigned long *vm_flags); @@ -27,19 +25,6 @@ static inline int ksm_fork(struct mm_str return 0; } -/* - * For KSM to handle OOM without deadlock when it's breaking COW in a - * likely victim of the OOM killer, exit_mmap() has to serialize with - * ksm_exit() after freeing mm's pages but before freeing its page tables. - * That leaves a window in which KSM might refault pages which have just - * been finally unmapped: guard against that with ksm_test_exit(), and - * use it after getting mmap_sem in ksm.c, to check if mm is exiting. - */ -static inline bool ksm_test_exit(struct mm_struct *mm) -{ - return atomic_read(&mm->mm_users) == 0; -} - static inline void ksm_exit(struct mm_struct *mm) { if (test_bit(MMF_VM_MERGEABLE, &mm->flags)) @@ -78,11 +63,6 @@ static inline int ksm_fork(struct mm_str { return 0; } - -static inline bool ksm_test_exit(struct mm_struct *mm) -{ - return 0; -} static inline void ksm_exit(struct mm_struct *mm) { --- mmotm/mm/ksm.c 2009-09-05 14:40:16.000000000 +0100 +++ linux/mm/ksm.c 2009-09-05 16:41:55.000000000 +0100 @@ -32,7 +32,6 @@ #include #include -#include #include /* @@ -285,6 +284,19 @@ static inline int in_stable_tree(struct } /* + * ksmd, and unmerge_and_remove_all_rmap_items(), must not touch an mm's + * page tables after it has passed through ksm_exit() - which, if necessary, + * takes mmap_sem briefly to serialize against them. ksm_exit() does not set + * a special flag: they can just back out as soon as mm_users goes to zero. + * ksm_test_exit() is used throughout to make this test for exit: in some + * places for correctness, in some places just to avoid unnecessary work. + */ +static inline bool ksm_test_exit(struct mm_struct *mm) +{ + return atomic_read(&mm->mm_users) == 0; +} + +/* * We use break_ksm to break COW on a ksm page: it's a stripped down * * if (get_user_pages(current, mm, addr, 1, 1, 1, &page, NULL) == 1) --- mmotm/mm/mmap.c 2009-09-05 14:40:16.000000000 +0100 +++ linux/mm/mmap.c 2009-09-05 16:41:55.000000000 +0100 @@ -27,7 +27,6 @@ #include #include #include -#include #include #include #include -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/