Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1753495AbdLNPuz (ORCPT ); Thu, 14 Dec 2017 10:50:55 -0500 Received: from cmccmta3.chinamobile.com ([221.176.66.81]:32075 "EHLO cmccmta3.chinamobile.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1753275AbdLNPux (ORCPT ); Thu, 14 Dec 2017 10:50:53 -0500 X-RM-TRANSID: 2eec5a329dcd08d-26aaa X-RM-TagInfo: emlType=0 X-RM-SPAM-FLAG: 00000000 X-RM-TRANSID: 2ee75a329dc83f4-76ea3 From: Yaowei Bai To: akpm@linux-foundation.org, rdunlap@infradead.org, rientjes@google.com, joe@perches.com Cc: linux-kernel@vger.kernel.org, baiyaowei@cmss.chinamobile.com Subject: [PATCH 2/7] lib/lockref: __lockref_is_dead can be boolean Date: Thu, 14 Dec 2017 10:50:17 -0500 Message-Id: <1513266622-15860-3-git-send-email-baiyaowei@cmss.chinamobile.com> X-Mailer: git-send-email 1.8.3.1 In-Reply-To: <1513266622-15860-1-git-send-email-baiyaowei@cmss.chinamobile.com> References: <1513266622-15860-1-git-send-email-baiyaowei@cmss.chinamobile.com> Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 763 Lines: 27 This patch makes __lockref_is_dead return bool due to this function only using either true or false as its return value. No functional change. Signed-off-by: Yaowei Bai --- include/linux/lockref.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/linux/lockref.h b/include/linux/lockref.h index ef3c934..2eac320 100644 --- a/include/linux/lockref.h +++ b/include/linux/lockref.h @@ -44,7 +44,7 @@ struct lockref { extern int lockref_get_not_dead(struct lockref *); /* Must be called under spinlock for reliable results */ -static inline int __lockref_is_dead(const struct lockref *l) +static inline bool __lockref_is_dead(const struct lockref *l) { return ((int)l->count < 0); } -- 1.8.3.1