1STRUCT DEBUG_OBJ(9) Fixup functions STRUCT DEBUG_OBJ(9)
2
3
4
6 struct_debug_obj - representaion of an tracked object
7
9 struct debug_obj {
10 struct hlist_node node;
11 enum debug_obj_state state;
12 void * object;
13 struct debug_obj_descr * descr;
14 };
15
17 node
18 hlist node to link the object into the tracker list
19
20 state
21 tracked object state
22
23 object
24 pointer to the real object
25
26 descr
27 pointer to an object type specific debug description structure
28
30 Thomas Gleixner <tglx@linutronix.de>
31 Author.
32
34Kernel Hackers Manual 2.6. June 2019 STRUCT DEBUG_OBJ(9)