(entry: RedirectionTableEntry)
| 62 | ((entry >> 15) & 0x1u64) as u8 |
| 63 | } |
| 64 | fn interrupt_mask(entry: RedirectionTableEntry) -> u8 { |
| 65 | ((entry >> 16) & 0x1u64) as u8 |
| 66 | } |
| 67 | fn destination_field(entry: RedirectionTableEntry) -> u8 { |
| 68 | // When the destination mode is physical, the destination field should only |
| 69 | // be defined through bits 56-59, as defined in the IOAPIC specification. |