File tree 1 file changed +4
-4
lines changed
1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -46,23 +46,23 @@ pub enum InvalidIoMap {
46
46
/// start of the TSS.
47
47
TooFarFromTss {
48
48
/// The distance of the IO permissions bitmap from the beginning of the TSS.
49
- distance : usize
49
+ distance : usize ,
50
50
} ,
51
51
/// The final byte of the IO permissions bitmap was not 0xff
52
52
InvalidTerminatingByte {
53
53
/// The byte found at the end of the IO permissions bitmap.
54
- byte : u8
54
+ byte : u8 ,
55
55
} ,
56
56
/// The IO permissions bitmap exceeds the maximum length (8193).
57
57
TooLong {
58
58
/// The length of the IO permissions bitmap.
59
- len : usize
59
+ len : usize ,
60
60
} ,
61
61
/// The `iomap_base` in the `TaskStateSegment` struct was not what was expected.
62
62
InvalidBase {
63
63
/// The expected `iomap_base` to be set in the `TaskStateSegment` struct.
64
64
expected : u16 ,
65
65
/// The actual `iomap_base` set in the `TaskStateSegment` struct.
66
- got : u16
66
+ got : u16 ,
67
67
} ,
68
68
}
You can’t perform that action at this time.
0 commit comments