projects
/
openwrt
/
staging
/
blogic.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
937f0c2
)
lib/lockref: __lockref_is_dead can be boolean
author
Yaowei Bai
<baiyaowei@cmss.chinamobile.com>
Tue, 6 Feb 2018 23:41:21 +0000
(15:41 -0800)
committer
Linus Torvalds
<torvalds@linux-foundation.org>
Wed, 7 Feb 2018 02:32:47 +0000
(18:32 -0800)
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>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
include/linux/lockref.h
patch
|
blob
|
history
diff --git
a/include/linux/lockref.h
b/include/linux/lockref.h
index ef3c9342e11916266b15ebf001ab2c0943d2a85d..2eac32095113177ba60493b956f44b97e525d471 100644
(file)
--- a/
include/linux/lockref.h
+++ b/
include/linux/lockref.h
@@
-44,7
+44,7
@@
extern void lockref_mark_dead(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);
}