Blame view

include/asm-generic/4level-fixup.h 1 KB
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1
2
3
4
5
6
7
8
9
10
11
  #ifndef _4LEVEL_FIXUP_H
  #define _4LEVEL_FIXUP_H
  
  #define __ARCH_HAS_4LEVEL_HACK
  #define __PAGETABLE_PUD_FOLDED
  
  #define PUD_SIZE			PGDIR_SIZE
  #define PUD_MASK			PGDIR_MASK
  #define PTRS_PER_PUD			1
  
  #define pud_t				pgd_t
1bb3630e8   Hugh Dickins   [PATCH] mm: ptd_a...
12
13
14
  #define pmd_alloc(mm, pud, address) \
  	((unlikely(pgd_none(*(pud))) && __pmd_alloc(mm, pud, address))? \
   		NULL: pmd_offset(pud, address))
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
15
16
17
18
19
20
21
22
  
  #define pud_alloc(mm, pgd, address)	(pgd)
  #define pud_offset(pgd, start)		(pgd)
  #define pud_none(pud)			0
  #define pud_bad(pud)			0
  #define pud_present(pud)		1
  #define pud_ERROR(pud)			do { } while (0)
  #define pud_clear(pud)			pgd_clear(pud)
46a82b2d5   Dave McCracken   [PATCH] Standardi...
23
24
25
26
  #define pud_val(pud)			pgd_val(pud)
  #define pud_populate(mm, pud, pmd)	pgd_populate(mm, pud, pmd)
  #define pud_page(pud)			pgd_page(pud)
  #define pud_page_vaddr(pud)		pgd_page_vaddr(pud)
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
27
28
  
  #undef pud_free_tlb
9e1b32caa   Benjamin Herrenschmidt   mm: Pass virtual ...
29
  #define pud_free_tlb(tlb, x, addr)	do { } while (0)
5e5419734   Benjamin Herrenschmidt   add mm argument t...
30
  #define pud_free(mm, x)			do { } while (0)
9e1b32caa   Benjamin Herrenschmidt   mm: Pass virtual ...
31
  #define __pud_free_tlb(tlb, x, addr)	do { } while (0)
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
32
33
34
35
36
  
  #undef  pud_addr_end
  #define pud_addr_end(addr, end)		(end)
  
  #endif