]> www.infradead.org Git - users/jedix/linux-maple.git/commit
rust: time: Fix compile error in impl_has_hr_timer macro
authorFUJITA Tomonori <fujita.tomonori@gmail.com>
Fri, 6 Jun 2025 02:05:05 +0000 (11:05 +0900)
committerMiguel Ojeda <ojeda@kernel.org>
Tue, 10 Jun 2025 18:11:36 +0000 (20:11 +0200)
commit5b2d595efbfc9c46823bdb9ef11e1f9fa46adf9d
tree57ca05c694fe05f340071dfa5b2eaaccade5aa04
parent19272b37aa4f83ca52bdf9c16d5d81bdd1354494
rust: time: Fix compile error in impl_has_hr_timer macro

Fix a compile error in the `impl_has_hr_timer!` macro as follows:

error[E0599]: no method named cast_mut found for raw pointer *mut Foo in the current scope

The `container_of!` macro already returns a mutable pointer when used
in a `*mut T` context so the `.cast_mut()` method is not available.

[ We missed this one because there is no caller yet and it is
  a macro. - Miguel ]

Fixes: 74d6a606c2b3 ("rust: retain pointer mut-ness in `container_of!`")
Signed-off-by: FUJITA Tomonori <fujita.tomonori@gmail.com>
Reviewed-by: Benno Lossin <lossin@kernel.org>
Acked-by: Andreas Hindborg <a.hindborg@kernel.org>
Link: https://lore.kernel.org/r/20250606020505.3186533-1-fujita.tomonori@gmail.com
Signed-off-by: Miguel Ojeda <ojeda@kernel.org>
rust/kernel/time/hrtimer.rs