Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,9 @@ and this project adheres to
Linux kernels newer than 5.0 compiled with `CONFIG_PVH=y` set this ELF Note,
as do FreeBSD kernels.
- [#5065](https://github.com/firecracker-microvm/firecracker/pull/5065) Added
support for Intel AMX (Advanced Matrix Extensions).
support for Intel AMX (Advanced Matrix Extensions). To be able to take and
restore a snapshot of Intel AMX state, `Xsave` is used instead of `kvm_xsave`,
so users need to regenerate snapshots.
- [#4731](https://github.com/firecracker-microvm/firecracker/pull/4731): Added
support for modifying the host TAP device name during snapshot restore.

Expand Down
2 changes: 1 addition & 1 deletion src/vmm/src/persist.rs
Original file line number Diff line number Diff line change
Expand Up @@ -148,7 +148,7 @@ pub enum CreateSnapshotError {
}

/// Snapshot version
pub const SNAPSHOT_VERSION: Version = Version::new(5, 0, 0);
pub const SNAPSHOT_VERSION: Version = Version::new(6, 0, 0);

/// Creates a Microvm snapshot.
pub fn create_snapshot(
Expand Down