lib/find_bit: create find_first_zero_bit_le()
authorYury Norov <yury.norov@gmail.com>
Thu, 15 Sep 2022 02:07:28 +0000 (19:07 -0700)
committerYury Norov <yury.norov@gmail.com>
Wed, 21 Sep 2022 19:17:18 +0000 (12:17 -0700)
commit14a99e130f2758bc826a7e7a8bdf6f7400b54f0f
tree3b067dad53502e8e00c0fce608fe3b2587f2be91
parent58414bbb58a8b49af20e3accae56f6f8344b2424
lib/find_bit: create find_first_zero_bit_le()

find_first_zero_bit_le() is an alias to find_next_zero_bit_le(),
despite that 'next' is known to be slower than 'first' version.

Now that we have common FIND_FIRST_BIT() macro helper, it's trivial
to implement find_first_zero_bit_le() as a real function.

Reviewed-by: Valentin Schneider <vschneid@redhat.com>
Signed-off-by: Yury Norov <yury.norov@gmail.com>
include/linux/find.h
lib/find_bit.c