Changeset 8776c46 in mainline
- Timestamp:
- 2012-09-11T21:45:05Z (13 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 68c2e32
- Parents:
- 3451129
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
kernel/arch/arm32/include/mm/page_fault.h
r3451129 r8776c46 49 49 unsigned domain : 4; 50 50 unsigned zero : 1; 51 unsigned sbz0 : 1;51 unsigned lpae : 1; /**< Needs LPAE support implemented */ 52 52 unsigned fs : 1; /**< armv6+ mandated, earlier IPLM. DEFINED */ 53 53 unsigned wr : 1; /**< armv6+ only */ 54 unsigned should_be_zero : 20; 55 } ATTRIBUTE_PACKED data; 54 unsigned ext : 1 ; /**< external abort */ 55 unsigned cm : 1; /**< Cache maintenance, needs LPAE support */ 56 unsigned should_be_zero : 18; 57 } data; 56 58 struct { 57 59 unsigned status : 4; … … 59 61 unsigned fs : 1; 60 62 unsigned should_be_zero : 21; 61 } ATTRIBUTE_PACKEDinst;63 } inst; 62 64 uint32_t raw; 63 65 } fault_status_t;
Note:
See TracChangeset
for help on using the changeset viewer.