Struct dpdk_unix::InterruptRequest[][src]

pub struct InterruptRequest(_);

Represents a logical hyper thread, which in Operating System terms is usually a logical CPU (core).

These usually map 1:1 with LogicalCores

Methods

impl InterruptRequest
[src]

Reads interrupt request (IRQ) affinity to hyper threads.

This logic seems to exist in the Linux kernel to provide a place for the irqbalance daemon to store some configuration.

?numa node? As always, the Linux documentation sucks.

Default interrupt request affinity hyper thread mask.

We ignore failures as the /proc for interrupt requests is brittle.

Returns known interrupt requests (IRQs).

Trait Implementations

impl Default for InterruptRequest
[src]

Returns the "default value" for a type. Read more

impl Debug for InterruptRequest
[src]

Formats the value using the given formatter. Read more

impl Copy for InterruptRequest
[src]

impl Clone for InterruptRequest
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Ord for InterruptRequest
[src]

This method returns an Ordering between self and other. Read more

Compares and returns the maximum of two values. Read more

Compares and returns the minimum of two values. Read more

impl PartialOrd for InterruptRequest
[src]

This method returns an ordering between self and other values if one exists. Read more

This method tests less than (for self and other) and is used by the < operator. Read more

This method tests less than or equal to (for self and other) and is used by the <= operator. Read more

This method tests greater than (for self and other) and is used by the > operator. Read more

This method tests greater than or equal to (for self and other) and is used by the >= operator. Read more

impl Eq for InterruptRequest
[src]

impl PartialEq for InterruptRequest
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

impl Hash for InterruptRequest
[src]

Feeds this value into the given [Hasher]. Read more

Feeds a slice of this type into the given [Hasher]. Read more

impl From<u16> for InterruptRequest
[src]

Performs the conversion.

impl Into<u16> for InterruptRequest
[src]

Performs the conversion.

Auto Trait Implementations