Changeset 17af882 in mainline for kernel/arch/amd64/include/arch/mm/page.h
- Timestamp:
- 2014-06-16T11:32:05Z (9 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update
- Children:
- 2cb32f9
- Parents:
- 334bf28
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
kernel/arch/amd64/include/arch/mm/page.h
r334bf28 r17af882 44 44 #ifndef __ASM__ 45 45 46 #define KA2PA(x) (((uintptr_t) (x)) - UINT64_C(0xffff 800000000000))47 #define PA2KA(x) (((uintptr_t) (x)) + UINT64_C(0xffff 800000000000))46 #define KA2PA(x) (((uintptr_t) (x)) - UINT64_C(0xffffffff80000000)) 47 #define PA2KA(x) (((uintptr_t) (x)) + UINT64_C(0xffffffff80000000)) 48 48 49 49 #else /* __ASM__ */ 50 50 51 #define KA2PA(x) ((x) - 0xffff 800000000000)52 #define PA2KA(x) ((x) + 0xffff 800000000000)51 #define KA2PA(x) ((x) - 0xffffffff80000000) 52 #define PA2KA(x) ((x) + 0xffffffff80000000) 53 53 54 54 #endif /* __ASM__ */
Note:
See TracChangeset
for help on using the changeset viewer.