Re: [PATCH 5/5] types: Add standard __ob_trap and __ob_wrap scalar types
From: Miguel Ojeda
Date: Tue Mar 31 2026 - 13:52:11 EST
On Tue, Mar 31, 2026 at 7:11 PM Linus Torvalds
<torvalds@xxxxxxxxxxxxxxxxxxxx> wrote:
>
> No stupid one-character things. If we go down this path it would need
> to be "wrapping_u32" or whatever.
That sounds close to similar types provided by Rust, i.e. if something
like these types are used, then it would be nice to match names if
possible (assuming they are similar enough, i.e. no surprises).
e.g. with generics they do `Wrapping<u32>` or, in other cases, without
generics they name them something like e.g. `NonZeroU32`.
Having said that...
> This needs to look _very_different_.
I think there is an actual risk of someone e.g. copying an expression
from one place to another, with the operators behaving differently,
yeah.
In the Rust side, even if those "explicit" types like the
`wrapping_u32` you suggest exist, we generally use the methods on the
normal integers instead, e.g.
i.wrapping_add(1)
micros.saturating_mul(NSEC_PER_USEC)
self.index.checked_mul(page::PAGE_SIZE)?
etc.
The advantage is precisely that it is more explicit and avoids
confusing the operators when copy-pasting code and so on.
So that could perhaps be an option? Kees et al. have been thinking
about this for a long time as far as I recall.
[ And for the usual operators on integer primitives, we panic by
default (configurable via Kconfig), but at least that applies to all
Rust code, which is all new, and kernel developers get accustomed to
think about what they actually want for a particular operation and
whether they need one of the explicit behaviors above, so it has been
good so far, but it remains to be seen what happens when we have way
more code around etc. It does mean someone copying a simple math
expression from C to Rust could forget about it, though... ]
Cheers,
Miguel