diff --git a/README.md b/README.md index 19fb9087..134930fa 100644 --- a/README.md +++ b/README.md @@ -69,7 +69,7 @@ The binaries built by this repository can be run with any VMM which can act as a vhost-user frontend. Typically they have been tested with [QEMU](https://www.qemu.org) although the rust-vmm project does provide a [vhost-user -frontend](https://github.com/rust-vmm/vhost/tree/main/src/vhost_user) +frontend](https://github.com/rust-vmm/vhost/blob/main/crates/vhost/src/vhost_user/frontend.rs) crate for rust based VMMs. While it's possible to implement all parts of the backend inside the diff --git a/vhost-device-i2c/README.md b/vhost-device-i2c/README.md index 9eb57cdb..1f1bb934 100644 --- a/vhost-device-i2c/README.md +++ b/vhost-device-i2c/README.md @@ -39,7 +39,7 @@ Examples section below. Example: --device-list "i915 gmbus dpd:32:21,DPDDC-D:10:23" Here, - bus-name: is adatper's name. e.g. value of /sys/bus/i2c/devices/i2c-0/name. + bus-name: is adapter's name. e.g. value of /sys/bus/i2c/devices/i2c-0/name. client_addr (decimal): address for client device, 32 == 0x20. ## Examples diff --git a/vhost-device-rng/README.md b/vhost-device-rng/README.md index 74080c02..c9d6ac41 100644 --- a/vhost-device-rng/README.md +++ b/vhost-device-rng/README.md @@ -13,7 +13,7 @@ requests more bytes than the allowed limit the thread will block until the start of a new period. The daemon will automatically split the available bandwidth equally between the guest when several threads are requested. -Thought developed and tested with QEMU, the implemenation is based on the +Thought developed and tested with QEMU, the implementation is based on the vhost-user protocol and as such should be interoperable with other virtual machine managers. Please see below for working examples. @@ -48,7 +48,7 @@ machine managers. Please see below for working examples. .. option:: -m, --max-bytes - In conjuction with the --period parameter, provides the maximum number of byte + In conjunction with the --period parameter, provides the maximum number of byte per milliseconds a RNG device can generate. ## Examples