mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git
synced 2026-05-14 21:38:46 +02:00
be56db15fc
The 'leading' helper returns BITS_PER_LONG if x == 0, while 'trailing' one returns COUNT_TRAILING_ZEROS_0, which turns to be -1. None of the current users explicitly check the returned value for COUNT_TRAILING_ZEROS_0, except the loongarch, which tests implicitly for the '>= 0'. So, align count_trailing_zeros() with the count_leading_zeros(), and simplify the loongarch handling. Reviewed-by: Andy Shevchenko <andriy.shevchenko@intel.com> Signed-off-by: Yury Norov <ynorov@nvidia.com>
47 lines
1.3 KiB
C
47 lines
1.3 KiB
C
/* SPDX-License-Identifier: GPL-2.0-or-later */
|
|
/* Count leading and trailing zeros functions
|
|
*
|
|
* Copyright (C) 2012 Red Hat, Inc. All Rights Reserved.
|
|
* Written by David Howells (dhowells@redhat.com)
|
|
*/
|
|
|
|
#ifndef _LINUX_BITOPS_COUNT_ZEROS_H_
|
|
#define _LINUX_BITOPS_COUNT_ZEROS_H_
|
|
|
|
#include <asm/bitops.h>
|
|
|
|
/**
|
|
* count_leading_zeros - Count the number of zeros from the MSB back
|
|
* @x: The value
|
|
*
|
|
* Count the number of leading zeros from the MSB going towards the LSB in @x.
|
|
*
|
|
* If the MSB of @x is set, the result is 0.
|
|
* If only the LSB of @x is set, then the result is BITS_PER_LONG-1.
|
|
* If @x is 0 then the result is BITS_PER_LONG.
|
|
*/
|
|
static inline int count_leading_zeros(unsigned long x)
|
|
{
|
|
if (sizeof(x) == 4)
|
|
return BITS_PER_LONG - fls(x);
|
|
else
|
|
return BITS_PER_LONG - fls64(x);
|
|
}
|
|
|
|
/**
|
|
* count_trailing_zeros - Count the number of zeros from the LSB forwards
|
|
* @x: The value
|
|
*
|
|
* Count the number of trailing zeros from the LSB going towards the MSB in @x.
|
|
*
|
|
* If the LSB of @x is set, the result is 0.
|
|
* If only the MSB of @x is set, then the result is BITS_PER_LONG-1.
|
|
* If @x is 0 then the result is BITS_PER_LONG.
|
|
*/
|
|
static inline int count_trailing_zeros(unsigned long x)
|
|
{
|
|
return x ? __ffs(x) : BITS_PER_LONG;
|
|
}
|
|
|
|
#endif /* _LINUX_BITOPS_COUNT_ZEROS_H_ */
|