Skip to content

Commit c8bd5b2

Browse files
authored
Merge branch 'main' into add_g4
2 parents 5c826a2 + 6338be2 commit c8bd5b2

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

CHANGELOG.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,9 @@ and this project adheres to
1616
Linux kernels newer than 5.0 compiled with `CONFIG_PVH=y` set this ELF Note,
1717
as do FreeBSD kernels.
1818
- [#5065](https://github.com/firecracker-microvm/firecracker/pull/5065) Added
19-
support for Intel AMX (Advanced Matrix Extensions).
19+
support for Intel AMX (Advanced Matrix Extensions). To be able to take and
20+
restore a snapshot of Intel AMX state, `Xsave` is used instead of `kvm_xsave`,
21+
so users need to regenerate snapshots.
2022
- [#4731](https://github.com/firecracker-microvm/firecracker/pull/4731): Added
2123
support for modifying the host TAP device name during snapshot restore.
2224

src/vmm/src/persist.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -148,7 +148,7 @@ pub enum CreateSnapshotError {
148148
}
149149

150150
/// Snapshot version
151-
pub const SNAPSHOT_VERSION: Version = Version::new(5, 0, 0);
151+
pub const SNAPSHOT_VERSION: Version = Version::new(6, 0, 0);
152152

153153
/// Creates a Microvm snapshot.
154154
pub fn create_snapshot(

0 commit comments

Comments
 (0)