lists.openwall.net | lists / announce owl-users owl-dev john-users john-dev passwdqc-users yescrypt popa3d-users / oss-security kernel-hardening musl sabotage tlsify passwords / crypt-dev xvendor / Bugtraq Full-Disclosure linux-kernel linux-netdev linux-ext4 linux-hardening PHC | |
Open Source and information security mailing list archives
| ||
|
Date: Sun, 17 Oct 2021 17:20:57 +0800 From: Huilong Deng <denghuilong@...rlc.com> To: hca@...ux.ibm.com, borntraeger@...ibm.com Cc: yury.norov@...il.com, geert@...ux-m68k.org, linux-s390@...r.kernel.org, linux-kernel@...r.kernel.org, Huilong Deng <denghuilong@...rlc.com> Subject: [PATCH] s390/bitops: Return true/false (not 1/0) from bool functions Signed-off-by: Huilong Deng <denghuilong@...rlc.com> --- arch/s390/include/asm/bitops.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/arch/s390/include/asm/bitops.h b/arch/s390/include/asm/bitops.h index f7cefdde7c24..1d40630128a5 100644 --- a/arch/s390/include/asm/bitops.h +++ b/arch/s390/include/asm/bitops.h @@ -188,7 +188,7 @@ static inline bool arch_test_and_set_bit_lock(unsigned long nr, volatile unsigned long *ptr) { if (arch_test_bit(nr, ptr)) - return 1; + return true; return arch_test_and_set_bit(nr, ptr); } -- 2.32.0
Powered by blists - more mailing lists