search for: allocimpl

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

2024 Jun 18
1
[PATCH v2 3/8] rust: drm: add driver abstractions
...uot;C" fn( + file_priv: *mut bindings::drm_file, + dev: *mut bindings::drm_device, + handle: u32, + offset: *mut u64, + ) -> core::ffi::c_int, + >, +} + +/// Trait for memory manager implementations. Implemented internally. +pub trait AllocImpl: Sealed { + /// The C callback operations for this memory manager. + const ALLOC_OPS: AllocOps; +} + +/// The DRM `Driver` trait. +/// +/// This trait must be implemented by drivers in order to create a `struct drm_device` and `struct +/// drm_driver` to be registered in the DRM subsystem. +#...
2024 Sep 02
2
[PATCH v2 3/8] rust: drm: add driver abstractions
...bindings::drm_file, > + dev: *mut bindings::drm_device, > + handle: u32, > + offset: *mut u64, > + ) -> core::ffi::c_int, > + >, > +} > + > +/// Trait for memory manager implementations. Implemented internally. > +pub trait AllocImpl: Sealed { > + /// The C callback operations for this memory manager. > + const ALLOC_OPS: AllocOps; > +} > + > +/// The DRM `Driver` trait. > +/// > +/// This trait must be implemented by drivers in order to create a `struct drm_device` and `struct > +/// drm_driver` t...