pgtable-generic.c 5.3 KB
Newer Older
1 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
 */

9
#include <linux/pagemap.h>
10 11 12
#include <asm/tlb.h>
#include <asm-generic/pgtable.h>

13 14 15 16 17 18 19 20 21 22 23 24
/*
 * 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);
}

25 26 27 28 29 30
void p4d_clear_bad(p4d_t *p4d)
{
	p4d_ERROR(*p4d);
	p4d_clear(p4d);
}

31 32 33 34 35 36 37 38 39 40 41 42
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);
}

43 44
#ifndef __HAVE_ARCH_PTEP_SET_ACCESS_FLAGS
/*
45 46
 * Only sets the access flags (dirty, accessed), as well as write 
 * permission. Furthermore, we know it always gets set to a "more
47 48 49 50 51 52 53 54 55 56 57 58 59
 * 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);
60
		flush_tlb_fix_spurious_fault(vma, address);
61 62 63 64 65
	}
	return changed;
}
#endif

66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90
#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

91 92
#ifdef CONFIG_TRANSPARENT_HUGEPAGE

93 94 95 96 97 98 99 100 101
#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)
{
	int changed = !pmd_same(*pmdp, entry);
	VM_BUG_ON(address & ~HPAGE_PMD_MASK);
	if (changed) {
		set_pmd_at(vma->vm_mm, address, pmdp, entry);
102
		flush_pmd_tlb_range(vma, address, address + HPAGE_PMD_SIZE);
103 104 105 106 107 108 109 110 111 112
	}
	return changed;
}
#endif

#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;
113
	VM_BUG_ON(address & ~HPAGE_PMD_MASK);
114 115
	young = pmdp_test_and_clear_young(vma, address, pmdp);
	if (young)
116
		flush_pmd_tlb_range(vma, address, address + HPAGE_PMD_SIZE);
117 118 119 120
	return young;
}
#endif

121 122 123
#ifndef __HAVE_ARCH_PMDP_HUGE_CLEAR_FLUSH
pmd_t pmdp_huge_clear_flush(struct vm_area_struct *vma, unsigned long address,
			    pmd_t *pmdp)
124 125 126
{
	pmd_t pmd;
	VM_BUG_ON(address & ~HPAGE_PMD_MASK);
127 128
	VM_BUG_ON((pmd_present(*pmdp) && !pmd_trans_huge(*pmdp) &&
			   !pmd_devmap(*pmdp)) || !pmd_present(*pmdp));
129
	pmd = pmdp_huge_get_and_clear(vma->vm_mm, address, pmdp);
130
	flush_pmd_tlb_range(vma, address, address + HPAGE_PMD_SIZE);
131 132
	return pmd;
}
133 134 135 136 137 138 139 140 141 142 143 144 145 146

#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
147 148
#endif

149
#ifndef __HAVE_ARCH_PGTABLE_DEPOSIT
150 151
void pgtable_trans_huge_deposit(struct mm_struct *mm, pmd_t *pmdp,
				pgtable_t pgtable)
152
{
153
	assert_spin_locked(pmd_lockptr(mm, pmdp));
154 155

	/* FIFO */
156
	if (!pmd_huge_pte(mm, pmdp))
157 158
		INIT_LIST_HEAD(&pgtable->lru);
	else
159 160
		list_add(&pgtable->lru, &pmd_huge_pte(mm, pmdp)->lru);
	pmd_huge_pte(mm, pmdp) = pgtable;
161 162 163 164 165
}
#endif

#ifndef __HAVE_ARCH_PGTABLE_WITHDRAW
/* no "address" argument so destroys page coloring of some arch */
166
pgtable_t pgtable_trans_huge_withdraw(struct mm_struct *mm, pmd_t *pmdp)
167 168 169
{
	pgtable_t pgtable;

170
	assert_spin_locked(pmd_lockptr(mm, pmdp));
171 172

	/* FIFO */
173
	pgtable = pmd_huge_pte(mm, pmdp);
174 175 176
	pmd_huge_pte(mm, pmdp) = list_first_entry_or_null(&pgtable->lru,
							  struct page, lru);
	if (pmd_huge_pte(mm, pmdp))
177 178 179 180
		list_del(&pgtable->lru);
	return pgtable;
}
#endif
G
Gerald Schaefer 已提交
181 182 183 184 185

#ifndef __HAVE_ARCH_PMDP_INVALIDATE
void pmdp_invalidate(struct vm_area_struct *vma, unsigned long address,
		     pmd_t *pmdp)
{
186
	pmd_t entry = *pmdp;
187
	set_pmd_at(vma->vm_mm, address, pmdp, pmd_mknotpresent(entry));
188
	flush_pmd_tlb_range(vma, address, address + HPAGE_PMD_SIZE);
G
Gerald Schaefer 已提交
189 190
}
#endif
191 192 193 194 195

#ifndef pmdp_collapse_flush
pmd_t pmdp_collapse_flush(struct vm_area_struct *vma, unsigned long address,
			  pmd_t *pmdp)
{
196 197 198 199
	/*
	 * pmd and hugepage pte format are same. So we could
	 * use the same function.
	 */
200 201 202 203
	pmd_t pmd;

	VM_BUG_ON(address & ~HPAGE_PMD_MASK);
	VM_BUG_ON(pmd_trans_huge(*pmdp));
204
	pmd = pmdp_huge_get_and_clear(vma->vm_mm, address, pmdp);
205 206 207

	/* collapse entails shooting down ptes not pmd */
	flush_tlb_range(vma, address, address + HPAGE_PMD_SIZE);
208 209 210
	return pmd;
}
#endif
211
#endif /* CONFIG_TRANSPARENT_HUGEPAGE */