aboutsummaryrefslogtreecommitdiffstats
path: root/include/linux/debugobjects.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/linux/debugobjects.h')
-rw-r--r--include/linux/debugobjects.h15
1 files changed, 8 insertions, 7 deletions
diff --git a/include/linux/debugobjects.h b/include/linux/debugobjects.h
index 98ffcbd4888e..a899f10c9365 100644
--- a/include/linux/debugobjects.h
+++ b/include/linux/debugobjects.h
@@ -39,7 +39,8 @@ struct debug_obj {
39 * @debug_hint: function returning address, which have associated 39 * @debug_hint: function returning address, which have associated
40 * kernel symbol, to allow identify the object 40 * kernel symbol, to allow identify the object
41 * @fixup_init: fixup function, which is called when the init check 41 * @fixup_init: fixup function, which is called when the init check
42 * fails 42 * fails. All fixup functions must return true if fixup
43 * was successful, otherwise return false
43 * @fixup_activate: fixup function, which is called when the activate check 44 * @fixup_activate: fixup function, which is called when the activate check
44 * fails 45 * fails
45 * @fixup_destroy: fixup function, which is called when the destroy check 46 * @fixup_destroy: fixup function, which is called when the destroy check
@@ -51,12 +52,12 @@ struct debug_obj {
51 */ 52 */
52struct debug_obj_descr { 53struct debug_obj_descr {
53 const char *name; 54 const char *name;
54 void *(*debug_hint) (void *addr); 55 void *(*debug_hint)(void *addr);
55 int (*fixup_init) (void *addr, enum debug_obj_state state); 56 bool (*fixup_init)(void *addr, enum debug_obj_state state);
56 int (*fixup_activate) (void *addr, enum debug_obj_state state); 57 bool (*fixup_activate)(void *addr, enum debug_obj_state state);
57 int (*fixup_destroy) (void *addr, enum debug_obj_state state); 58 bool (*fixup_destroy)(void *addr, enum debug_obj_state state);
58 int (*fixup_free) (void *addr, enum debug_obj_state state); 59 bool (*fixup_free)(void *addr, enum debug_obj_state state);
59 int (*fixup_assert_init)(void *addr, enum debug_obj_state state); 60 bool (*fixup_assert_init)(void *addr, enum debug_obj_state state);
60}; 61};
61 62
62#ifdef CONFIG_DEBUG_OBJECTS 63#ifdef CONFIG_DEBUG_OBJECTS