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.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/include/linux/debugobjects.h b/include/linux/debugobjects.h
index a899f10c9365..46056cb161fc 100644
--- a/include/linux/debugobjects.h
+++ b/include/linux/debugobjects.h
@@ -38,6 +38,7 @@ struct debug_obj {
38 * @name: name of the object typee 38 * @name: name of the object typee
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 * @is_static_object return true if the obj is static, otherwise return false
41 * @fixup_init: fixup function, which is called when the init check 42 * @fixup_init: fixup function, which is called when the init check
42 * fails. All fixup functions must return true if fixup 43 * fails. All fixup functions must return true if fixup
43 * was successful, otherwise return false 44 * was successful, otherwise return false
@@ -53,6 +54,7 @@ struct debug_obj {
53struct debug_obj_descr { 54struct debug_obj_descr {
54 const char *name; 55 const char *name;
55 void *(*debug_hint)(void *addr); 56 void *(*debug_hint)(void *addr);
57 bool (*is_static_object)(void *addr);
56 bool (*fixup_init)(void *addr, enum debug_obj_state state); 58 bool (*fixup_init)(void *addr, enum debug_obj_state state);
57 bool (*fixup_activate)(void *addr, enum debug_obj_state state); 59 bool (*fixup_activate)(void *addr, enum debug_obj_state state);
58 bool (*fixup_destroy)(void *addr, enum debug_obj_state state); 60 bool (*fixup_destroy)(void *addr, enum debug_obj_state state);