Re: [PATCH] rust: fs, hrtimer: replace read_volatile workarounds with atomic_load

From: Alessio Maroni

Date: Sun Jul 12 2026 - 08:36:08 EST


Please disregard this patch.

As pointed out by the Sashiko AI review, using `atomic_load` here
introduces critical alignment issues on 32-bit platforms for ktime_t
and violates the safety contract regarding concurrent non-atomic stores
on the C side.

We definitely need a proper `read_once` abstraction in Rust before
handling these cases. Sorry for the noise!

Best regards,
Alessio