Skip to content

Commit f4a24b2

Browse files
authored
Merge branch 'main' into hotplug
2 parents 70ad97e + 7194977 commit f4a24b2

17 files changed

Lines changed: 322 additions & 673 deletions

File tree

Cargo.lock

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

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.6.1", features = ["derive", "string"] }
1717
displaydoc = "0.2.5"
18-
libc = "0.2.185"
18+
libc = "0.2.186"
1919
log-instrument = { path = "../log-instrument", optional = true }
2020
serde = { version = "1.0.228", features = ["derive"] }
2121
serde_json = "1.0.149"

src/firecracker/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ gdb = ["vmm/gdb"]
2323
[dependencies]
2424
displaydoc = "0.2.5"
2525
event-manager = "0.4.2"
26-
libc = "0.2.185"
26+
libc = "0.2.186"
2727
log-instrument = { path = "../log-instrument", optional = true }
2828
micro_http = { git = "https://github.com/firecracker-microvm/micro-http" }
2929
serde = { version = "1.0.228", features = ["derive"] }
@@ -41,7 +41,7 @@ serde_json = "1.0.149"
4141

4242
[dev-dependencies]
4343
cargo_toml = "0.22.3"
44-
libc = "0.2.185"
44+
libc = "0.2.186"
4545
regex = { version = "1.12.3", default-features = false, features = [
4646
"std",
4747
"unicode-perl",

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.185"
18+
libc = "0.2.186"
1919
log-instrument = { path = "../log-instrument", optional = true }
2020
regex = { version = "1.12.3", default-features = false, features = ["std"] }
2121
thiserror = "2.0.18"

src/rebase-snap/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ tracing = ["log-instrument", "utils/tracing"]
1414

1515
[dependencies]
1616
displaydoc = "0.2.5"
17-
libc = "0.2.185"
17+
libc = "0.2.186"
1818
log-instrument = { path = "../log-instrument", optional = true }
1919
thiserror = "2.0.18"
2020
vmm-sys-util = "0.15.0"

src/seccompiler/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ bench = false
1919
bitcode = { version = "0.6.9", features = ["serde"] }
2020
clap = { version = "4.6.1", features = ["derive", "string"] }
2121
displaydoc = "0.2.5"
22-
libc = "0.2.185"
22+
libc = "0.2.186"
2323
serde = { version = "1.0.228", features = ["derive"] }
2424
serde_json = "1.0.149"
2525
thiserror = "2.0.18"

src/snapshot-editor/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ clap = { version = "4.6.1", features = ["derive", "string"] }
1717
displaydoc = "0.2.5"
1818

1919
fc_utils = { package = "utils", path = "../utils" }
20-
libc = "0.2.185"
20+
libc = "0.2.186"
2121
log-instrument = { path = "../log-instrument", optional = true }
2222
semver = "1.0.28"
2323
thiserror = "2.0.18"

src/utils/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ tracing = ["log-instrument"]
1313

1414
[dependencies]
1515
displaydoc = "0.2.5"
16-
libc = "0.2.185"
16+
libc = "0.2.186"
1717
log-instrument = { path = "../log-instrument", optional = true }
1818
thiserror = "2.0.18"
1919

src/vmm/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ gdbstub = { version = "0.7.10", optional = true }
3535
gdbstub_arch = { version = "0.3.3", optional = true }
3636
kvm-bindings = { version = "0.14.0", features = ["fam-wrappers", "serde"] }
3737
kvm-ioctls = "0.24.0"
38-
libc = "0.2.185"
38+
libc = "0.2.186"
3939
linux-loader = "0.13.2"
4040
log = { version = "0.4.29", features = ["std", "serde"] }
4141
log-instrument = { path = "../log-instrument", optional = true }

src/vmm/src/device_manager/pci_mngr.rs

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -93,11 +93,12 @@ impl PciDevices {
9393

9494
debug!(
9595
"Inserting MMIO BAR region: {:#x}:{:#x}",
96-
virtio_device_locked.bar_address, CAPABILITY_BAR_SIZE
96+
virtio_device_locked.config_bar_addr(),
97+
CAPABILITY_BAR_SIZE
9798
);
9899
vm.common.mmio_bus.insert(
99100
virtio_device.clone(),
100-
virtio_device_locked.bar_address,
101+
virtio_device_locked.config_bar_addr(),
101102
CAPABILITY_BAR_SIZE,
102103
)?;
103104

0 commit comments

Comments
 (0)