Merge tag 'bcachefs-2025-03-14.2' of git://evilpiepirate.org/bcachefs

Pull another bcachefs hotfix from Kent Overstreet:

- fix 32 bit build breakage

* tag 'bcachefs-2025-03-14.2' of git://evilpiepirate.org/bcachefs:
bcachefs: fix build on 32 bit in get_random_u64_below()

+2 -1
+2 -1
fs/bcachefs/util.c
··· 663 663 u64 mult = ceil * rand; 664 664 665 665 if (unlikely(mult < ceil)) { 666 - u64 bound = -ceil % ceil; 666 + u64 bound; 667 + div64_u64_rem(-ceil, ceil, &bound); 667 668 while (unlikely(mult < bound)) { 668 669 rand = get_random_u64(); 669 670 mult = ceil * rand;