Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]


Groups > linux.kernel > #1681117

[PATCH] bio-integrity: fix boolreturn.cocci warnings

From kbuild test robot <fengguang.wu@intel.com>
Newsgroups linux.kernel
Subject [PATCH] bio-integrity: fix boolreturn.cocci warnings
Date 2017-07-04 20:20 +0200
Message-ID <tZAAy-3tZ-13@gated-at.bofh.it> (permalink)
References <tZAAy-3tZ-15@gated-at.bofh.it>
Organization linux.* mail to news gateway

Show all headers | View raw


block/bio-integrity.c:318:10-11: WARNING: return of 0/1 in function 'bio_integrity_prep' with return type bool

 Return statements in functions returning bool should use
 true/false instead of 1/0.
Generated by: scripts/coccinelle/misc/boolreturn.cocci

Fixes: e23947bd76f0 ("bio-integrity: fold bio_integrity_enabled to bio_integrity_prep")
CC: Dmitry Monakhov <dmonakhov@openvz.org>
Signed-off-by: Fengguang Wu <fengguang.wu@intel.com>
---

 bio-integrity.c |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

--- a/block/bio-integrity.c
+++ b/block/bio-integrity.c
@@ -315,7 +315,7 @@ bool bio_integrity_prep(struct bio *bio)
 					     bytes, offset);
 
 		if (ret == 0)
-			return 0;
+			return false;
 
 		if (ret < bytes)
 			break;

Back to linux.kernel | Previous | NextNext in thread | Find similar | Unroll thread


Thread

[PATCH] bio-integrity: fix boolreturn.cocci warnings kbuild test robot <fengguang.wu@intel.com> - 2017-07-04 20:20 +0200
  Re: [PATCH] bio-integrity: fix boolreturn.cocci warnings Jens Axboe <axboe@kernel.dk> - 2017-07-05 00:20 +0200

csiph-web