bitops: use the same mechanism for get_count_order[_long]
These two functions share the same logic. Signed-off-by: Wei Yang <richard.weiyang@linux.alibaba.com> Signed-off-by: Andrew Morton <akpm@linux-foundation.org> Cc: Christian Brauner <christian.brauner@ubuntu.com> Cc: Andy Shevchenko <andriy.shevchenko@linux.intel.com> Link: https://lkml.kernel.org/r/20200807085837.11697-3-richard.weiyang@linux.alibaba.com Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
This commit is contained in:
@@ -188,12 +188,10 @@ static inline unsigned fls_long(unsigned long l)
|
|||||||
|
|
||||||
static inline int get_count_order(unsigned int count)
|
static inline int get_count_order(unsigned int count)
|
||||||
{
|
{
|
||||||
int order;
|
if (count == 0)
|
||||||
|
return -1;
|
||||||
|
|
||||||
order = fls(count) - 1;
|
return fls(--count);
|
||||||
if (count & (count - 1))
|
|
||||||
order++;
|
|
||||||
return order;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|||||||
Reference in New Issue
Block a user