Skip to content

Commit 65690d4

Browse files
authored
Merge branch 'main' into mincore-diff-snapshots
2 parents 4b4a273 + ea6a553 commit 65690d4

File tree

26 files changed

+149
-158
lines changed

26 files changed

+149
-158
lines changed

.buildkite/pipeline_pr.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -53,6 +53,7 @@
5353
not changed_files
5454
or any(x.suffix in [".rs", ".toml", ".lock"] for x in changed_files)
5555
or any(x.parent.name == "devctr" for x in changed_files)
56+
or any(x.name == "test_kani.py" for x in changed_files)
5657
):
5758
kani_grp = pipeline.build_group(
5859
"🔍 Kani",

CHANGELOG.md

Lines changed: 3 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -43,6 +43,9 @@ and this project adheres to
4343
MMDS to set `Content-Type` header correctly (i.e. `Content-Type: text/plain`
4444
for IMDS-formatted or error responses and `Content-Type: application/json` for
4545
JSON-formatted responses).
46+
- [#5260](https://github.com/firecracker-microvm/firecracker/pull/5260): Fixed a
47+
bug allowing the block device to starve all other devices when backed by a
48+
sufficiently slow drive.
4649

4750
## [1.12.0]
4851

@@ -164,13 +167,6 @@ and this project adheres to
164167
the empty seccomp policy as default for debug builds to avoid crashes on
165168
syscalls introduced by debug assertions from Rust 1.80.0.
166169

167-
## [1.10.1]
168-
169-
### Changed
170-
171-
- [#4907](https://github.com/firecracker-microvm/firecracker/pull/4907): Bumped
172-
the snapshot version to 4.0.0, so users need to regenerate snapshots.
173-
174170
## [1.10.0]
175171

176172
### Added

Cargo.lock

Lines changed: 20 additions & 20 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/acpi-tables/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ bench = false
1616
displaydoc = "0.2.5"
1717
thiserror = "2.0.12"
1818
vm-memory = { version = "0.16.2", features = ["backend-mmap", "backend-bitmap"] }
19-
zerocopy = { version = "0.8.25", features = ["derive"] }
19+
zerocopy = { version = "0.8.26", features = ["derive"] }
2020

2121
[lints]
2222
workspace = true

src/clippy-tracing/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ clap = { version = "4.5.40", features = ["derive"] }
1414
itertools = "0.14.0"
1515
proc-macro2 = { version = "1.0.95", features = ["span-locations"] }
1616
quote = "1.0.40"
17-
syn = { version = "2.0.103", features = ["full", "extra-traits", "visit", "visit-mut", "printing"] }
17+
syn = { version = "2.0.104", features = ["full", "extra-traits", "visit", "visit-mut", "printing"] }
1818
walkdir = "2.5.0"
1919

2020
[dev-dependencies]

src/cpu-template-helper/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ tracing = ["log-instrument", "vmm/tracing"]
1515
[dependencies]
1616
clap = { version = "4.5.40", features = ["derive", "string"] }
1717
displaydoc = "0.2.5"
18-
libc = "0.2.173"
18+
libc = "0.2.174"
1919
log-instrument = { path = "../log-instrument", optional = true }
2020
serde = { version = "1.0.219", features = ["derive"] }
2121
serde_json = "1.0.140"

src/firecracker/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ gdb = ["vmm/gdb"]
2222
[dependencies]
2323
displaydoc = "0.2.5"
2424
event-manager = "0.4.1"
25-
libc = "0.2.173"
25+
libc = "0.2.174"
2626
log-instrument = { path = "../log-instrument", optional = true }
2727
micro_http = { git = "https://github.com/firecracker-microvm/micro-http" }
2828
serde = { version = "1.0.219", features = ["derive"] }
@@ -41,7 +41,7 @@ serde_json = "1.0.140"
4141

4242
[dev-dependencies]
4343
cargo_toml = "0.22.1"
44-
libc = "0.2.173"
44+
libc = "0.2.174"
4545
regex = { version = "1.11.1", default-features = false, features = ["std", "unicode-perl"] }
4646

4747
# Dev-Dependencies for uffd examples

src/firecracker/examples/uffd/uffd_utils.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -191,7 +191,7 @@ impl UffdHandler {
191191

192192
fn zero_out(&mut self, addr: u64) -> bool {
193193
match unsafe { self.uffd.zeropage(addr as *mut _, self.page_size, true) } {
194-
Ok(r) if r >= 0 => true,
194+
Ok(_) => true,
195195
Err(Error::ZeropageFailed(error)) if error as i32 == libc::EAGAIN => false,
196196
r => panic!("Unexpected zeropage result: {:?}", r),
197197
}

src/jailer/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ bench = false
1515
tracing = ["log-instrument", "utils/tracing"]
1616

1717
[dependencies]
18-
libc = "0.2.173"
18+
libc = "0.2.174"
1919
log-instrument = { path = "../log-instrument", optional = true }
2020
regex = { version = "1.11.1", default-features = false, features = ["std"] }
2121
thiserror = "2.0.12"

src/log-instrument-macros/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ bench = false
1313
[dependencies]
1414
proc-macro2 = "1.0.95"
1515
quote = "1.0.40"
16-
syn = { version = "2.0.103", features = ["full", "extra-traits"] }
16+
syn = { version = "2.0.104", features = ["full", "extra-traits"] }
1717

1818
[lints]
1919
workspace = true

0 commit comments

Comments
 (0)