Re: [PATCH] blackfin: optimize ffz, __ffs, ffs, __fls, and fls functions

2016-04-15 Thread kbuild test robot
Hi Zhaoxiu, [auto build test ERROR on v4.6-rc3] [also build test ERROR on next-20160414] [if your patch is applied to the wrong git tree, please drop us a note to help improving the system] url:

Re: [PATCH] blackfin: optimize ffz, __ffs, ffs, __fls, and fls functions

2016-04-15 Thread kbuild test robot
Hi Zhaoxiu, [auto build test ERROR on v4.6-rc3] [also build test ERROR on next-20160414] [if your patch is applied to the wrong git tree, please drop us a note to help improving the system] url:

[PATCH] blackfin: optimize ffz, __ffs, ffs, __fls, and fls functions

2016-04-15 Thread zengzhaoxiu
From: Zhaoxiu Zeng blackfin has popcount instruction (ONES), we can do the efficient computing (ffz, __ffs, ffs, __fls, and fls) use this instruction. Adapted from "https://en.wikipedia.org/wiki/Find_first_set; and arch/ia64/include/asm/bitops.h. Signed-off-by: Zhaoxiu

[PATCH] blackfin: optimize ffz, __ffs, ffs, __fls, and fls functions

2016-04-15 Thread zengzhaoxiu
From: Zhaoxiu Zeng blackfin has popcount instruction (ONES), we can do the efficient computing (ffz, __ffs, ffs, __fls, and fls) use this instruction. Adapted from "https://en.wikipedia.org/wiki/Find_first_set; and arch/ia64/include/asm/bitops.h. Signed-off-by: Zhaoxiu Zeng ---