On Mon, Feb 25, 2019 at 09:40:38AM -0800, David Miller wrote: > From: Leslie Monis <lesliemo...@gmail.com> > Date: Mon, 25 Feb 2019 15:50:49 +0530 > > > + power = 100; > > + while (q->vars.prob < MAX_PROB / (u64)power && > > You have to use div_u64() or similar when doing 64-bit divisons otherwise > you'll get build failures on 32-bit platforms.
Alright. Thanks for the feedback.