Changeset 95e882d in mainline
- Timestamp:
- 2011-11-13T22:11:13Z (13 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- e6a6c02
- Parents:
- ddcc8a0
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
kernel/generic/include/mm/frame.h
rddcc8a0 r95e882d 58 58 /** Do not reserve / unreserve memory. */ 59 59 #define FRAME_NO_RESERVE 0x8 60 /** Allocate a frame which can be identity-mapped. */ 61 #define FRAME_LOWMEM 0x10 60 62 61 63 typedef uint8_t zone_flags_t; … … 67 69 /** Zone is used by firmware (not available for allocation) */ 68 70 #define ZONE_FIRMWARE 0x10 71 /** Zone contains memory that can be identity-mapped */ 72 #define ZONE_LOWMEM 0x20 69 73 70 /** Currently there is no equivalent zone flags 71 for frame flags */ 72 #define FRAME_TO_ZONE_FLAGS(frame_flags) 0 74 #define FRAME_TO_ZONE_FLAGS(ff) (((ff) & FRAME_LOWMEM) ? ZONE_LOWMEM : 0) 73 75 74 76 typedef struct {
Note:
See TracChangeset
for help on using the changeset viewer.