Skip to content

Commit

Permalink
Merge branch 'rust-vmm:main' into virtio-actions
Browse files Browse the repository at this point in the history
  • Loading branch information
joaopeixoto13 authored Oct 9, 2024
2 parents 1140db0 + d6c8938 commit bf3f970
Show file tree
Hide file tree
Showing 28 changed files with 1,602 additions and 4,844 deletions.
File renamed without changes.
1 change: 1 addition & 0 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
[workspace]
resolver = "2"
members = [
"virtio-bindings",
"virtio-blk",
Expand Down
2 changes: 1 addition & 1 deletion coverage_config_x86_64.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"coverage_score": 86.05,
"coverage_score": 94.33,
"exclude_path": "virtio-bindings|virtio-queue/src/mock\\.rs",
"crate_features": "virtio-blk/backend-stdio"
}
2 changes: 1 addition & 1 deletion fuzz/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ memfd = "0.6.3"
virtio-queue = { path = "../virtio-queue", features = ["test-utils"] }
virtio-vsock = { path = "../virtio-vsock" }
virtio-queue-ser = { path = "../virtio-queue-ser" }
vm-memory = { version = "0.14.0", features = ["backend-mmap", "backend-atomic"] }
vm-memory = { version = "0.15.0", features = ["backend-mmap", "backend-atomic"] }
common = { path = "common" }
virtio-blk = { path = "../virtio-blk", features = ["backend-stdio"] }

Expand Down
2 changes: 1 addition & 1 deletion fuzz/common/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,4 +13,4 @@ virtio-queue = { path = "../../virtio-queue", features = ["test-utils"] }
virtio-vsock = { path = "../../virtio-vsock" }
virtio-queue-ser = { path = "../../virtio-queue-ser" }
virtio-blk = { path = "../../virtio-blk" }
vm-memory = { version = "0.14.0", features = ["backend-mmap", "backend-atomic"] }
vm-memory = { version = "0.15.0", features = ["backend-mmap", "backend-atomic"] }
2 changes: 1 addition & 1 deletion rust-vmm-ci
8 changes: 7 additions & 1 deletion virtio-bindings/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,9 +1,15 @@
# Upcoming Release

## Changed

- Regenerate bindings with bindgen 0.70.1.

# v0.2.3

## Added

- Exposed virtio_ids.h bindings as a public module.
- Regnerate bindings with Linux 6.7.
- Regenerate bindings with Linux 6.10.
- Added virtio_input.h bindings.

# v0.2.2
Expand Down
4 changes: 2 additions & 2 deletions virtio-bindings/CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,9 @@

### Bindgen
The bindings are currently generated using
[bindgen](https://rust-lang.github.io/rust-bindgen/) version 0.63.0:
[bindgen](https://rust-lang.github.io/rust-bindgen/) version 0.70.1:
```bash
cargo install bindgen-cli --vers 0.63.0
cargo install bindgen-cli --vers 0.70.1
```

### Linux Kernel
Expand Down
2 changes: 1 addition & 1 deletion virtio-bindings/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "virtio-bindings"
version = "0.2.2"
version = "0.2.3"
authors = ["Sergio Lopez <[email protected]>"]
description = "Rust FFI bindings to virtio generated using bindgen."
repository = "https://github.com/rust-vmm/vm-virtio"
Expand Down
Loading

0 comments on commit bf3f970

Please sign in to comment.