blob: 0e26de6adb519039e12b8f72221043a751af74d2 [file] [log] [blame]
Hugh Dickinsf8af4da2009-09-21 17:01:57 -07001#ifndef __LINUX_KSM_H
2#define __LINUX_KSM_H
3/*
4 * Memory merging support.
5 *
6 * This code enables dynamic sharing of identical pages found in different
7 * memory areas, even if they are not shared by fork().
8 */
9
10#include <linux/bitops.h>
11#include <linux/mm.h>
12#include <linux/sched.h>
Hugh Dickins9a840892009-09-21 17:02:01 -070013#include <linux/vmstat.h>
Hugh Dickinsf8af4da2009-09-21 17:01:57 -070014
Hugh Dickins9ba69292009-09-21 17:02:20 -070015struct mmu_gather;
16
Hugh Dickinsf8af4da2009-09-21 17:01:57 -070017#ifdef CONFIG_KSM
18int ksm_madvise(struct vm_area_struct *vma, unsigned long start,
19 unsigned long end, int advice, unsigned long *vm_flags);
20int __ksm_enter(struct mm_struct *mm);
Andrea Arcangeli1c2fb7a2009-09-21 17:02:22 -070021void __ksm_exit(struct mm_struct *mm);
Hugh Dickinsf8af4da2009-09-21 17:01:57 -070022
23static inline int ksm_fork(struct mm_struct *mm, struct mm_struct *oldmm)
24{
25 if (test_bit(MMF_VM_MERGEABLE, &oldmm->flags))
26 return __ksm_enter(mm);
27 return 0;
28}
29
Hugh Dickins9ba69292009-09-21 17:02:20 -070030/*
31 * For KSM to handle OOM without deadlock when it's breaking COW in a
32 * likely victim of the OOM killer, exit_mmap() has to serialize with
33 * ksm_exit() after freeing mm's pages but before freeing its page tables.
34 * That leaves a window in which KSM might refault pages which have just
35 * been finally unmapped: guard against that with ksm_test_exit(), and
36 * use it after getting mmap_sem in ksm.c, to check if mm is exiting.
37 */
38static inline bool ksm_test_exit(struct mm_struct *mm)
39{
40 return atomic_read(&mm->mm_users) == 0;
41}
42
Andrea Arcangeli1c2fb7a2009-09-21 17:02:22 -070043static inline void ksm_exit(struct mm_struct *mm)
Hugh Dickinsf8af4da2009-09-21 17:01:57 -070044{
45 if (test_bit(MMF_VM_MERGEABLE, &mm->flags))
Andrea Arcangeli1c2fb7a2009-09-21 17:02:22 -070046 __ksm_exit(mm);
Hugh Dickinsf8af4da2009-09-21 17:01:57 -070047}
Hugh Dickins9a840892009-09-21 17:02:01 -070048
49/*
50 * A KSM page is one of those write-protected "shared pages" or "merged pages"
51 * which KSM maps into multiple mms, wherever identical anonymous page content
52 * is found in VM_MERGEABLE vmas. It's a PageAnon page, with NULL anon_vma.
53 */
54static inline int PageKsm(struct page *page)
55{
56 return ((unsigned long)page->mapping == PAGE_MAPPING_ANON);
57}
58
59/*
60 * But we have to avoid the checking which page_add_anon_rmap() performs.
61 */
62static inline void page_add_ksm_rmap(struct page *page)
63{
64 if (atomic_inc_and_test(&page->_mapcount)) {
65 page->mapping = (void *) PAGE_MAPPING_ANON;
66 __inc_zone_page_state(page, NR_ANON_PAGES);
67 }
68}
Hugh Dickinsf8af4da2009-09-21 17:01:57 -070069#else /* !CONFIG_KSM */
70
71static inline int ksm_madvise(struct vm_area_struct *vma, unsigned long start,
72 unsigned long end, int advice, unsigned long *vm_flags)
73{
74 return 0;
75}
76
77static inline int ksm_fork(struct mm_struct *mm, struct mm_struct *oldmm)
78{
79 return 0;
80}
81
Hugh Dickins9ba69292009-09-21 17:02:20 -070082static inline bool ksm_test_exit(struct mm_struct *mm)
83{
84 return 0;
85}
86
Andrea Arcangeli1c2fb7a2009-09-21 17:02:22 -070087static inline void ksm_exit(struct mm_struct *mm)
Hugh Dickinsf8af4da2009-09-21 17:01:57 -070088{
89}
Hugh Dickins9a840892009-09-21 17:02:01 -070090
91static inline int PageKsm(struct page *page)
92{
93 return 0;
94}
95
96/* No stub required for page_add_ksm_rmap(page) */
Hugh Dickinsf8af4da2009-09-21 17:01:57 -070097#endif /* !CONFIG_KSM */
98
99#endif