Rev 534 | Rev 646 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed
Rev 534 | Rev 617 | ||
---|---|---|---|
Line 64... | Line 64... | ||
64 | #define SET_PTL1_FLAGS_ARCH(ptl0, i, x) |
64 | #define SET_PTL1_FLAGS_ARCH(ptl0, i, x) |
65 | #define SET_PTL2_FLAGS_ARCH(ptl1, i, x) |
65 | #define SET_PTL2_FLAGS_ARCH(ptl1, i, x) |
66 | #define SET_PTL3_FLAGS_ARCH(ptl2, i, x) |
66 | #define SET_PTL3_FLAGS_ARCH(ptl2, i, x) |
67 | #define SET_FRAME_FLAGS_ARCH(ptl3, i, x) |
67 | #define SET_FRAME_FLAGS_ARCH(ptl3, i, x) |
68 | 68 | ||
- | 69 | union page_address { |
|
- | 70 | __address address; |
|
- | 71 | struct { |
|
- | 72 | __u64 vpn : 51; /**< Virtual Page Number. */ |
|
- | 73 | unsigned offset : 13; /**< Offset. */ |
|
- | 74 | } __attribute__ ((packed)); |
|
- | 75 | }; |
|
- | 76 | ||
- | 77 | typedef union page_address page_address_t; |
|
- | 78 | ||
69 | extern void page_arch_init(void); |
79 | extern void page_arch_init(void); |
70 | 80 | ||
71 | #endif |
81 | #endif |