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<VirtQueue, VirtioError>

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<(), VirtioError>

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<(), VirtioError>

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<(), Error>

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> Instrument for T

Source§

fn instrument(self, span: Span) -> Instrumented<Self>

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more
Source§

fn in_current_span(self) -> Instrumented<Self>

Instruments this type with the current Span, returning an Instrumented wrapper. Read more
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> IntoEither for T

Source§

fn into_either(self, into_left: bool) -> Either<Self, Self>

Converts self into a Left variant of Either<Self, Self> if into_left is true. Converts self into a Right variant of Either<Self, Self> otherwise. Read more
Source§

fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
where F: FnOnce(&Self) -> bool,

Converts self into a Left variant of Either<Self, Self> if into_left(&self) returns true. Converts self into a Right variant of Either<Self, Self> otherwise. Read more
Source§

impl<T> Pointable for T

Source§

const ALIGN: usize

The alignment of pointer.
Source§

type Init = T

The type for initializers.
Source§

unsafe fn init(init: <T as Pointable>::Init) -> usize

Initializes a with the given initializer. Read more
Source§

unsafe fn deref<'a>(ptr: usize) -> &'a T

Dereferences the given pointer. Read more
Source§

unsafe fn deref_mut<'a>(ptr: usize) -> &'a mut T

Mutably dereferences the given pointer. Read more
Source§

unsafe fn drop(ptr: usize)

Drops the object pointed to by the given pointer. Read more
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.
Source§

impl<T> WithSubscriber for T

Source§

fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self>
where S: Into<Dispatch>,

Attaches the provided Subscriber to this type, returning a WithDispatch wrapper. Read more
Source§

fn with_current_subscriber(self) -> WithDispatch<Self>

Attaches the current default Subscriber to this type, returning a WithDispatch wrapper. Read more