Home
last modified time | relevance | path

Searched refs:NumaNode (Results 1 – 4 of 4) sorted by relevance

/linux/rust/kernel/
H A Dalloc.rs115 pub struct NumaNode(i32); struct
117 impl NumaNode { implementation
133 impl NumaNode { impl
135 pub const NO_NODE: NumaNode = NumaNode(bindings::NUMA_NO_NODE);
184 fn alloc(layout: Layout, flags: Flags, nid: NumaNode) -> Result<NonNull<[u8]>, AllocError> { in alloc()
235 nid: NumaNode, in realloc() argument
257 NumaNode::NO_NODE, in free()
/linux/rust/kernel/alloc/
H A Dallocator.rs16 use crate::alloc::{AllocError, Allocator, NumaNode};
90 nid: NumaNode, in call() argument
151 nid: NumaNode, in realloc() argument
221 nid: NumaNode, in realloc() argument
242 nid: NumaNode, in realloc() argument
H A Dkvec.rs8 AllocError, Allocator, Box, Flags, NumaNode,
650 NumaNode::NO_NODE, in reserve()
1170 NumaNode::NO_NODE, in collect()
H A Dkbox.rs7 use super::{AllocError, Allocator, Flags, NumaNode};
277 let ptr = A::alloc(layout, flags, NumaNode::NO_NODE)?; in new_uninit()