On Thu, Feb 15, 2024 at 10:11:09AM +1100, Dave Chinner wrote: > > -#if (BITS_PER_LONG == 32) /* on 64-bit platforms this is never true */ > > - if (nex > BLKMAP_NEXTS_MAX) { > > + if (sizeof(long) == 32 && nex > BLKMAP_NEXTS32_MAX) { > > That's a really, really big long. sizeof(long) = 4, perhaps? Yes.