From: Prerna Saxena <pre...@linux.vnet.ibm.com> Allow users to specify a file for trace-outputs at configuration. Also, allow trace files to be annotated by <pid> so each qemu instance has unique traces.
The trace file name can be passed as a config option: --trace-file=/path/to/file (Default : /tmp/trace ) At runtime, the pid of the qemu process is appended to the filename so that mutiple qemu instances do not have overlapping logs. Eg : /tmp/trace-1234 for qemu launched with pid 1234. I have yet to test this on windows. getpid() is used at many places in code(including vnc.c), so I'm hoping this would be okay too. Edited-by: Stefan Hajnoczi <stefa...@linux.vnet.ibm.com> --- Prerna, I have modified this patch that you wrote and together with patch 2/2 it provides control over the trace file. The changes include: * Set trace_file earlier in ./configure so $trace_file-<pid> displays correctly. * Introduce open_trace_file() helper function to handle file naming. configure | 13 +++++++++++++ simpletrace.c | 16 ++++++++++++++-- 2 files changed, 27 insertions(+), 2 deletions(-) diff --git a/configure b/configure index 02bf602..fe1b027 100755 --- a/configure +++ b/configure @@ -313,6 +313,7 @@ check_utests="no" user_pie="no" zero_malloc="" trace_backend="nop" +trace_file="/tmp/trace" # OS specific if check_define __linux__ ; then @@ -470,6 +471,7 @@ if test "$mingw32" = "yes" ; then bindir="\${prefix}" sysconfdir="\${prefix}" confsuffix="" + trace_file="trace" fi # find source path @@ -517,6 +519,8 @@ for opt do ;; --trace-backend=*) trace_backend="$optarg" ;; + --trace-file=*) trace_file="$optarg" + ;; --enable-gprof) gprof="yes" ;; --static) @@ -876,6 +880,9 @@ echo " --disable-docs disable documentation build" echo " --disable-vhost-net disable vhost-net acceleration support" echo " --enable-vhost-net enable vhost-net acceleration support" echo " --trace-backend=B Trace backend nop simple ust" +echo " --trace-file=NAME Full PATH,NAME of file to store traces" +echo " Default:/tmp/trace-<pid>" +echo " Default:trace-<pid> on Windows" echo "" echo "NOTE: The object files are built at the place where configure is launched" exit 1 @@ -2132,6 +2139,7 @@ echo "fdatasync $fdatasync" echo "uuid support $uuid" echo "vhost-net support $vhost_net" echo "Trace backend $trace_backend" +echo "Trace output file $trace_file-<pid>" if test $sdl_too_old = "yes"; then echo "-> Your SDL version is too old - please upgrade to have SDL support" @@ -2387,6 +2395,11 @@ fi if test "$trace_backend" = "ust"; then LIBS="-lust $LIBS" fi +# Set the appropriate trace file. +if test "$trace_backend" = "simple"; then + trace_file="\"$trace_file-%u\"" +fi +echo "CONFIG_TRACE_FILE=$trace_file" >> $config_host_mak echo "TOOLS=$tools" >> $config_host_mak echo "ROMS=$roms" >> $config_host_mak echo "MAKE=$make" >> $config_host_mak diff --git a/simpletrace.c b/simpletrace.c index ed20d36..29fd6a9 100644 --- a/simpletrace.c +++ b/simpletrace.c @@ -21,11 +21,23 @@ static TraceRecord trace_buf[TRACE_BUF_LEN]; static unsigned int trace_idx; static FILE *trace_fp; +static bool open_trace_file(void) +{ + char *filename; + + if (asprintf(&filename, CONFIG_TRACE_FILE, getpid()) < 0) { + return false; + } + + trace_fp = fopen(filename, "w"); + free(filename); + return trace_fp != NULL; +} + static void flush_trace_buffer(void) { if (!trace_fp) { - trace_fp = fopen("/tmp/trace.log", "w"); - if (trace_fp) { + if (open_trace_file()) { atexit(flush_trace_buffer); } } -- 1.7.1