Home
last modified time | relevance | path

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

/linux/rust/kernel/
H A Dscatterlist.rs127 pub struct SGTable<T: private::Sealed = Borrowed> { struct
132 impl SGTable { implementation
385 impl<P> SGTable<Owned<P>> impl
443 impl<P> Deref for SGTable<Owned<P>> { implementation
444 type Target = SGTable;
452 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()