From: Lee Schermerhorn Allow free of mlock()ed pages. This shouldn't happen, but during developement, it occasionally did. This patch allows us to survive that condition, while keeping the statistics and events correct for debug. Signed-off-by: Lee Schermerhorn Signed-off-by: Rik van Riel --- include/linux/vmstat.h | 1 + mm/internal.h | 17 +++++++++++++++++ mm/page_alloc.c | 1 + mm/vmstat.c | 1 + 4 files changed, 20 insertions(+) Index: linux-2.6.26-rc5-mm2/mm/internal.h =================================================================== --- linux-2.6.26-rc5-mm2.orig/mm/internal.h 2008-06-10 21:40:05.000000000 -0400 +++ linux-2.6.26-rc5-mm2/mm/internal.h 2008-06-10 21:55:28.000000000 -0400 @@ -146,6 +146,22 @@ static inline void mlock_migrate_page(st } } +/* + * free_page_mlock() -- clean up attempts to free and mlocked() page. + * Page should not be on lru, so no need to fix that up. + * free_pages_check() will verify... + */ +static inline void free_page_mlock(struct page *page) +{ + if (unlikely(TestClearPageMlocked(page))) { + unsigned long flags; + + local_irq_save(flags); + __dec_zone_page_state(page, NR_MLOCK); + __count_vm_event(NORECL_MLOCKFREED); + local_irq_restore(flags); + } +} #else /* CONFIG_UNEVICTABLE_LRU */ static inline int is_mlocked_vma(struct vm_area_struct *v, struct page *p) @@ -155,6 +171,7 @@ static inline int is_mlocked_vma(struct static inline void clear_page_mlock(struct page *page) { } static inline void mlock_vma_page(struct page *page) { } static inline void mlock_migrate_page(struct page *new, struct page *old) { } +static inline void free_page_mlock(struct page *page) { } #endif /* CONFIG_UNEVICTABLE_LRU */ Index: linux-2.6.26-rc5-mm2/mm/page_alloc.c =================================================================== --- linux-2.6.26-rc5-mm2.orig/mm/page_alloc.c 2008-06-10 21:21:44.000000000 -0400 +++ linux-2.6.26-rc5-mm2/mm/page_alloc.c 2008-06-10 21:55:28.000000000 -0400 @@ -465,6 +465,7 @@ static inline void __free_one_page(struc static inline int free_pages_check(struct page *page) { + free_page_mlock(page); if (unlikely(page_mapcount(page) | (page->mapping != NULL) | (page_get_page_cgroup(page) != NULL) | Index: linux-2.6.26-rc5-mm2/include/linux/vmstat.h =================================================================== --- linux-2.6.26-rc5-mm2.orig/include/linux/vmstat.h 2008-06-10 21:40:05.000000000 -0400 +++ linux-2.6.26-rc5-mm2/include/linux/vmstat.h 2008-06-10 21:55:28.000000000 -0400 @@ -49,6 +49,7 @@ enum vm_event_item { PGPGIN, PGPGOUT, PS NORECL_PGMUNLOCKED, NORECL_PGCLEARED, NORECL_PGSTRANDED, /* unable to isolate on unlock */ + NORECL_MLOCKFREED, #endif NR_VM_EVENT_ITEMS }; Index: linux-2.6.26-rc5-mm2/mm/vmstat.c =================================================================== --- linux-2.6.26-rc5-mm2.orig/mm/vmstat.c 2008-06-10 21:40:05.000000000 -0400 +++ linux-2.6.26-rc5-mm2/mm/vmstat.c 2008-06-10 21:55:28.000000000 -0400 @@ -673,6 +673,7 @@ static const char * const vmstat_text[] "noreclaim_pgs_munlocked", "noreclaim_pgs_cleared", "noreclaim_pgs_stranded", + "noreclaim_pgs_mlockfreed", #endif #endif }; -- All Rights Reversed -- 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/