From 27b18af01ee2d9564626e084a758a2b496d2c618 Mon Sep 17 00:00:00 2001 From: Laura Loghin Date: Fri, 17 Dec 2021 11:31:13 +0200 Subject: [PATCH] add the License section to virtio-queue's README Signed-off-by: Laura Loghin --- crates/virtio-queue/README.md | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/crates/virtio-queue/README.md b/crates/virtio-queue/README.md index 8e04e13f..1aea6e84 100644 --- a/crates/virtio-queue/README.md +++ b/crates/virtio-queue/README.md @@ -120,7 +120,7 @@ of the next descriptor if VIRTQ_DESC_F_NEXT is set. ![](../../.github/images/descriptor.png) -Requirements for device implementation +**Requirements for device implementation** * Abstractions from virtio-queue such as `DescriptorChain` can be used to parse descriptors provided by the device, which represent input or output memory @@ -214,3 +214,10 @@ We assume the users will consume the entries from the available ring in the recommended way from the documentation, i.e. device starts processing the available ring entries, disables the notifications, processes the entries, and then re-enables notifications. + +## License + +This project is licensed under either of + +- [Apache License](http://www.apache.org/licenses/LICENSE-2.0), Version 2.0 +- [BSD-3-Clause License](https://opensource.org/licenses/BSD-3-Clause)