Nguyễn Thái Ngọc Duy <[email protected]> writes: > +static inline int oe_fits_in_32bits(unsigned long limit) > +{ > + uint32_t truncated_limit = (uint32_t)limit; > + > + return limit == truncated_limit; > +}
I do not think it is worth a reroll (there only are a few
callsites), but the above has nothing to do with "oe" fitting
anything (it is about "limit"). Do you mind if I did this instead?
static inline int fits_in_32bits(unsigned long size)
... or other suggestions, perhaps?

