mirror of
https://github.com/hardkernel/linux.git
synced 2026-06-06 19:08:57 +09:00
bitops: add missing prototype check
[ Upstream commit 72cc1980a0ef3ccad0d539e7dace63d0d7d432a4 ] Commit8238b45798("wait_on_bit: add an acquire memory barrier") added a new bitop, test_bit_acquire(), with proper wrapping in order to try to optimize it at compile-time, but missed the list of bitops used for checking their prototypes a bit below. The functions added have consistent prototypes, so that no more changes are required and no functional changes take place. Fixes:8238b45798("wait_on_bit: add an acquire memory barrier") Reviewed-by: Przemek Kitszel <przemyslaw.kitszel@intel.com> Signed-off-by: Alexander Lobakin <aleksander.lobakin@intel.com> Signed-off-by: David S. Miller <davem@davemloft.net> Signed-off-by: Sasha Levin <sashal@kernel.org>
This commit is contained in:
committed by
Greg Kroah-Hartman
parent
542598a559
commit
a353cd9ff7
@@ -80,6 +80,7 @@ __check_bitop_pr(__test_and_set_bit);
|
|||||||
__check_bitop_pr(__test_and_clear_bit);
|
__check_bitop_pr(__test_and_clear_bit);
|
||||||
__check_bitop_pr(__test_and_change_bit);
|
__check_bitop_pr(__test_and_change_bit);
|
||||||
__check_bitop_pr(test_bit);
|
__check_bitop_pr(test_bit);
|
||||||
|
__check_bitop_pr(test_bit_acquire);
|
||||||
|
|
||||||
#undef __check_bitop_pr
|
#undef __check_bitop_pr
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user