File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -59,24 +59,24 @@ pub enum InvalidIoMap {
59
59
/// start of the TSS.
60
60
TooFarFromTss {
61
61
/// The distance of the IO permissions bitmap from the beginning of the TSS.
62
- distance : usize
62
+ distance : usize ,
63
63
} ,
64
64
/// The final byte of the IO permissions bitmap was not 0xff
65
65
InvalidTerminatingByte {
66
66
/// The byte found at the end of the IO permissions bitmap.
67
- byte : u8
67
+ byte : u8 ,
68
68
} ,
69
69
/// The IO permissions bitmap exceeds the maximum length (8193).
70
70
TooLong {
71
71
/// The length of the IO permissions bitmap.
72
- len : usize
72
+ len : usize ,
73
73
} ,
74
74
/// The `iomap_base` in the `TaskStateSegment` struct was not what was expected.
75
75
InvalidBase {
76
76
/// The expected `iomap_base` to be set in the `TaskStateSegment` struct.
77
77
expected : u16 ,
78
78
/// The actual `iomap_base` set in the `TaskStateSegment` struct.
79
- got : u16
79
+ got : u16 ,
80
80
} ,
81
81
}
82
82
You can’t perform that action at this time.
0 commit comments