(bytes: u64)
| 530 | use crate::protocol::MemoryRange; |
| 531 | |
| 532 | fn make_table(bytes: u64) -> MemoryRangeTable { |
| 533 | let mut table = MemoryRangeTable::default(); |
| 534 | if bytes > 0 { |
| 535 | table.push(MemoryRange { |
| 536 | gpa: 0, |
| 537 | length: bytes, |
| 538 | }); |
| 539 | } |
| 540 | table |
| 541 | } |
| 542 | |
| 543 | /// A controlled migration scenario with fixed timing offsets. |
| 544 | /// |