Rev 1857 | Rev 2068 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed
| Rev 1857 | Rev 1860 | ||
|---|---|---|---|
| Line 45... | Line 45... | ||
| 45 | 45 | ||
| 46 | union frame_address { |
46 | union frame_address { |
| 47 | uintptr_t address; |
47 | uintptr_t address; |
| 48 | struct { |
48 | struct { |
| 49 | unsigned : 23; |
49 | unsigned : 23; |
| 50 | uint64_t pfn : 28; /**< Physical Frame Number. */ |
50 | uint64_t pfn : 28; /**< Physical Frame Number. */ |
| 51 | unsigned offset : 13; /**< Offset. */ |
51 | unsigned offset : 13; /**< Offset. */ |
| 52 | } __attribute__ ((packed)); |
52 | } __attribute__ ((packed)); |
| 53 | }; |
53 | }; |
| 54 | 54 | ||
| 55 | typedef union frame_address frame_address_t; |
55 | typedef union frame_address frame_address_t; |
| 56 | 56 | ||