Skip to main content

VirtQueue

Struct VirtQueue 

Source
pub struct VirtQueue { /* private fields */ }
Expand description

VirtIO queue implementation.

Implementations§

Source§

impl VirtQueue

Source

pub fn new(size: u16) -> Result<Self>

Creates a new virtqueue with the given size.

§Errors

Returns an error if the size is not a power of 2 or exceeds limits.

Source

pub const fn size(&self) -> u16

Returns the queue size.

Source

pub const fn is_ready(&self) -> bool

Returns whether the queue is ready.

Source

pub const fn set_ready(&mut self, ready: bool)

Sets the queue ready state.

Source

pub fn set_descriptor(&mut self, idx: u16, descriptor: Descriptor) -> Result<()>

Updates a descriptor entry.

§Errors

Returns an error if the index is out of range.

Source

pub fn add_avail(&mut self, head_idx: u16) -> Result<()>

Adds a descriptor chain head to the available ring.

§Errors

Returns an error if the descriptor index is out of range.

Source

pub const fn has_available(&self) -> bool

Checks if there are available descriptors.

Source

pub fn pop_avail(&mut self) -> Option<(u16, DescriptorChain<'_>)>

Pops the next available descriptor chain.

Returns the head descriptor index and the descriptor chain.

Source

pub fn set_event_idx(&mut self, enabled: bool)

Enable or disable EVENT_IDX feature.

Source

pub fn push_used(&mut self, head_idx: u16, len: u32) -> bool

Adds a used descriptor to the used ring.

Returns true if the guest should be notified (interrupt required), false if notification is suppressed (EVENT_IDX or NO_INTERRUPT flag).

Source

pub fn push_used_batch(&mut self, completions: &[(u16, u32)]) -> bool

Push a batch of completions to the used ring.

More efficient than calling push_used() in a loop because notification suppression is checked only once for the entire batch.

Source

pub fn set_avail_event(&mut self, event: u16)

Set the avail_event index for kick suppression (device→guest direction).

Source

pub fn get_descriptor(&self, idx: u16) -> Option<&Descriptor>

Returns a reference to a descriptor.

Trait Implementations§

Source§

impl Debug for VirtQueue

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more

Auto Trait Implementations§

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.