Expand description
This module implements the low-level interface to the VmBus ring buffer. The ring buffer resides in guest memory and is mapped into the host, allowing efficient transfer of variable-sized packets.
Ring buffer packets have headers called descriptors, which can specify a transaction ID and metadata referring to memory outside the ring buffer. Each packet is a multiple of 8 bytes.
In practice, ring buffers always come in pairs so that packets can be both sent and received. However, this module’s interfaces operate on them singly.
Modules§
Structs§
- An implementation of
RingMem
over a flat allocation. Useful for tests. - The current incoming ring state.
- An incoming packet.
- The interface to the receiving endpoint of a ring buffer.
- An outgoing ring offset, used to determine the position to write packets to.
- Information about an outgoing packet.
- The sending side of a ring buffer.
- Namespace type with methods to compute packet sizes, for use with
set_pending_send_size
. - An implementation of
RingMem
on top of discontiguous pages. - Pipe channel packets are prefixed with this header to allow for non-8-multiple lengths.
- A range within a ring buffer.
- A type implementing
MemoryRead
accessing aRingRange
. - A type implementing
MemoryWrite
accessing aRingRange
. - A transfer range specifying a length and offset within a transfer page set. Only used by NetVSP.
Enums§
- The alternate types of incoming packets. For packets with external data, includes a
RingRange
whose data is the variable portion of the packet descriptor. - The outgoing packet type variants.
Constants§
- The size of the control region in 32-bit words.
- The maximum size of a pipe packet’s payload.
- VmBus ring buffers are sized in multiples 4KB pages, with a 4KB control page.
- Regular data packet.
- Data packet that has been partially consumed, in which case the
len
field’s high word is the number of bytes already read. The opposite endpoint will never write this type. - Setup a GPA direct buffer for RDMA.
- Tear down a GPA direct buffer.
Traits§
- A trait for ring buffer memory divided into discontiguous pages.
- A trait shared by the incoming and outgoing ring buffers. Used primarily with
RingRange::reader
andRingRange::writer
. - A trait for memory backing a ring buffer.
Functions§
- Inspects ring buffer state without creating an IncomingRing or OutgoingRing structure.
- Returns whether a ring buffer is in a state where the receiving end might need a signal.
- Returns whether a ring buffer is in a state where the sending end might need a signal.