Skip to content

Commit e0690be

Browse files
authored
Merge branch 'main' into awscli-errors
2 parents dd8baaa + 51a324a commit e0690be

File tree

4 files changed

+8
-2
lines changed

4 files changed

+8
-2
lines changed

.buildkite/common.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,8 @@
2525
"m7a.metal-48xl", # AMD Genoa
2626
"m6g.metal", # Graviton2
2727
"m7g.metal", # Graviton3
28+
"m8g.metal-24xl", # Graviton4 1 socket
29+
"m8g.metal-48xl", # Graviton4 2 sockets
2830
]
2931
# fmt: on
3032

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

README.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -141,6 +141,8 @@ We test all combinations of:
141141
| m7a.metal-48xl | | | |
142142
| m6g.metal | | | |
143143
| m7g.metal | | | |
144+
| m8g.metal-24xl | | | |
145+
| m8g.metal-48xl | | | |
144146

145147
## Known issues and Limitations
146148

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)