Changeset 567807b1 in mainline for arch/amd64/include/mm/page.h
- Timestamp:
- 2006-05-24T17:03:29Z (19 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 8d6bc2d5
- Parents:
- 82da5f5
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
arch/amd64/include/mm/page.h
r82da5f5 r567807b1 107 107 #ifndef __ASM__ 108 108 109 /* Page fault error codes. */ 110 111 /** When bit on this position is 0, the page fault was caused by a not-present page. */ 112 #define PFERR_CODE_P (1<<0) 113 114 /** When bit on this position is 1, the page fault was caused by a write. */ 115 #define PFERR_CODE_RW (1<<1) 116 117 /** When bit on this position is 1, the page fault was caused in user mode. */ 118 #define PFERR_CODE_US (1<<2) 119 120 /** When bit on this position is 1, a reserved bit was set in page directory. */ 121 #define PFERR_CODE_RSVD (1<<3) 122 123 /** When bit on this position os 1, the page fault was caused during instruction fecth. */ 124 #define PFERR_CODE_ID (1<<4) 125 109 126 /** Page Table Entry. */ 110 127 struct page_specifier {
Note:
See TracChangeset
for help on using the changeset viewer.