Changeset 3526da33 in mainline
- Timestamp:
- 2005-08-20T22:16:40Z (19 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- a8f9a82
- Parents:
- f4a61ef
- Location:
- arch
- Files:
-
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
arch/amd64/include/mm/page.h
rf4a61ef r3526da33 36 36 #define PAGE_SIZE FRAME_SIZE 37 37 38 #define KA2PA(x) (( x) - 0x80000000)39 #define PA2KA(x) (( x) + 0x80000000)38 #define KA2PA(x) (((__address) (x)) - 0x80000000) 39 #define PA2KA(x) (((__address) (x)) + 0x80000000) 40 40 41 41 #define PTL0_INDEX_ARCH(vaddr) 0 -
arch/ia32/include/mm/page.h
rf4a61ef r3526da33 37 37 #define PAGE_SIZE FRAME_SIZE 38 38 39 #define KA2PA(x) (( x) - 0x80000000)40 #define PA2KA(x) (( x) + 0x80000000)39 #define KA2PA(x) (((__address) (x)) - 0x80000000) 40 #define PA2KA(x) (((__address) (x)) + 0x80000000) 41 41 42 42 /* -
arch/ia64/include/mm/page.h
rf4a61ef r3526da33 35 35 #define PAGE_SIZE FRAME_SIZE 36 36 37 #define KA2PA(x) (( x)-0x8000000000000000)38 #define PA2KA(x) (( x)+0x8000000000000000)37 #define KA2PA(x) (((__address) (x))-0x8000000000000000) 38 #define PA2KA(x) (((__address) (x))+0x8000000000000000) 39 39 40 40 #define page_arch_init() ; -
arch/mips/include/mm/page.h
rf4a61ef r3526da33 38 38 #define PAGE_SIZE FRAME_SIZE 39 39 40 #define KA2PA(x) (( x) - 0x80000000)41 #define PA2KA(x) (( x) + 0x80000000)40 #define KA2PA(x) (((__address) (x)) - 0x80000000) 41 #define PA2KA(x) (((__address) (x)) + 0x80000000) 42 42 43 43 /* -
arch/ppc/include/mm/page.h
rf4a61ef r3526da33 36 36 #define PAGE_SIZE FRAME_SIZE 37 37 38 #define KA2PA(x) (( x) - 0x80000000)39 #define PA2KA(x) (( x) + 0x80000000)38 #define KA2PA(x) (((__address) (x)) - 0x80000000) 39 #define PA2KA(x) (((__address) (x)) + 0x80000000) 40 40 41 41 #define PTL0_INDEX_ARCH(vaddr) 0
Note:
See TracChangeset
for help on using the changeset viewer.