diff options
author | Du, Changbin <changbin.du@intel.com> | 2016-05-19 20:09:35 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2016-05-19 22:12:14 -0400 |
commit | d99b1d8912654c4bdeb51063d2e934afc2372cc2 (patch) | |
tree | 67f02efd84d5afcb752a7319ace610baeabce2f9 | |
parent | 3263d28eb5b93b3c1b024366df87b1d0c774228f (diff) |
percpu_counter: update debugobjects fixup callbacks return type
Update the return type to use bool instead of int, corresponding to
cheange (debugobjects: make fixup functions return bool instead of int).
Signed-off-by: Du, Changbin <changbin.du@intel.com>
Cc: Jonathan Corbet <corbet@lwn.net>
Cc: Josh Triplett <josh@kernel.org>
Cc: Steven Rostedt <rostedt@goodmis.org>
Cc: Thomas Gleixner <tglx@linutronix.de>
Cc: Tejun Heo <tj@kernel.org>
Cc: Christian Borntraeger <borntraeger@de.ibm.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
-rw-r--r-- | lib/percpu_counter.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/percpu_counter.c b/lib/percpu_counter.c index f051d69f0910..72d36113ccaa 100644 --- a/lib/percpu_counter.c +++ b/lib/percpu_counter.c | |||
@@ -19,7 +19,7 @@ static DEFINE_SPINLOCK(percpu_counters_lock); | |||
19 | 19 | ||
20 | static struct debug_obj_descr percpu_counter_debug_descr; | 20 | static struct debug_obj_descr percpu_counter_debug_descr; |
21 | 21 | ||
22 | static int percpu_counter_fixup_free(void *addr, enum debug_obj_state state) | 22 | static bool percpu_counter_fixup_free(void *addr, enum debug_obj_state state) |
23 | { | 23 | { |
24 | struct percpu_counter *fbc = addr; | 24 | struct percpu_counter *fbc = addr; |
25 | 25 | ||
@@ -27,9 +27,9 @@ static int percpu_counter_fixup_free(void *addr, enum debug_obj_state state) | |||
27 | case ODEBUG_STATE_ACTIVE: | 27 | case ODEBUG_STATE_ACTIVE: |
28 | percpu_counter_destroy(fbc); | 28 | percpu_counter_destroy(fbc); |
29 | debug_object_free(fbc, &percpu_counter_debug_descr); | 29 | debug_object_free(fbc, &percpu_counter_debug_descr); |
30 | return 1; | 30 | return true; |
31 | default: | 31 | default: |
32 | return 0; | 32 | return false; |
33 | } | 33 | } |
34 | } | 34 | } |
35 | 35 | ||