On Thu, Feb 2, 2017 at 9:04 AM, Ard Biesheuvel <ard.biesheu...@linaro.org> wrote: > > So update order_base_2() to adhere to its own documented interface.
Ok, looks like you screwed up the types according to the build server. Making the return type "unsigned long" is slightly excessive. If you need an unsigned long to describe the log2 of a number in the kernel, you're playing with numbers that are *way* too big. The old code used "ilog2()", which returns an int. Which is plenty big enough of a type. Linus