Blame view

mm/pgtable-generic.c 5.35 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>
a31acd3ee   Peter Zijlstra   x86/mm: Page size...
10
  #include <linux/hugetlb.h>
e2cda3226   Andrea Arcangeli   thp: add pmd mang...
11
12
  #include <asm/tlb.h>
  #include <asm-generic/pgtable.h>
bc4b4448d   Joonsoo Kim   mm: move pgtable ...
13
14
15
16
17
18
19
20
21
22
23
  /*
   * 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...
24
25
26
27
28
  void p4d_clear_bad(p4d_t *p4d)
  {
  	p4d_ERROR(*p4d);
  	p4d_clear(p4d);
  }
bc4b4448d   Joonsoo Kim   mm: move pgtable ...
29
30
31
32
33
34
35
36
37
38
39
  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...
40
41
  #ifndef __HAVE_ARCH_PTEP_SET_ACCESS_FLAGS
  /*
cef23d9db   Rik van Riel   mm,generic: only ...
42
43
   * 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...
44
45
46
47
48
49
50
51
52
53
54
55
56
   * 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 ...
57
  		flush_tlb_fix_spurious_fault(vma, address);
e2cda3226   Andrea Arcangeli   thp: add pmd mang...
58
59
60
61
  	}
  	return changed;
  }
  #endif
52585bcc2   Vineet Gupta   mm: group pte rel...
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
  #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...
86
  #ifdef CONFIG_TRANSPARENT_HUGEPAGE
e2cda3226   Andrea Arcangeli   thp: add pmd mang...
87
88
89
90
91
  #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...
92
93
94
95
  	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...
96
  		flush_pmd_tlb_range(vma, address, address + HPAGE_PMD_SIZE);
e2cda3226   Andrea Arcangeli   thp: add pmd mang...
97
98
  	}
  	return changed;
e2cda3226   Andrea Arcangeli   thp: add pmd mang...
99
100
  }
  #endif
e2cda3226   Andrea Arcangeli   thp: add pmd mang...
101
102
103
104
105
  #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...
106
  	VM_BUG_ON(address & ~HPAGE_PMD_MASK);
e2cda3226   Andrea Arcangeli   thp: add pmd mang...
107
108
  	young = pmdp_test_and_clear_young(vma, address, pmdp);
  	if (young)
12ebc1581   Vineet Gupta   mm,thp: introduce...
109
  		flush_pmd_tlb_range(vma, address, address + HPAGE_PMD_SIZE);
e2cda3226   Andrea Arcangeli   thp: add pmd mang...
110
111
112
  	return young;
  }
  #endif
8809aa2d2   Aneesh Kumar K.V   mm: clarify that ...
113
  #ifndef __HAVE_ARCH_PMDP_HUGE_CLEAR_FLUSH
8809aa2d2   Aneesh Kumar K.V   mm: clarify that ...
114
115
  pmd_t pmdp_huge_clear_flush(struct vm_area_struct *vma, unsigned long address,
  			    pmd_t *pmdp)
e2cda3226   Andrea Arcangeli   thp: add pmd mang...
116
117
  {
  	pmd_t pmd;
e2cda3226   Andrea Arcangeli   thp: add pmd mang...
118
  	VM_BUG_ON(address & ~HPAGE_PMD_MASK);
616b83715   Zi Yan   mm: thp: enable t...
119
120
  	VM_BUG_ON((pmd_present(*pmdp) && !pmd_trans_huge(*pmdp) &&
  			   !pmd_devmap(*pmdp)) || !pmd_present(*pmdp));
8809aa2d2   Aneesh Kumar K.V   mm: clarify that ...
121
  	pmd = pmdp_huge_get_and_clear(vma->vm_mm, address, pmdp);
12ebc1581   Vineet Gupta   mm,thp: introduce...
122
  	flush_pmd_tlb_range(vma, address, address + HPAGE_PMD_SIZE);
e2cda3226   Andrea Arcangeli   thp: add pmd mang...
123
124
  	return pmd;
  }
a00cc7d9d   Matthew Wilcox   mm, x86: add supp...
125
126
127
128
129
130
131
132
133
134
135
136
137
138
  
  #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...
139
  #endif
e3ebcf643   Gerald Schaefer   thp: remove assum...
140
  #ifndef __HAVE_ARCH_PGTABLE_DEPOSIT
6b0b50b06   Aneesh Kumar K.V   mm/THP: add pmd a...
141
142
  void pgtable_trans_huge_deposit(struct mm_struct *mm, pmd_t *pmdp,
  				pgtable_t pgtable)
e3ebcf643   Gerald Schaefer   thp: remove assum...
143
  {
c4088ebdc   Kirill A. Shutemov   mm: convert the r...
144
  	assert_spin_locked(pmd_lockptr(mm, pmdp));
e3ebcf643   Gerald Schaefer   thp: remove assum...
145
146
  
  	/* FIFO */
c389a250a   Kirill A. Shutemov   mm, thp: do not a...
147
  	if (!pmd_huge_pte(mm, pmdp))
e3ebcf643   Gerald Schaefer   thp: remove assum...
148
149
  		INIT_LIST_HEAD(&pgtable->lru);
  	else
c389a250a   Kirill A. Shutemov   mm, thp: do not a...
150
151
  		list_add(&pgtable->lru, &pmd_huge_pte(mm, pmdp)->lru);
  	pmd_huge_pte(mm, pmdp) = pgtable;
e3ebcf643   Gerald Schaefer   thp: remove assum...
152
  }
e3ebcf643   Gerald Schaefer   thp: remove assum...
153
154
155
  #endif
  
  #ifndef __HAVE_ARCH_PGTABLE_WITHDRAW
e3ebcf643   Gerald Schaefer   thp: remove assum...
156
  /* no "address" argument so destroys page coloring of some arch */
6b0b50b06   Aneesh Kumar K.V   mm/THP: add pmd a...
157
  pgtable_t pgtable_trans_huge_withdraw(struct mm_struct *mm, pmd_t *pmdp)
e3ebcf643   Gerald Schaefer   thp: remove assum...
158
159
  {
  	pgtable_t pgtable;
c4088ebdc   Kirill A. Shutemov   mm: convert the r...
160
  	assert_spin_locked(pmd_lockptr(mm, pmdp));
e3ebcf643   Gerald Schaefer   thp: remove assum...
161
162
  
  	/* FIFO */
c389a250a   Kirill A. Shutemov   mm, thp: do not a...
163
  	pgtable = pmd_huge_pte(mm, pmdp);
146693471   Geliang Tang   mm, thp: use list...
164
165
166
  	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...
167
  		list_del(&pgtable->lru);
e3ebcf643   Gerald Schaefer   thp: remove assum...
168
169
  	return pgtable;
  }
e3ebcf643   Gerald Schaefer   thp: remove assum...
170
  #endif
46dcde735   Gerald Schaefer   thp: introduce pm...
171
172
  
  #ifndef __HAVE_ARCH_PMDP_INVALIDATE
d52605d7c   Kirill A. Shutemov   mm: do not lose d...
173
  pmd_t pmdp_invalidate(struct vm_area_struct *vma, unsigned long address,
46dcde735   Gerald Schaefer   thp: introduce pm...
174
175
  		     pmd_t *pmdp)
  {
d52605d7c   Kirill A. Shutemov   mm: do not lose d...
176
  	pmd_t old = pmdp_establish(vma, address, pmdp, pmd_mknotpresent(*pmdp));
12ebc1581   Vineet Gupta   mm,thp: introduce...
177
  	flush_pmd_tlb_range(vma, address, address + HPAGE_PMD_SIZE);
d52605d7c   Kirill A. Shutemov   mm: do not lose d...
178
  	return old;
46dcde735   Gerald Schaefer   thp: introduce pm...
179
  }
46dcde735   Gerald Schaefer   thp: introduce pm...
180
  #endif
f28b6ff8c   Aneesh Kumar K.V   powerpc/mm: use g...
181
182
  
  #ifndef pmdp_collapse_flush
f28b6ff8c   Aneesh Kumar K.V   powerpc/mm: use g...
183
184
185
  pmd_t pmdp_collapse_flush(struct vm_area_struct *vma, unsigned long address,
  			  pmd_t *pmdp)
  {
8809aa2d2   Aneesh Kumar K.V   mm: clarify that ...
186
187
188
189
  	/*
  	 * pmd and hugepage pte format are same. So we could
  	 * use the same function.
  	 */
f28b6ff8c   Aneesh Kumar K.V   powerpc/mm: use g...
190
191
192
193
  	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 ...
194
  	pmd = pmdp_huge_get_and_clear(vma->vm_mm, address, pmdp);
6a6ac72fd   Vineet Gupta   mm,thp: khugepage...
195
196
197
  
  	/* 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...
198
199
  	return pmd;
  }
f28b6ff8c   Aneesh Kumar K.V   powerpc/mm: use g...
200
  #endif
bd5e88ad7   Vineet Gupta   mm,thp: reduce if...
201
  #endif /* CONFIG_TRANSPARENT_HUGEPAGE */