Re: [PATCH v2 1/7] rust: file: add Rust abstraction for `struct file`

From: Alice Ryhl
Date: Mon Dec 11 2023 - 10:34:31 EST


Benno Lossin <benno.lossin@xxxxxxxxx> wrutes:
> > + // SAFETY: `fget` either returns null or a valid pointer to a file, and we checked for null
> > + // above.
>
> Since now both the Rust and C functions are called `fget`, I think you
> should refer to `bindings::fget`.
> [...]
> > + unsafe fn dec_ref(obj: ptr::NonNull<Self>) {
> > + // SAFETY: The safety requirements guarantee that the refcount is nonzero.
> > + unsafe { bindings::fput(obj.cast().as_ptr()) }
>
> The comment should also justify the cast.

I'll make both changes.

Alice