Displaying 1 result from an estimated 1 matches for "convinenc".
Did you mean:
convinent
2024 May 30
0
[RFC PATCH 7/8] rust: add firmware abstractions
...> The following part in your patch allows the rust code to freely play
> with the reference count of a struct device. Your Rust drm driver
> interact with the reference count in a different way than C's drm
> drivers if I understand correctly. I'm not sure that Greg will be
> convinenced with that approach.
I don't see how this is different than what we do in C. If you (for whatever
reason) want to keep a pointer to a struct device you should make sure to
increase the reference count of this device, such that it can't get freed for
the time being.
This is a 1:1 represen...