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:
3263d28
)
percpu_counter: update debugobjects fixup callbacks return type
author
Du, Changbin
<
[email protected]
>
Fri, 20 May 2016 00:09:35 +0000
(17:09 -0700)
committer
Linus Torvalds
<
[email protected]
>
Fri, 20 May 2016 02:12:14 +0000
(19:12 -0700)
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 <
[email protected]
>
Cc: Jonathan Corbet <
[email protected]
>
Cc: Josh Triplett <
[email protected]
>
Cc: Steven Rostedt <
[email protected]
>
Cc: Thomas Gleixner <
[email protected]
>
Cc: Tejun Heo <
[email protected]
>
Cc: Christian Borntraeger <
[email protected]
>
Signed-off-by: Andrew Morton <
[email protected]
>
Signed-off-by: Linus Torvalds <
[email protected]
>
lib/percpu_counter.c
patch
|
blob
|
history
diff --git
a/lib/percpu_counter.c
b/lib/percpu_counter.c
index f051d69f0910a65be2dbce9799736e2ba4eee2c7..72d36113ccaa8509a7140b506cdc0330690a8b15 100644
(file)
--- a/
lib/percpu_counter.c
+++ b/
lib/percpu_counter.c
@@
-19,7
+19,7
@@
static DEFINE_SPINLOCK(percpu_counters_lock);
static struct debug_obj_descr percpu_counter_debug_descr;
-static
int
percpu_counter_fixup_free(void *addr, enum debug_obj_state state)
+static
bool
percpu_counter_fixup_free(void *addr, enum debug_obj_state state)
{
struct percpu_counter *fbc = addr;
@@
-27,9
+27,9
@@
static int percpu_counter_fixup_free(void *addr, enum debug_obj_state state)
case ODEBUG_STATE_ACTIVE:
percpu_counter_destroy(fbc);
debug_object_free(fbc, &percpu_counter_debug_descr);
- return
1
;
+ return
true
;
default:
- return
0
;
+ return
false
;
}
}