Skip to main content

PerCpuHashMap

Struct PerCpuHashMap 

Source
pub struct PerCpuHashMap<T, K: Pod, V: Pod> { /* private fields */ }
Expand description

Similar to HashMap but each CPU holds a separate value for a given key. Typically used to minimize lock contention in eBPF programs.

This type can be used with eBPF maps of type BPF_MAP_TYPE_PERCPU_HASH and BPF_MAP_TYPE_LRU_PERCPU_HASH.

§Minimum kernel version

The minimum kernel version required to use this feature is 4.6.

§Examples

use aya::maps::PerCpuHashMap;

const CPU_IDS: u8 = 1;
const WAKEUPS: u8 = 2;

let mut hm = PerCpuHashMap::<_, u8, u32>::try_from(bpf.map_mut("PER_CPU_STORAGE").unwrap())?;
let cpu_ids = unsafe { hm.get(&CPU_IDS, 0)? };
let wakeups = unsafe { hm.get(&WAKEUPS, 0)? };
for (cpu_id, wakeups) in cpu_ids.iter().zip(wakeups.iter()) {
    println!("cpu {} woke up {} times", cpu_id, wakeups);
}

Implementations§

Source§

impl<T: Borrow<MapData>, K: Pod, V: Pod> PerCpuHashMap<T, K, V>

Source

pub fn get(&self, key: &K, flags: u64) -> Result<PerCpuValues<V>, MapError>

Returns a slice of values - one for each CPU - associated with the key.

Source

pub fn iter(&self) -> MapIter<'_, K, PerCpuValues<V>, Self>

An iterator visiting all key-value pairs in arbitrary order. The iterator item type is Result<(K, PerCpuValues<V>), MapError>.

Source

pub fn keys(&self) -> MapKeys<'_, K>

An iterator visiting all keys in arbitrary order. The iterator element type is Result<K, MapError>.

Source§

impl<T: BorrowMut<MapData>, K: Pod, V: Pod> PerCpuHashMap<T, K, V>

Source

pub fn insert( &mut self, key: impl Borrow<K>, values: PerCpuValues<V>, flags: u64, ) -> Result<(), MapError>

Inserts a slice of values - one for each CPU - for the given key.

§Examples
use aya::maps::{PerCpuHashMap, PerCpuValues};
use aya::util::nr_cpus;

const RETRIES: u8 = 1;

let nr_cpus = nr_cpus().map_err(|(_, error)| error)?;
let mut hm = PerCpuHashMap::<_, u8, u32>::try_from(bpf.map_mut("PER_CPU_STORAGE").unwrap())?;
hm.insert(
    RETRIES,
    PerCpuValues::try_from(vec![3u32; nr_cpus])?,
    0,
)?;
Source

pub fn remove(&mut self, key: &K) -> Result<(), MapError>

Removes a key from the map.

Source§

impl<T: Borrow<MapData>, K: Pod, V: Pod> PerCpuHashMap<T, K, V>

Source

pub fn pin<P: AsRef<Path>>(self, path: P) -> Result<(), PinError>

Pins the map to a BPF filesystem.

When a map is pinned it will remain loaded until the corresponding file is deleted. All parent directories in the given path must already exist.

Source§

impl<K: Pod, V: Pod> PerCpuHashMap<MapData, K, V>

Source

pub fn create(max_entries: u32, flags: u32) -> Result<Self, MapError>

Creates a standalone map with the given max_entries capacity and flags.

Trait Implementations§

Source§

impl<'a, T: Borrow<MapData>, K: Pod, V: Pod> IntoIterator for &'a PerCpuHashMap<T, K, V>

Source§

type Item = Result<(K, PerCpuValues<V>), MapError>

The type of the elements being iterated over.
Source§

type IntoIter = MapIter<'a, K, PerCpuValues<V>, PerCpuHashMap<T, K, V>>

Which kind of iterator are we turning this into?
Source§

fn into_iter(self) -> Self::IntoIter

Creates an iterator from a value. Read more
Source§

impl<T: Borrow<MapData>, K: Pod, V: Pod> IterableMap<K, PerCpuValues<V>> for PerCpuHashMap<T, K, V>

Source§

fn map(&self) -> &MapData

Get a generic map handle
Source§

fn get(&self, key: &K) -> Result<PerCpuValues<V>, MapError>

Get the value for the provided key
Source§

impl<'a, K: Pod, V: Pod> TryFrom<&'a Map> for PerCpuHashMap<&'a MapData, K, V>

Source§

type Error = MapError

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

fn try_from(map: &'a Map) -> Result<Self, Self::Error>

Performs the conversion.
Source§

impl<'a, K: Pod, V: Pod> TryFrom<&'a mut Map> for PerCpuHashMap<&'a mut MapData, K, V>

Source§

type Error = MapError

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

fn try_from(map: &'a mut Map) -> Result<Self, Self::Error>

Performs the conversion.
Source§

impl<K: Pod, V: Pod> TryFrom<Map> for PerCpuHashMap<MapData, K, V>

Source§

type Error = MapError

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

fn try_from(map: Map) -> Result<Self, Self::Error>

Performs the conversion.

Auto Trait Implementations§

§

impl<T, K, V> Freeze for PerCpuHashMap<T, K, V>
where T: Freeze,

§

impl<T, K, V> RefUnwindSafe for PerCpuHashMap<T, K, V>

§

impl<T, K, V> Send for PerCpuHashMap<T, K, V>
where T: Send, K: Send, V: Send,

§

impl<T, K, V> Sync for PerCpuHashMap<T, K, V>
where T: Sync, K: Sync, V: Sync,

§

impl<T, K, V> Unpin for PerCpuHashMap<T, K, V>
where T: Unpin, K: Unpin, V: Unpin,

§

impl<T, K, V> UnsafeUnpin for PerCpuHashMap<T, K, V>
where T: UnsafeUnpin,

§

impl<T, K, V> UnwindSafe for PerCpuHashMap<T, K, V>
where T: UnwindSafe, K: UnwindSafe, V: UnwindSafe,

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.
Source§

impl<T> FromMapData for T
where T: FromMapData,

Source§

impl<T> InnerMap for T
where T: InnerMap,