We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d41756a commit 43233b6Copy full SHA for 43233b6
src/structures/idt.rs
@@ -1321,12 +1321,13 @@ mod test {
1321
15 => &idt.reserved_1.options,
1322
17 => &idt.alignment_check.options,
1323
18 => &idt.machine_check.options,
1324
- i @ 21..=29 => &idt.reserved_2[i - 21].options,
+ i @ 21..=28 => &idt.reserved_2[i - 21].options,
1325
+ 29 => &idt.vmm_communication_exception.options,
1326
30 => &idt.security_exception.options,
1327
31 => &idt.reserved_3.options,
1328
other => &idt[other].options,
1329
};
- options.bits.get_bit(15)
1330
+ options.0.get_bit(15)
1331
}
1332
1333
#[test]
0 commit comments