]> git.proxmox.com Git - qemu.git/commitdiff
tracetool: Omit useless QEMU_*_ENABLED() check
authorStefan Hajnoczi <stefanha@linux.vnet.ibm.com>
Tue, 27 Sep 2011 08:00:22 +0000 (09:00 +0100)
committerStefan Hajnoczi <stefanha@linux.vnet.ibm.com>
Mon, 12 Mar 2012 10:12:34 +0000 (10:12 +0000)
SystemTap provides a "semaphore" that can optionally be tested before
executing a trace event.  The purpose of this mechanism is to skip
expensive tracing code when the trace event is disabled.

For example, some applications may have trace events that format or
convert strings for trace events.  This expensive processing should only
be done in the case where the trace event is enabled.

Since QEMU's generated trace events never have such special-purpose
code, there is no reason to add the semaphore check.

Reviewed-by: Masami Hiramatsu <masami.hiramatsu.pt@hitachi.com>
Signed-off-by: Stefan Hajnoczi <stefanha@linux.vnet.ibm.com>
scripts/tracetool

index 701b517ec1ab87473622fdf5e1471f9791d75281..65bd0a1b4cc69785693535ea77d202ec2cde218b 100755 (executable)
@@ -415,9 +415,7 @@ linetoh_dtrace()
     # Define an empty function for the trace event
     cat <<EOF
 static inline void trace_$name($args) {
-    if (QEMU_${nameupper}_ENABLED()) {
-        QEMU_${nameupper}($argnames);
-    }
+    QEMU_${nameupper}($argnames);
 }
 EOF
 }