dependabot[bot]
922bc0d9aa
build: Bump remain from 0.2.10 to 0.2.11 in /fuzz
...
Bumps [remain](https://github.com/dtolnay/remain ) from 0.2.10 to 0.2.11.
- [Release notes](https://github.com/dtolnay/remain/releases )
- [Commits](https://github.com/dtolnay/remain/compare/0.2.10...0.2.11 )
---
updated-dependencies:
- dependency-name: remain
dependency-type: indirect
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com >
2023-07-24 23:56:30 +00:00
dependabot[bot]
d760a77fbb
build: Bump hermit-abi from 0.3.1 to 0.3.2
...
Bumps [hermit-abi](https://github.com/hermitcore/rusty-hermit ) from 0.3.1 to 0.3.2.
- [Release notes](https://github.com/hermitcore/rusty-hermit/releases )
- [Commits](https://github.com/hermitcore/rusty-hermit/compare/hermit-abi-0.3.1...hermit-abi-0.3.2 )
---
updated-dependencies:
- dependency-name: hermit-abi
dependency-type: indirect
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com >
2023-07-22 00:30:28 +00:00
dependabot[bot]
ad8cdb5e85
build: Bump quote from 1.0.29 to 1.0.31 in /fuzz
...
Bumps [quote](https://github.com/dtolnay/quote ) from 1.0.29 to 1.0.31.
- [Release notes](https://github.com/dtolnay/quote/releases )
- [Commits](https://github.com/dtolnay/quote/compare/1.0.29...1.0.31 )
---
updated-dependencies:
- dependency-name: quote
dependency-type: indirect
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com >
2023-07-22 00:14:13 +00:00
dependabot[bot]
889d06277a
build: Bump async-trait from 0.1.68 to 0.1.71
...
Bumps [async-trait](https://github.com/dtolnay/async-trait ) from 0.1.68 to 0.1.71.
- [Release notes](https://github.com/dtolnay/async-trait/releases )
- [Commits](https://github.com/dtolnay/async-trait/compare/0.1.68...0.1.71 )
---
updated-dependencies:
- dependency-name: async-trait
dependency-type: indirect
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com >
2023-07-20 17:05:40 -07:00
dependabot[bot]
e3fc5c83bb
build: Bump ryu from 1.0.14 to 1.0.15 in /fuzz
...
Bumps [ryu](https://github.com/dtolnay/ryu ) from 1.0.14 to 1.0.15.
- [Release notes](https://github.com/dtolnay/ryu/releases )
- [Commits](https://github.com/dtolnay/ryu/compare/1.0.14...1.0.15 )
---
updated-dependencies:
- dependency-name: ryu
dependency-type: indirect
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com >
2023-07-20 23:44:43 +00:00
dependabot[bot]
06dc25cbd6
build: Bump unicode-ident from 1.0.10 to 1.0.11 in /fuzz
...
Bumps [unicode-ident](https://github.com/dtolnay/unicode-ident ) from 1.0.10 to 1.0.11.
- [Release notes](https://github.com/dtolnay/unicode-ident/releases )
- [Commits](https://github.com/dtolnay/unicode-ident/compare/1.0.10...1.0.11 )
---
updated-dependencies:
- dependency-name: unicode-ident
dependency-type: indirect
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com >
2023-07-20 00:15:47 +00:00
Yu Li
4ef388b67c
tests: add integration for qcow backing file
...
This test case creates a new qcow2 file using the image of ubuntu as
its backing file, and boot a virtual machine with this image file.
Signed-off-by: Yu Li <liyu.yukiteru@bytedance.com >
2023-07-19 13:52:43 +01:00
Yu Li
5ffc6d6107
block: qcow: initialize qcow clusters off the backing file when present
...
This preserves any data that the backing file had on a cluster when
doing a write to a subset of that cluster. These writes cause a
performance penalty on creating new clusters if a backing file is
present.
This commit is based on crosvm implementation:
https://chromium.googlesource.com/crosvm/crosvm/+/5ad3bc345904b252efd6dd2ef4853f5ee06ae3c5
Signed-off-by: Yu Li <liyu.yukiteru@bytedance.com >
2023-07-19 13:52:43 +01:00
Yu Li
e98ea329bf
block: qcow: read from the backing file if present on read miss
...
Reads to qcow files with backing files will fall through to the backing
file if there is no allocated cluster. As of this change, a write will
still trash the cluster and hide any data already present.
This commit is based on crosvm implementation:
https://chromium.googlesource.com/crosvm/crosvm/+/d8144a56e26ca09e2c7ff97ed63c57e7e7965674
Signed-off-by: Yu Li <liyu.yukiteru@bytedance.com >
2023-07-19 13:52:43 +01:00
Yu Li
081a6ebb51
block: qcow: support opening backing files
...
This commit allows opening qcow with a backing file, which supports any
type implementing `BlockBackend`.
This commit is based on crosvm implementation:
https://chromium.googlesource.com/crosvm/crosvm/+/9ca6039b030a5c83062cfec9a5ff52f42814fa13
Signed-off-by: Yu Li <liyu.yukiteru@bytedance.com >
2023-07-19 13:52:43 +01:00
Yu Li
ffe78c98fd
qcow: bugfix: do not write v3 items to qcow header
...
Fixes: 3f02ccaa8
Signed-off-by: Yu Li <liyu.yukiteru@bytedance.com >
2023-07-19 13:52:43 +01:00
Yu Li
741d640330
block: introduce trait BlockBackend for block types
...
This commit introduces the trait `BlockBackend` with generic ops
including read, write and seek, which can be used for common I/O
interfaces for the block types without using `DiskFile` and `AsyncIo`.
Signed-off-by: Yu Li <liyu.yukiteru@bytedance.com >
2023-07-19 13:52:43 +01:00
Yu Li
447cad3861
block: merge qcow, vhdx and block_util into block crate
...
This commit merges crates `qcow`, `vhdx` and `block_util` into the
crate `block`, which can allow `qcow` to use functions from `block_util`
without introducing a circular crate dependency.
This commit is based on crosvm implementation:
https://chromium.googlesource.com/crosvm/crosvm/+/f2eecc4152eca8d395566cffa2c102ec090a152d
Signed-off-by: Yu Li <liyu.yukiteru@bytedance.com >
2023-07-19 13:52:43 +01:00
Yu Li
47fbe9af1e
block_util: add FixedVhd for its Disk type
...
This commit introduces a generic type `FixedVhd` for its sync and async
disk I/O types, and the disk I/O types will use it directly instead of
maintaining a file themselves.
Signed-off-by: Yu Li <liyu.yukiteru@bytedance.com >
2023-07-19 13:52:43 +01:00
dependabot[bot]
3f87a81e2b
build: Bump ryu from 1.0.14 to 1.0.15
...
Bumps [ryu](https://github.com/dtolnay/ryu ) from 1.0.14 to 1.0.15.
- [Release notes](https://github.com/dtolnay/ryu/releases )
- [Commits](https://github.com/dtolnay/ryu/compare/1.0.14...1.0.15 )
---
updated-dependencies:
- dependency-name: ryu
dependency-type: indirect
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com >
2023-07-19 00:18:34 +00:00
dependabot[bot]
aeae5255c8
build: Bump signal-hook from 0.3.15 to 0.3.17 in /fuzz
...
Bumps [signal-hook](https://github.com/vorner/signal-hook ) from 0.3.15 to 0.3.17.
- [Changelog](https://github.com/vorner/signal-hook/blob/master/CHANGELOG.md )
- [Commits](https://github.com/vorner/signal-hook/compare/v0.3.15...v0.3.17 )
---
updated-dependencies:
- dependency-name: signal-hook
dependency-type: indirect
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com >
2023-07-19 00:02:13 +00:00
Rob Bradford
0039f45276
vmm: Use LocalX2Apic in MADT/MAT
...
Using this over the LocalApic supports APIC IDs (and hence number of
vCPUs) above 256 (size increases from u8 to u32.)
Signed-off-by: Rob Bradford <rbradford@rivosinc.com >
2023-07-18 09:35:13 -07:00
Rob Bradford
b792d4751d
vmm: Encode ACPI name for CPUs using hexadecimal
...
This increases the number of CPUs that are supported.
Signed-off-by: Rob Bradford <rbradford@rivosinc.com >
2023-07-17 09:57:51 -07:00
dependabot[bot]
dc6c3a249d
build: Bump async-channel from 1.8.0 to 1.9.0
...
Bumps [async-channel](https://github.com/smol-rs/async-channel ) from 1.8.0 to 1.9.0.
- [Release notes](https://github.com/smol-rs/async-channel/releases )
- [Changelog](https://github.com/smol-rs/async-channel/blob/master/CHANGELOG.md )
- [Commits](https://github.com/smol-rs/async-channel/compare/v1.8.0...v1.9.0 )
---
updated-dependencies:
- dependency-name: async-channel
dependency-type: indirect
update-type: version-update:semver-minor
...
Signed-off-by: dependabot[bot] <support@github.com >
2023-07-15 10:33:11 +00:00
dependabot[bot]
4c7cf634b9
build: Bump darling from 0.20.1 to 0.20.3 in /fuzz
...
Bumps [darling](https://github.com/TedDriggs/darling ) from 0.20.1 to 0.20.3.
- [Release notes](https://github.com/TedDriggs/darling/releases )
- [Changelog](https://github.com/TedDriggs/darling/blob/master/CHANGELOG.md )
- [Commits](https://github.com/TedDriggs/darling/compare/v0.20.1...v0.20.3 )
---
updated-dependencies:
- dependency-name: darling
dependency-type: indirect
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com >
2023-07-15 00:16:47 +00:00
Alyssa Ross
69bd0036d9
vmm: support removing devices before VM is booted
...
If the VM has been configured but not yet booted, all we need to do to
support removing a device is to remove it from the config, so it will
never be created.
Signed-off-by: Alyssa Ross <hi@alyssa.is >
2023-07-14 10:01:23 -07:00
Yu Li
87d81dd2b1
arch: remove redundant closing paren in log
...
Signed-off-by: Yu Li <liyu.yukiteru@bytedance.com >
2023-07-14 09:36:27 -07:00
Yu Li
f03c3b737f
main: add missing comma in for net param
...
Signed-off-by: Yu Li <liyu.yukiteru@bytedance.com >
2023-07-14 09:36:27 -07:00
Alyssa Ross
f346687e3d
vmm: default GDB to false when deserializing
...
This fixes the valid VM config unit tests, which would otherwise fail
to deserialize their expected JSON config due to the missing "gdb" field.
Signed-off-by: Alyssa Ross <hi@alyssa.is >
2023-07-14 09:34:39 -07:00
dependabot[bot]
953c238544
build: Bump mshv-ioctls from afc1581 to 243953f
...
Bumps [mshv-ioctls](https://github.com/rust-vmm/mshv ) from `afc1581` to `243953f`.
- [Commits](https://github.com/rust-vmm/mshv/compare/afc1581a2c482a1eddc4446af50e068fa7c0006e...243953f7ef1c21ed6eebfece80c98e706ebe6a8f )
---
updated-dependencies:
- dependency-name: mshv-ioctls
dependency-type: direct:production
...
Signed-off-by: dependabot[bot] <support@github.com >
2023-07-14 00:16:04 +00:00
dependabot[bot]
9ea052785e
build: Bump ryu from 1.0.13 to 1.0.14 in /fuzz
...
Bumps [ryu](https://github.com/dtolnay/ryu ) from 1.0.13 to 1.0.14.
- [Release notes](https://github.com/dtolnay/ryu/releases )
- [Commits](https://github.com/dtolnay/ryu/compare/1.0.13...1.0.14 )
---
updated-dependencies:
- dependency-name: ryu
dependency-type: indirect
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com >
2023-07-13 23:31:35 +00:00
dependabot[bot]
10c33ab257
build: Bump regex from 1.8.3 to 1.9.1
...
Bumps [regex](https://github.com/rust-lang/regex ) from 1.8.3 to 1.9.1.
- [Release notes](https://github.com/rust-lang/regex/releases )
- [Changelog](https://github.com/rust-lang/regex/blob/master/CHANGELOG.md )
- [Commits](https://github.com/rust-lang/regex/compare/1.8.3...1.9.1 )
---
updated-dependencies:
- dependency-name: regex
dependency-type: indirect
update-type: version-update:semver-minor
...
Signed-off-by: dependabot[bot] <support@github.com >
2023-07-13 08:17:17 -07:00
dependabot[bot]
14af5e1679
build: Bump thiserror from 1.0.40 to 1.0.43 in /fuzz
...
Bumps [thiserror](https://github.com/dtolnay/thiserror ) from 1.0.40 to 1.0.43.
- [Release notes](https://github.com/dtolnay/thiserror/releases )
- [Commits](https://github.com/dtolnay/thiserror/compare/1.0.40...1.0.43 )
---
updated-dependencies:
- dependency-name: thiserror
dependency-type: indirect
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com >
2023-07-13 08:17:02 -07:00
Yu Li
8ab2d5e539
build: Fix beta clippy issue: private item shadows public glob re-export
...
error: private item shadows public glob re-export
Error: --> hypervisor/src/mshv/mod.rs:42:27
|
42 | CpuIdEntry, FpuState, LapicState, MsrEntry, SpecialRegisters, StandardRegisters,
| ^^^^^^^^^^
|
note: the name `LapicState` in the type namespace is supposed to be publicly re-exported here
--> hypervisor/src/mshv/mod.rs:16:9
|
16 | pub use mshv_bindings::*;
| ^^^^^^^^^^^^^^^^
note: but the private item here shadows it
--> hypervisor/src/mshv/mod.rs:42:27
|
42 | CpuIdEntry, FpuState, LapicState, MsrEntry, SpecialRegisters, StandardRegisters,
| ^^^^^^^^^^
= note: `-D hidden-glob-reexports` implied by `-D warnings`
Signed-off-by: Yu Li <liyu.yukiteru@bytedance.com >
2023-07-13 08:16:30 -07:00
Yu Li
63226e2b80
build: Fix beta clippy issue (arc_with_non_send_sync)
...
warning: usage of `Arc<T>` where `T` is not `Send` or `Sync`
--> virtio-devices/src/vsock/device.rs:376:22
|
376 | backend: Arc::new(RwLock::new(backend)),
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
= help: consider using `Rc<T>` instead or wrapping `T` in a std::sync type like `Mutex<T>`
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#arc_with_non_send_sync
= note: `#[warn(clippy::arc_with_non_send_sync)]` on by default
The vsock backend may be shared between threads, so the type `B` in
`Vsock` should be `VsockBackend` and `Sync`.
Considering that `api_receiver` and `gdb_receiver` are only used in vmm
threads, the `Arc` can be replaced by `Rc`.
Signed-off-by: Yu Li <liyu.yukiteru@bytedance.com >
2023-07-13 08:16:30 -07:00
Yu Li
d0dbc7fb4d
build: Fix beta clippy issue (useless_vec)
...
warning: useless use of `vec!`
--> test_infra/src/lib.rs:111:30
|
111 | let mut events = vec![epoll::Event::new(epoll::Events::empty(), 0); 1];
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: you can use an array directly: `[epoll::Event::new(epoll::Events::empty(), 0); 1]`
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#useless_vec
= note: `#[warn(clippy::useless_vec)]` on by default
Signed-off-by: Yu Li <liyu.yukiteru@bytedance.com >
2023-07-13 08:16:30 -07:00
Yu Li
aac614e2ec
build: Fix beta clippy issue (unnecessary_cast)
...
warning: casting raw pointers to the same type and constness is unnecessary (`*const protocol::MemoryRange` -> `*const protocol::MemoryRange`)
--> vm-migration/src/protocol.rs:280:17
|
280 | self.data.as_ptr() as *const MemoryRange as *const u8,
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: try: `self.data.as_ptr()`
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#unnecessary_cast
= note: `#[warn(clippy::unnecessary_cast)]` on by default
Signed-off-by: Yu Li <liyu.yukiteru@bytedance.com >
2023-07-13 08:16:30 -07:00
dependabot[bot]
9abf8d6868
build: Bump gimli from 0.27.2 to 0.27.3
...
Bumps [gimli](https://github.com/gimli-rs/gimli ) from 0.27.2 to 0.27.3.
- [Changelog](https://github.com/gimli-rs/gimli/blob/master/CHANGELOG.md )
- [Commits](https://github.com/gimli-rs/gimli/compare/0.27.2...0.27.3 )
---
updated-dependencies:
- dependency-name: gimli
dependency-type: indirect
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com >
2023-07-12 00:22:02 +00:00
Manish Goregaokar
6fdba7ca11
build: Allow disabling io_uring
...
This gives users the chance to reduce the number of dependencies
included, which is generally good practice and also reduces code size.
Furthermore, `io_uring` specifically is a strong contender for something
one may wish to disable due to the syscall API's many security issues[1]
[1]: https://security.googleblog.com/2023/06/learnings-from-kctf-vrps-42-linux.html
Signed-off-by: Manish Goregaokar <manishsmail@gmail.com >
2023-07-11 06:19:30 -07:00
dependabot[bot]
d2e42a0ed4
build: Bump once_cell from 1.17.1 to 1.18.0
...
Bumps [once_cell](https://github.com/matklad/once_cell ) from 1.17.1 to 1.18.0.
- [Changelog](https://github.com/matklad/once_cell/blob/master/CHANGELOG.md )
- [Commits](https://github.com/matklad/once_cell/compare/v1.17.1...v1.18.0 )
---
updated-dependencies:
- dependency-name: once_cell
dependency-type: direct:production
update-type: version-update:semver-minor
...
Signed-off-by: dependabot[bot] <support@github.com >
2023-07-10 23:58:31 +00:00
dependabot[bot]
3e4d6a4081
build: Bump serde_json from 1.0.99 to 1.0.100 in /fuzz
...
Bumps [serde_json](https://github.com/serde-rs/json ) from 1.0.99 to 1.0.100.
- [Release notes](https://github.com/serde-rs/json/releases )
- [Commits](https://github.com/serde-rs/json/compare/v1.0.99...v1.0.100 )
---
updated-dependencies:
- dependency-name: serde_json
dependency-type: indirect
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com >
2023-07-10 23:19:27 +00:00
Changyuan Lyu
7f18d0a281
memory_manager: improve memory region creation
...
Instead of making an owned `zones`, using an iterator is cheaper
since `Vec::remove` may have the performance O(n) [1].
[1]: https://doc.rust-lang.org/std/vec/struct.Vec.html#method.remove
Signed-off-by: Changyuan Lyu <changyuanl@google.com >
2023-07-10 11:54:05 -07:00
dom.song
99d42bb05e
tests: Correctly parse number of host cpus > 255
...
test_cpu_affinity needs the number of host CPUs. Since it is possible
for the host to have more than 255 CPUs; increase the size of the
datatype used for parsing the string to accomodate this.
Signed-off-by: dom.song <dom.song@amperecomputing.com >
2023-07-10 11:43:03 -07:00
dependabot[bot]
dbce6cb1ce
build: Bump ryu from 1.0.13 to 1.0.14
...
Bumps [ryu](https://github.com/dtolnay/ryu ) from 1.0.13 to 1.0.14.
- [Release notes](https://github.com/dtolnay/ryu/releases )
- [Commits](https://github.com/dtolnay/ryu/compare/1.0.13...1.0.14 )
---
updated-dependencies:
- dependency-name: ryu
dependency-type: indirect
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com >
2023-07-08 00:11:55 +00:00
dependabot[bot]
cbc5e8da4a
build: Bump mshv-ioctls from d0c852d to afc1581
...
Bumps [mshv-ioctls](https://github.com/rust-vmm/mshv ) from `d0c852d` to `afc1581`.
- [Commits](https://github.com/rust-vmm/mshv/compare/d0c852d08d27323ef5ef9ec4aaeb32b1c6a68290...afc1581a2c482a1eddc4446af50e068fa7c0006e )
---
updated-dependencies:
- dependency-name: mshv-ioctls
dependency-type: direct:production
...
Signed-off-by: dependabot[bot] <support@github.com >
2023-07-07 00:14:34 +00:00
dependabot[bot]
a3ddc2779d
build: Bump smallvec from 1.10.0 to 1.11.0 in /fuzz
...
Bumps [smallvec](https://github.com/servo/rust-smallvec ) from 1.10.0 to 1.11.0.
- [Release notes](https://github.com/servo/rust-smallvec/releases )
- [Commits](https://github.com/servo/rust-smallvec/compare/v1.10.0...v1.11.0 )
---
updated-dependencies:
- dependency-name: smallvec
dependency-type: indirect
update-type: version-update:semver-minor
...
Signed-off-by: dependabot[bot] <support@github.com >
2023-07-06 23:41:27 +00:00
Yi Wang
99353856ef
tests: Add integration test for pvpanic
...
Add integration test for pvpanic, by two methods:
- the vendor id and device id of pci device in guest
- triggering a guest panic and check event-monitor.
Also, to support pvpanic-pci driver, add pvpanic config
in resources.
Signed-off-by: Yi Wang <foxywang@tencent.com >
Signed-off-by: Rob Bradford <rbradford@rivosinc.com >
2023-07-06 11:14:54 +01:00
Yi Wang
d99c0c0d1d
devices: pvpanic: add method for DeviceManager
...
Add method for DeviceManager to invoke.
Signed-off-by: Yi Wang <foxywang@tencent.com >
Signed-off-by: Rob Bradford <rbradford@rivosinc.com >
2023-07-06 11:14:54 +01:00
Yi Wang
8e9ce3ab7c
devices: pvpanic: add snapshot support
...
Add PvPanicDeviceState to retore events of pvpanic from snapshot,
and also PciConfigurationState.
Signed-off-by: Yi Wang <foxywang@tencent.com >
2023-07-06 11:14:54 +01:00
Yi Wang
3acb988c1a
devices: pvpanic: Add pci configuration for pvpanic device
...
Implemetion of BusDevice and PciDevice trait for pvpanic device.
Pvpanic device can be implemented as an ISA device or as a
PCI device, we choose PCI device for now.
Signed-off-by: Yi Wang <foxywang@tencent.com >
2023-07-06 11:14:54 +01:00
Yi Wang
ef67eab8c3
devices: Add support for pvpanic device
...
Introduce emulation of pvpanic device to allow cloud hypervisor to get
the notify from guest's pvpanic driver when guest kernel crash.
Signed-off-by: Yi Wang <foxywang@tencent.com >
2023-07-06 11:14:54 +01:00
dependabot[bot]
569a2a5f07
build: Bump remain from 0.2.8 to 0.2.10
...
Bumps [remain](https://github.com/dtolnay/remain ) from 0.2.8 to 0.2.10.
- [Release notes](https://github.com/dtolnay/remain/releases )
- [Commits](https://github.com/dtolnay/remain/compare/0.2.8...0.2.10 )
---
updated-dependencies:
- dependency-name: remain
dependency-type: direct:production
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com >
2023-07-06 00:11:22 +00:00
dependabot[bot]
353c17eb4d
build: Bump virtio-bindings from 0.2.0 to 0.2.1 in /fuzz
...
Bumps [virtio-bindings](https://github.com/rust-vmm/vm-virtio ) from 0.2.0 to 0.2.1.
- [Release notes](https://github.com/rust-vmm/vm-virtio/releases )
- [Commits](https://github.com/rust-vmm/vm-virtio/compare/virtio-bindings-v0.2.0...virtio-bindings-v0.2.1 )
---
updated-dependencies:
- dependency-name: virtio-bindings
dependency-type: indirect
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com >
2023-07-05 23:32:57 +00:00
Rob Bradford
3166f22751
Revert "build: Bump vm-memory from 0.11.0 to 0.12.0 in /fuzz"
...
This reverts commit efb579b224 .
This PR was mistakenly merged due to the confusion around nightly
builds. The vm-memory update needs to be done in both the root workspace
and fuzz workspace together.
Signed-off-by: Rob Bradford <rbradford@rivosinc.com >
2023-07-05 10:36:35 +01:00
Rob Bradford
b4376a0dd9
build: Bump proc-macro2 crate to fix nightly builds
...
error[E0635]: unknown feature `proc_macro_span_shrink`
--> $HOME/.cargo/registry/src/index.crates.io-6f17d22bba15001f/proc-macro2-1.0.59/src/lib.rs:92:30
|
92 | feature(proc_macro_span, proc_macro_span_shrink)
|
Signed-off-by: Rob Bradford <rbradford@rivosinc.com >
2023-07-05 09:51:54 +01:00