Merge branch 'for-linus' of git://git.kernel.dk/linux-block
[deliverable/linux.git] / include / linux / debugobjects.h
index a899f10c93654c2cbe605d38cd163f309091ebe4..46056cb161fce0e1f3de707d887abd2ffcb1d02b 100644 (file)
@@ -38,6 +38,7 @@ struct debug_obj {
  * @name:              name of the object typee
  * @debug_hint:                function returning address, which have associated
  *                     kernel symbol, to allow identify the object
+ * @is_static_object   return true if the obj is static, otherwise return false
  * @fixup_init:                fixup function, which is called when the init check
  *                     fails. All fixup functions must return true if fixup
  *                     was successful, otherwise return false
@@ -53,6 +54,7 @@ struct debug_obj {
 struct debug_obj_descr {
        const char              *name;
        void *(*debug_hint)(void *addr);
+       bool (*is_static_object)(void *addr);
        bool (*fixup_init)(void *addr, enum debug_obj_state state);
        bool (*fixup_activate)(void *addr, enum debug_obj_state state);
        bool (*fixup_destroy)(void *addr, enum debug_obj_state state);
This page took 0.025154 seconds and 5 git commands to generate.