Changeset 2802767 in mainline
- Timestamp:
- 2006-03-22T22:26:49Z (19 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 9aa72b4
- Parents:
- d2ab461
- Files:
-
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
arch/ia64/include/mm/page.h
rd2ab461 r2802767 41 41 /** Bit width of the TLB-locked portion of kernel address space. */ 42 42 #define KERNEL_PAGE_WIDTH 28 /* 256M */ 43 44 #define SET_PTL0_ADDRESS_ARCH(x) /**< To be removed as situation permits. */45 43 46 44 #define PPN_SHIFT 12 -
arch/sparc64/include/mm/page.h
rd2ab461 r2802767 44 44 #define PA2KA(x) ((__address) (x)) 45 45 46 #define SET_PTL0_ADDRESS_ARCH(x) /**< To be removed as situation permits. */47 48 46 union page_address { 49 47 __address address; -
genarch/include/mm/page_ht.h
rd2ab461 r2802767 31 31 */ 32 32 33 #ifdef CONFIG_PAGE_HT 34 33 35 #ifndef __PAGE_HT_H__ 34 36 #define __PAGE_HT_H__ … … 47 49 #define PAGE_HT_ENTRIES (1<<PAGE_HT_ENTRIES_BITS) 48 50 49 #define PTE_VALID_ARCH(pte) ((pte) != NULL) 50 #define PTE_PRESENT_ARCH(pte) ((pte)->p != 0) 51 #define PTE_GET_FRAME_ARCH(pte) ((pte)->frame) 51 #define PTE_VALID(pte) ((pte) != NULL) 52 #define PTE_PRESENT(pte) ((pte)->p != 0) 53 #define PTE_GET_FRAME(pte) ((pte)->frame) 54 55 #define SET_PTL0_ADDRESS(x) 52 56 53 57 struct pte { … … 72 76 73 77 #endif 78 79 #endif -
genarch/include/mm/page_pt.h
rd2ab461 r2802767 32 32 * are supposed to implement *_ARCH macros. 33 33 */ 34 35 #ifdef CONFIG_PAGE_PT 34 36 35 37 #ifndef __PAGE_PT_H__ … … 103 105 104 106 #endif 107 108 #endif -
generic/src/mm/as.c
rd2ab461 r2802767 41 41 #include <arch/mm/page.h> 42 42 #include <genarch/mm/page_pt.h> 43 #include <genarch/mm/page_ht.h> 43 44 #include <mm/asid.h> 44 45 #include <arch/mm/asid.h>
Note:
See TracChangeset
for help on using the changeset viewer.