diff options
Diffstat (limited to 'include/linux/lockref.h')
-rw-r--r-- | include/linux/lockref.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/linux/lockref.h b/include/linux/lockref.h index ef3c9342e119..2eac32095113 100644 --- a/include/linux/lockref.h +++ b/include/linux/lockref.h | |||
@@ -44,7 +44,7 @@ extern void lockref_mark_dead(struct lockref *); | |||
44 | extern int lockref_get_not_dead(struct lockref *); | 44 | extern int lockref_get_not_dead(struct lockref *); |
45 | 45 | ||
46 | /* Must be called under spinlock for reliable results */ | 46 | /* Must be called under spinlock for reliable results */ |
47 | static inline int __lockref_is_dead(const struct lockref *l) | 47 | static inline bool __lockref_is_dead(const struct lockref *l) |
48 | { | 48 | { |
49 | return ((int)l->count < 0); | 49 | return ((int)l->count < 0); |
50 | } | 50 | } |