Changeset 3f03199 in mainline for kernel/genarch/include/genarch/mm/page_pt.h
- Timestamp:
- 2013-09-15T06:33:53Z (12 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 9348862
- Parents:
- dd7078c (diff), 1c0cef0 (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the(diff)
links above to see all the changes relative to each parent. - File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
kernel/genarch/include/genarch/mm/page_pt.h
rdd7078c r3f03199 58 58 #define PTL3_ENTRIES PTL3_ENTRIES_ARCH 59 59 60 /* Table sizes in each level */ 61 #define PTL0_SIZE PTL0_SIZE_ARCH 62 #define PTL1_SIZE PTL1_SIZE_ARCH 63 #define PTL2_SIZE PTL2_SIZE_ARCH 64 #define PTL3_SIZE PTL3_SIZE_ARCH 60 /* Table sizes in each level (in frames) */ 61 #define PTL0_FRAMES PTL0_FRAMES_ARCH 62 #define PTL1_FRAMES PTL1_FRAMES_ARCH 63 #define PTL2_FRAMES PTL2_FRAMES_ARCH 64 #define PTL3_FRAMES PTL3_FRAMES_ARCH 65 66 /* Table sizes in each level (in bytes) */ 67 #define PTL0_SIZE FRAMES2SIZE(PTL0_FRAMES) 68 #define PTL1_SIZE FRAMES2SIZE(PTL1_FRAMES) 69 #define PTL2_SIZE FRAMES2SIZE(PTL2_FRAMES) 70 #define PTL3_SIZE FRAMES2SIZE(PTL3_FRAMES) 65 71 66 72 /*
Note:
See TracChangeset
for help on using the changeset viewer.