Home
last modified time | relevance | path

Searched refs:SGTable (Results 1 – 2 of 2) sorted by relevance

/linux/rust/kernel/
H A Dscatterlist.rs128 pub struct SGTable<T: private::Sealed = Borrowed> { struct
133 impl SGTable { impl
386 impl<P> SGTable<Owned<P>> implementation
444 impl<P> Deref for SGTable<Owned<P>> { implementation
445 type Target = SGTable;
453 unsafe { SGTable::from_raw(self.inner.sgt.as_raw()) } in deref()
/linux/samples/rust/
H A Drust_dma.rs12 scatterlist::{Owned, SGTable},
21 sgt: SGTable<Owned<VVec<u8>>>,
77 let sgt = SGTable::new(pdev.as_ref(), pages, DataDirection::ToDevice, GFP_KERNEL); in probe()