aboutsummaryrefslogtreecommitdiffstats
path: root/arch/ia64/include/asm/patch.h
Commit message (Expand)AuthorAge
* [IA64] Move include/asm-ia64 to arch/ia64/include/asmTony Luck2008-08-01
dl.org> 2005-10-30 00:40:40 -0400 [PATCH] mm: ptd_alloc inline and out' href='/cgit/cgit.cgi/litmus-rt.git/commit/include/asm-generic/4level-fixup.h?h=v2015.1&id=1bb3630e89cb8a7b3d3807629c20c5bad88290ff'>1bb3630e89cb
1da177e4c3f4







46a82b2d5591



1da177e4c3f4

9e1b32caa525
5e5419734c87
9e1b32caa525
1da177e4c3f4




1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37











                                                  


                                                                         







                                                        



                                                                  

                   
                                                        
                                                        
                                                        




                                             
#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

#define pmd_alloc(mm, pud, address) \
	((unlikely(pgd_none(*(pud))) && __pmd_alloc(mm, pud, address))? \
 		NULL: pmd_offset(pud, address))

#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)
#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)

#undef pud_free_tlb
#define pud_free_tlb(tlb, x, addr)	do { } while (0)
#define pud_free(mm, x)			do { } while (0)
#define __pud_free_tlb(tlb, x, addr)	do { } while (0)

#undef  pud_addr_end
#define pud_addr_end(addr, end)		(end)

#endif