search for: thismodule

Displaying 2 results from an estimated 2 matches for "thismodule".

Did you mean: this_module
2024 Jun 11
0
[RFC PATCH 3/8] rust: drm: Add Device and Driver abstractions
...oc::flags::*, > >> + bindings, device, drm, > >> + error::code::*, > >> + error::{Error, Result}, > >> + prelude::*, > >> + private::Sealed, > >> + str::CStr, > >> + types::{ARef, ForeignOwnable}, > >> + ThisModule, > >> +}; > >> +use core::{ > >> + marker::{PhantomData, PhantomPinned}, > >> + pin::Pin, > >> +}; > >> +use macros::vtable; > >> + > >> +/// Driver use the GEM memory manager. This should be set for all modern drivers. &...
2023 Apr 05
3
[PATCH v2 0/2] rust: virtio: add virtio support
This used to be a single patch, but I split it into two with the addition of struct Scatterlist. Again a bit new with Rust submissions. I was told by Gary Guo to rebase on top of rust-next, but it seems *very* behind? The first patch does not build on its own due to a dead_code warning. It is hard to not have dead code when one is adding infrastructure to be used by others at a later