[<prev] [next>] [thread-next>] [day] [month] [year] [list]
Message-Id: <20210401160629.1941787-1-kbusch@kernel.org>
Date: Thu, 1 Apr 2021 09:06:29 -0700
From: Keith Busch <kbusch@...nel.org>
To: linux-kernel@...r.kernel.org
Cc: Keith Busch <kbusch@...nel.org>, Jason Gunthorpe <jgg@...pe.ca>,
Kees Cook <keescook@...omium.org>
Subject: [PATCH] overflow: improve check_shl_overflow comment
A 'false' return means the value was safely set, so the comment should
say 'true' for when it is not considered safe.
Cc: Jason Gunthorpe <jgg@...pe.ca>
Cc: Kees Cook <keescook@...omium.org>
Signed-off-by: Keith Busch <kbusch@...nel.org>
---
include/linux/overflow.h | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/include/linux/overflow.h b/include/linux/overflow.h
index ef74051d5cfed..0f12345c21fb5 100644
--- a/include/linux/overflow.h
+++ b/include/linux/overflow.h
@@ -235,7 +235,7 @@ static inline bool __must_check __must_check_overflow(bool overflow)
* - 'a << s' sets the sign bit, if any, in '*d'.
*
* '*d' will hold the results of the attempted shift, but is not
- * considered "safe for use" if false is returned.
+ * considered "safe for use" if true is returned.
*/
#define check_shl_overflow(a, s, d) __must_check_overflow(({ \
typeof(a) _a = a; \
--
2.25.4
Powered by blists - more mailing lists