ksm.h 4.1 KB
Newer Older
H
Hugh Dickins 已提交
1 2 3 4 5 6 7 8 9 10 11
#ifndef __LINUX_KSM_H
#define __LINUX_KSM_H
/*
 * Memory merging support.
 *
 * This code enables dynamic sharing of identical pages found in different
 * memory areas, even if they are not shared by fork().
 */

#include <linux/bitops.h>
#include <linux/mm.h>
H
Hugh Dickins 已提交
12 13
#include <linux/pagemap.h>
#include <linux/rmap.h>
H
Hugh Dickins 已提交
14 15
#include <linux/sched.h>

16
struct stable_node;
H
Hugh Dickins 已提交
17
struct mem_cgroup;
18

H
Hugh Dickins 已提交
19 20 21 22
#ifdef CONFIG_KSM
int ksm_madvise(struct vm_area_struct *vma, unsigned long start,
		unsigned long end, int advice, unsigned long *vm_flags);
int __ksm_enter(struct mm_struct *mm);
23
void __ksm_exit(struct mm_struct *mm);
H
Hugh Dickins 已提交
24 25 26 27 28 29 30 31

static inline int ksm_fork(struct mm_struct *mm, struct mm_struct *oldmm)
{
	if (test_bit(MMF_VM_MERGEABLE, &oldmm->flags))
		return __ksm_enter(mm);
	return 0;
}

32
static inline void ksm_exit(struct mm_struct *mm)
H
Hugh Dickins 已提交
33 34
{
	if (test_bit(MMF_VM_MERGEABLE, &mm->flags))
35
		__ksm_exit(mm);
H
Hugh Dickins 已提交
36
}
H
Hugh Dickins 已提交
37 38 39 40

/*
 * A KSM page is one of those write-protected "shared pages" or "merged pages"
 * which KSM maps into multiple mms, wherever identical anonymous page content
41 42
 * is found in VM_MERGEABLE vmas.  It's a PageAnon page, pointing not to any
 * anon_vma, but to that page's node of the stable tree.
H
Hugh Dickins 已提交
43 44 45
 */
static inline int PageKsm(struct page *page)
{
H
Hugh Dickins 已提交
46 47
	return ((unsigned long)page->mapping & PAGE_MAPPING_FLAGS) ==
				(PAGE_MAPPING_ANON | PAGE_MAPPING_KSM);
H
Hugh Dickins 已提交
48 49
}

50 51 52 53 54 55 56 57 58 59 60 61
static inline struct stable_node *page_stable_node(struct page *page)
{
	return PageKsm(page) ? page_rmapping(page) : NULL;
}

static inline void set_page_stable_node(struct page *page,
					struct stable_node *stable_node)
{
	page->mapping = (void *)stable_node +
				(PAGE_MAPPING_ANON | PAGE_MAPPING_KSM);
}

H
Hugh Dickins 已提交
62 63 64 65 66 67 68 69 70 71 72 73 74 75 76
/*
 * When do_swap_page() first faults in from swap what used to be a KSM page,
 * no problem, it will be assigned to this vma's anon_vma; but thereafter,
 * it might be faulted into a different anon_vma (or perhaps to a different
 * offset in the same anon_vma).  do_swap_page() cannot do all the locking
 * needed to reconstitute a cross-anon_vma KSM page: for now it has to make
 * a copy, and leave remerging the pages to a later pass of ksmd.
 *
 * We'd like to make this conditional on vma->vm_flags & VM_MERGEABLE,
 * but what if the vma was unmerged while the page was swapped out?
 */
struct page *ksm_does_need_to_copy(struct page *page,
			struct vm_area_struct *vma, unsigned long address);
static inline struct page *ksm_might_need_to_copy(struct page *page,
			struct vm_area_struct *vma, unsigned long address)
H
Hugh Dickins 已提交
77
{
H
Hugh Dickins 已提交
78 79 80
	struct anon_vma *anon_vma = page_anon_vma(page);

	if (!anon_vma ||
81
	    (anon_vma->root == vma->anon_vma->root &&
H
Hugh Dickins 已提交
82 83 84 85
	     page->index == linear_page_index(vma, address)))
		return page;

	return ksm_does_need_to_copy(page, vma, address);
H
Hugh Dickins 已提交
86
}
H
Hugh Dickins 已提交
87 88 89 90

int page_referenced_ksm(struct page *page,
			struct mem_cgroup *memcg, unsigned long *vm_flags);
int try_to_unmap_ksm(struct page *page, enum ttu_flags flags);
91 92 93
int rmap_walk_ksm(struct page *page, int (*rmap_one)(struct page *,
		  struct vm_area_struct *, unsigned long, void *), void *arg);
void ksm_migrate_page(struct page *newpage, struct page *oldpage);
H
Hugh Dickins 已提交
94

H
Hugh Dickins 已提交
95 96 97 98 99 100 101
#else  /* !CONFIG_KSM */

static inline int ksm_fork(struct mm_struct *mm, struct mm_struct *oldmm)
{
	return 0;
}

102
static inline void ksm_exit(struct mm_struct *mm)
H
Hugh Dickins 已提交
103 104
{
}
H
Hugh Dickins 已提交
105 106 107 108 109 110

static inline int PageKsm(struct page *page)
{
	return 0;
}

H
Hugh Dickins 已提交
111 112 113 114 115 116 117
#ifdef CONFIG_MMU
static inline int ksm_madvise(struct vm_area_struct *vma, unsigned long start,
		unsigned long end, int advice, unsigned long *vm_flags)
{
	return 0;
}

H
Hugh Dickins 已提交
118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133
static inline struct page *ksm_might_need_to_copy(struct page *page,
			struct vm_area_struct *vma, unsigned long address)
{
	return page;
}

static inline int page_referenced_ksm(struct page *page,
			struct mem_cgroup *memcg, unsigned long *vm_flags)
{
	return 0;
}

static inline int try_to_unmap_ksm(struct page *page, enum ttu_flags flags)
{
	return 0;
}
134 135 136 137 138 139 140 141 142 143

static inline int rmap_walk_ksm(struct page *page, int (*rmap_one)(struct page*,
		struct vm_area_struct *, unsigned long, void *), void *arg)
{
	return 0;
}

static inline void ksm_migrate_page(struct page *newpage, struct page *oldpage)
{
}
H
Hugh Dickins 已提交
144
#endif /* CONFIG_MMU */
H
Hugh Dickins 已提交
145 146
#endif /* !CONFIG_KSM */

H
Hugh Dickins 已提交
147
#endif /* __LINUX_KSM_H */