mm-commits.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [merged] lib-lockref-__lockref_is_dead-can-be-boolean.patch removed from -mm tree
@ 2018-02-07 19:59 akpm
  0 siblings, 0 replies; only message in thread
From: akpm @ 2018-02-07 19:59 UTC (permalink / raw)
  To: baiyaowei, mm-commits


The patch titled
     Subject: lib/lockref: __lockref_is_dead can be boolean
has been removed from the -mm tree.  Its filename was
     lib-lockref-__lockref_is_dead-can-be-boolean.patch

This patch was dropped because it was merged into mainline or a subsystem tree

------------------------------------------------------
From: Yaowei Bai <baiyaowei@cmss.chinamobile.com>
Subject: lib/lockref: __lockref_is_dead can be boolean

Make __lockref_is_dead return bool due to this function only using either
true or false as its return value.

No functional change.

Link: http://lkml.kernel.org/r/1513266622-15860-3-git-send-email-baiyaowei@cmss.chinamobile.com
Signed-off-by: Yaowei Bai <baiyaowei@cmss.chinamobile.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
---

 include/linux/lockref.h |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff -puN include/linux/lockref.h~lib-lockref-__lockref_is_dead-can-be-boolean include/linux/lockref.h
--- a/include/linux/lockref.h~lib-lockref-__lockref_is_dead-can-be-boolean
+++ a/include/linux/lockref.h
@@ -44,7 +44,7 @@ extern void lockref_mark_dead(struct loc
 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);
 }
_

Patches currently in -mm which might be from baiyaowei@cmss.chinamobile.com are



^ permalink raw reply	[flat|nested] only message in thread

only message in thread, other threads:[~2018-02-07 19:59 UTC | newest]

Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2018-02-07 19:59 [merged] lib-lockref-__lockref_is_dead-can-be-boolean.patch removed from -mm tree akpm

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).