Crate vmbus_ring

Source
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 a RingRange.
  • A type implementing MemoryWrite accessing a RingRange.
  • A transfer range specifying a length and offset within a transfer page set. Only used by NetVSP.

Enums§

Constants§

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 and RingRange::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.