Blame view

mm/pgtable-generic.c 5.32 KB
b24413180   Greg Kroah-Hartman   License cleanup: ...
1
  // SPDX-License-Identifier: GPL-2.0
e2cda3226   Andrea Arcangeli   thp: add pmd mang...
2
3
4
5
6
7
8
  /*
   *  mm/pgtable-generic.c
   *
   *  Generic pgtable methods declared in asm-generic/pgtable.h
   *
   *  Copyright (C) 2010  Linus Torvalds
   */
f95ba941d   Andrew Morton   mm/pgtable-generi...
9
  #include <linux/pagemap.h>
e2cda3226   Andrea Arcangeli   thp: add pmd mang...
10
11
  #include <asm/tlb.h>
  #include <asm-generic/pgtable.h>
bc4b4448d   Joonsoo Kim   mm: move pgtable ...
12
13
14
15
16
17
18
19
20
21
22
  /*
   * If a p?d_bad entry is found while walking page tables, report
   * the error, before resetting entry to p?d_none.  Usually (but
   * very seldom) called out from the p?d_none_or_clear_bad macros.
   */
  
  void pgd_clear_bad(pgd_t *pgd)
  {
  	pgd_ERROR(*pgd);
  	pgd_clear(pgd);
  }
c2febafc6   Kirill A. Shutemov   mm: convert gener...
23
24
25
26
27
  void p4d_clear_bad(p4d_t *p4d)
  {
  	p4d_ERROR(*p4d);
  	p4d_clear(p4d);
  }
bc4b4448d   Joonsoo Kim   mm: move pgtable ...
28
29
30
31
32
33
34
35
36
37
38
  void pud_clear_bad(pud_t *pud)
  {
  	pud_ERROR(*pud);
  	pud_clear(pud);
  }
  
  void pmd_clear_bad(pmd_t *pmd)
  {
  	pmd_ERROR(*pmd);
  	pmd_clear(pmd);
  }
e2cda3226   Andrea Arcangeli   thp: add pmd mang...
39
40
  #ifndef __HAVE_ARCH_PTEP_SET_ACCESS_FLAGS
  /*
cef23d9db   Rik van Riel   mm,generic: only ...
41
42
   * Only sets the access flags (dirty, accessed), as well as write 
   * permission. Furthermore, we know it always gets set to a "more
e2cda3226   Andrea Arcangeli   thp: add pmd mang...
43
44
45
46
47
48
49
50
51
52
53
54
55
   * permissive" setting, which allows most architectures to optimize
   * this. We return whether the PTE actually changed, which in turn
   * instructs the caller to do things like update__mmu_cache.  This
   * used to be done in the caller, but sparc needs minor faults to
   * force that call on sun4c so we changed this macro slightly
   */
  int ptep_set_access_flags(struct vm_area_struct *vma,
  			  unsigned long address, pte_t *ptep,
  			  pte_t entry, int dirty)
  {
  	int changed = !pte_same(*ptep, entry);
  	if (changed) {
  		set_pte_at(vma->vm_mm, address, ptep, entry);
cef23d9db   Rik van Riel   mm,generic: only ...
56
  		flush_tlb_fix_spurious_fault(vma, address);
e2cda3226   Andrea Arcangeli   thp: add pmd mang...
57
58
59
60
  	}
  	return changed;
  }
  #endif
52585bcc2   Vineet Gupta   mm: group pte rel...
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
  #ifndef __HAVE_ARCH_PTEP_CLEAR_YOUNG_FLUSH
  int ptep_clear_flush_young(struct vm_area_struct *vma,
  			   unsigned long address, pte_t *ptep)
  {
  	int young;
  	young = ptep_test_and_clear_young(vma, address, ptep);
  	if (young)
  		flush_tlb_page(vma, address);
  	return young;
  }
  #endif
  
  #ifndef __HAVE_ARCH_PTEP_CLEAR_FLUSH
  pte_t ptep_clear_flush(struct vm_area_struct *vma, unsigned long address,
  		       pte_t *ptep)
  {
  	struct mm_struct *mm = (vma)->vm_mm;
  	pte_t pte;
  	pte = ptep_get_and_clear(mm, address, ptep);
  	if (pte_accessible(mm, pte))
  		flush_tlb_page(vma, address);
  	return pte;
  }
  #endif
bd5e88ad7   Vineet Gupta   mm,thp: reduce if...
85
  #ifdef CONFIG_TRANSPARENT_HUGEPAGE
e2cda3226   Andrea Arcangeli   thp: add pmd mang...
86
87
88
89
90
  #ifndef __HAVE_ARCH_PMDP_SET_ACCESS_FLAGS
  int pmdp_set_access_flags(struct vm_area_struct *vma,
  			  unsigned long address, pmd_t *pmdp,
  			  pmd_t entry, int dirty)
  {
e2cda3226   Andrea Arcangeli   thp: add pmd mang...
91
92
93
94
  	int changed = !pmd_same(*pmdp, entry);
  	VM_BUG_ON(address & ~HPAGE_PMD_MASK);
  	if (changed) {
  		set_pmd_at(vma->vm_mm, address, pmdp, entry);
12ebc1581   Vineet Gupta   mm,thp: introduce...
95
  		flush_pmd_tlb_range(vma, address, address + HPAGE_PMD_SIZE);
e2cda3226   Andrea Arcangeli   thp: add pmd mang...
96
97
  	}
  	return changed;
e2cda3226   Andrea Arcangeli   thp: add pmd mang...
98
99
  }
  #endif
e2cda3226   Andrea Arcangeli   thp: add pmd mang...
100
101
102
103
104
  #ifndef __HAVE_ARCH_PMDP_CLEAR_YOUNG_FLUSH
  int pmdp_clear_flush_young(struct vm_area_struct *vma,
  			   unsigned long address, pmd_t *pmdp)
  {
  	int young;
d8c37c480   Naoya Horiguchi   thp: add HPAGE_PM...
105
  	VM_BUG_ON(address & ~HPAGE_PMD_MASK);
e2cda3226   Andrea Arcangeli   thp: add pmd mang...
106
107
  	young = pmdp_test_and_clear_young(vma, address, pmdp);
  	if (young)
12ebc1581   Vineet Gupta   mm,thp: introduce...
108
  		flush_pmd_tlb_range(vma, address, address + HPAGE_PMD_SIZE);
e2cda3226   Andrea Arcangeli   thp: add pmd mang...
109
110
111
  	return young;
  }
  #endif
8809aa2d2   Aneesh Kumar K.V   mm: clarify that ...
112
  #ifndef __HAVE_ARCH_PMDP_HUGE_CLEAR_FLUSH
8809aa2d2   Aneesh Kumar K.V   mm: clarify that ...
113
114
  pmd_t pmdp_huge_clear_flush(struct vm_area_struct *vma, unsigned long address,
  			    pmd_t *pmdp)
e2cda3226   Andrea Arcangeli   thp: add pmd mang...
115
116
  {
  	pmd_t pmd;
e2cda3226   Andrea Arcangeli   thp: add pmd mang...
117
  	VM_BUG_ON(address & ~HPAGE_PMD_MASK);
616b83715   Zi Yan   mm: thp: enable t...
118
119
  	VM_BUG_ON((pmd_present(*pmdp) && !pmd_trans_huge(*pmdp) &&
  			   !pmd_devmap(*pmdp)) || !pmd_present(*pmdp));
8809aa2d2   Aneesh Kumar K.V   mm: clarify that ...
120
  	pmd = pmdp_huge_get_and_clear(vma->vm_mm, address, pmdp);
12ebc1581   Vineet Gupta   mm,thp: introduce...
121
  	flush_pmd_tlb_range(vma, address, address + HPAGE_PMD_SIZE);
e2cda3226   Andrea Arcangeli   thp: add pmd mang...
122
123
  	return pmd;
  }
a00cc7d9d   Matthew Wilcox   mm, x86: add supp...
124
125
126
127
128
129
130
131
132
133
134
135
136
137
  
  #ifdef CONFIG_HAVE_ARCH_TRANSPARENT_HUGEPAGE_PUD
  pud_t pudp_huge_clear_flush(struct vm_area_struct *vma, unsigned long address,
  			    pud_t *pudp)
  {
  	pud_t pud;
  
  	VM_BUG_ON(address & ~HPAGE_PUD_MASK);
  	VM_BUG_ON(!pud_trans_huge(*pudp) && !pud_devmap(*pudp));
  	pud = pudp_huge_get_and_clear(vma->vm_mm, address, pudp);
  	flush_pud_tlb_range(vma, address, address + HPAGE_PUD_SIZE);
  	return pud;
  }
  #endif
e2cda3226   Andrea Arcangeli   thp: add pmd mang...
138
  #endif
e3ebcf643   Gerald Schaefer   thp: remove assum...
139
  #ifndef __HAVE_ARCH_PGTABLE_DEPOSIT
6b0b50b06   Aneesh Kumar K.V   mm/THP: add pmd a...
140
141
  void pgtable_trans_huge_deposit(struct mm_struct *mm, pmd_t *pmdp,
  				pgtable_t pgtable)
e3ebcf643   Gerald Schaefer   thp: remove assum...
142
  {
c4088ebdc   Kirill A. Shutemov   mm: convert the r...
143
  	assert_spin_locked(pmd_lockptr(mm, pmdp));
e3ebcf643   Gerald Schaefer   thp: remove assum...
144
145
  
  	/* FIFO */
c389a250a   Kirill A. Shutemov   mm, thp: do not a...
146
  	if (!pmd_huge_pte(mm, pmdp))
e3ebcf643   Gerald Schaefer   thp: remove assum...
147
148
  		INIT_LIST_HEAD(&pgtable->lru);
  	else
c389a250a   Kirill A. Shutemov   mm, thp: do not a...
149
150
  		list_add(&pgtable->lru, &pmd_huge_pte(mm, pmdp)->lru);
  	pmd_huge_pte(mm, pmdp) = pgtable;
e3ebcf643   Gerald Schaefer   thp: remove assum...
151
  }
e3ebcf643   Gerald Schaefer   thp: remove assum...
152
153
154
  #endif
  
  #ifndef __HAVE_ARCH_PGTABLE_WITHDRAW
e3ebcf643   Gerald Schaefer   thp: remove assum...
155
  /* no "address" argument so destroys page coloring of some arch */
6b0b50b06   Aneesh Kumar K.V   mm/THP: add pmd a...
156
  pgtable_t pgtable_trans_huge_withdraw(struct mm_struct *mm, pmd_t *pmdp)
e3ebcf643   Gerald Schaefer   thp: remove assum...
157
158
  {
  	pgtable_t pgtable;
c4088ebdc   Kirill A. Shutemov   mm: convert the r...
159
  	assert_spin_locked(pmd_lockptr(mm, pmdp));
e3ebcf643   Gerald Schaefer   thp: remove assum...
160
161
  
  	/* FIFO */
c389a250a   Kirill A. Shutemov   mm, thp: do not a...
162
  	pgtable = pmd_huge_pte(mm, pmdp);
146693471   Geliang Tang   mm, thp: use list...
163
164
165
  	pmd_huge_pte(mm, pmdp) = list_first_entry_or_null(&pgtable->lru,
  							  struct page, lru);
  	if (pmd_huge_pte(mm, pmdp))
e3ebcf643   Gerald Schaefer   thp: remove assum...
166
  		list_del(&pgtable->lru);
e3ebcf643   Gerald Schaefer   thp: remove assum...
167
168
  	return pgtable;
  }
e3ebcf643   Gerald Schaefer   thp: remove assum...
169
  #endif
46dcde735   Gerald Schaefer   thp: introduce pm...
170
171
  
  #ifndef __HAVE_ARCH_PMDP_INVALIDATE
46dcde735   Gerald Schaefer   thp: introduce pm...
172
173
174
  void pmdp_invalidate(struct vm_area_struct *vma, unsigned long address,
  		     pmd_t *pmdp)
  {
67f87463d   Mel Gorman   mm: clear pmd_num...
175
  	pmd_t entry = *pmdp;
ce8369bcb   Matthew Wilcox   mm: actually clea...
176
  	set_pmd_at(vma->vm_mm, address, pmdp, pmd_mknotpresent(entry));
12ebc1581   Vineet Gupta   mm,thp: introduce...
177
  	flush_pmd_tlb_range(vma, address, address + HPAGE_PMD_SIZE);
46dcde735   Gerald Schaefer   thp: introduce pm...
178
  }
46dcde735   Gerald Schaefer   thp: introduce pm...
179
  #endif
f28b6ff8c   Aneesh Kumar K.V   powerpc/mm: use g...
180
181
  
  #ifndef pmdp_collapse_flush
f28b6ff8c   Aneesh Kumar K.V   powerpc/mm: use g...
182
183
184
  pmd_t pmdp_collapse_flush(struct vm_area_struct *vma, unsigned long address,
  			  pmd_t *pmdp)
  {
8809aa2d2   Aneesh Kumar K.V   mm: clarify that ...
185
186
187
188
  	/*
  	 * pmd and hugepage pte format are same. So we could
  	 * use the same function.
  	 */
f28b6ff8c   Aneesh Kumar K.V   powerpc/mm: use g...
189
190
191
192
  	pmd_t pmd;
  
  	VM_BUG_ON(address & ~HPAGE_PMD_MASK);
  	VM_BUG_ON(pmd_trans_huge(*pmdp));
8809aa2d2   Aneesh Kumar K.V   mm: clarify that ...
193
  	pmd = pmdp_huge_get_and_clear(vma->vm_mm, address, pmdp);
6a6ac72fd   Vineet Gupta   mm,thp: khugepage...
194
195
196
  
  	/* collapse entails shooting down ptes not pmd */
  	flush_tlb_range(vma, address, address + HPAGE_PMD_SIZE);
f28b6ff8c   Aneesh Kumar K.V   powerpc/mm: use g...
197
198
  	return pmd;
  }
f28b6ff8c   Aneesh Kumar K.V   powerpc/mm: use g...
199
  #endif
bd5e88ad7   Vineet Gupta   mm,thp: reduce if...
200
  #endif /* CONFIG_TRANSPARENT_HUGEPAGE */