2 * Interface for configuring and controlling the state of tracing events.
6 * This work is licensed under the terms of the GNU GPL, version 2 or later.
7 * See the COPYING file in the top-level directory.
10 #ifndef TRACE__CONTROL_INTERNAL_H
11 #define TRACE__CONTROL_INTERNAL_H
13 extern TraceEvent trace_events[];
14 extern bool trace_events_dstate[];
15 extern int trace_events_enabled_count;
18 static inline TraceEventID trace_event_count(void)
20 return TRACE_EVENT_COUNT;
23 static inline TraceEvent *trace_event_id(TraceEventID id)
25 assert(id < trace_event_count());
26 return &trace_events[id];
29 static inline bool trace_event_is_pattern(const char *str)
32 return strchr(str, '*') != NULL;
35 static inline TraceEventID trace_event_get_id(TraceEvent *ev)
41 static inline TraceEventVCPUID trace_event_get_vcpu_id(TraceEvent *ev)
46 static inline bool trace_event_is_vcpu(TraceEvent *ev)
48 return ev->vcpu_id != TRACE_VCPU_EVENT_COUNT;
51 static inline const char * trace_event_get_name(TraceEvent *ev)
57 static inline bool trace_event_get_state_static(TraceEvent *ev)
63 static inline bool trace_event_get_state_dynamic_by_id(TraceEventID id)
65 /* it's on fast path, avoid consistency checks (asserts) */
66 return unlikely(trace_events_enabled_count) && trace_events_dstate[id];
69 static inline bool trace_event_get_state_dynamic(TraceEvent *ev)
72 assert(trace_event_get_state_static(ev));
73 id = trace_event_get_id(ev);
74 return trace_event_get_state_dynamic_by_id(id);
77 static inline void trace_event_set_state_dynamic(TraceEvent *ev, bool state)
79 int id = trace_event_get_id(ev);
81 assert(trace_event_get_state_static(ev));
82 trace_events_enabled_count += state - trace_events_dstate[id];
83 trace_events_dstate[id] = state;
86 #endif /* TRACE__CONTROL_INTERNAL_H */