pub type KVBox<T> = Box<T, KVmalloc>;
Type alias for Box with a KVmalloc allocator.
Box
KVmalloc
let b = KVBox::new(24_u64, GFP_KERNEL)?; assert_eq!(*b, 24_u64);
struct KVBox<T>(/* private fields */);