From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([140.186.70.92]:46290) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1QzCdJ-0008SB-BE for qemu-devel@nongnu.org; Thu, 01 Sep 2011 15:09:02 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1QzCdI-0002Wb-2f for qemu-devel@nongnu.org; Thu, 01 Sep 2011 15:09:01 -0400 Received: from e3.ny.us.ibm.com ([32.97.182.143]:42649) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1QzCdH-0002WV-Tw for qemu-devel@nongnu.org; Thu, 01 Sep 2011 15:09:00 -0400 Received: from d01relay04.pok.ibm.com (d01relay04.pok.ibm.com [9.56.227.236]) by e3.ny.us.ibm.com (8.14.4/8.13.1) with ESMTP id p81IiJW5003082 for ; Thu, 1 Sep 2011 14:44:19 -0400 Received: from d01av02.pok.ibm.com (d01av02.pok.ibm.com [9.56.224.216]) by d01relay04.pok.ibm.com (8.13.8/8.13.8/NCO v10.0) with ESMTP id p81J8oSk177242 for ; Thu, 1 Sep 2011 15:08:52 -0400 Received: from d01av02.pok.ibm.com (loopback [127.0.0.1]) by d01av02.pok.ibm.com (8.14.4/8.13.1/NCO v10.0 AVout) with ESMTP id p81J8nZH001037 for ; Thu, 1 Sep 2011 16:08:49 -0300 Message-ID: <4E5FD841.1010806@us.ibm.com> Date: Thu, 01 Sep 2011 14:08:49 -0500 From: Anthony Liguori MIME-Version: 1.0 References: <1314864386-14202-1-git-send-email-stefanha@linux.vnet.ibm.com> In-Reply-To: <1314864386-14202-1-git-send-email-stefanha@linux.vnet.ibm.com> Content-Type: text/plain; charset=UTF-8; format=flowed Content-Transfer-Encoding: quoted-printable Subject: Re: [Qemu-devel] [PULL 00/15] Tracing patches List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: Stefan Hajnoczi Cc: qemu-devel@nongnu.org On 09/01/2011 03:06 AM, Stefan Hajnoczi wrote: > The following changes since commit f0fb8b7180fdcf536ea635a0720e1496110e= cb3b: > > Merge branch 'omap-for-upstream' of git://git.linaro.org/people/pmay= dell/qemu-arm into pm (2011-08-29 23:59:06 +0200) > > are available in the git repository at: > > ssh://repo.or.cz/srv/git/qemu/stefanha.git tracing Pulled. Thanks. Regards, Anthony Liguori > > Llu=C3=ADs (14): > build: Fix linkage of QEMU_PROG > build: [simple] Include qemu-timer-common.o in trace-obj-y > trace: [configure] rename CONFIG_*_TRACE into CONFIG_TRACE_* > trace: [make] replace 'ifeq' with values in CONFIG_TRACE_* > trace: move backend-specific code into the trace/ directory > trace: avoid conditional code compilation during option parsing > trace: generalize the "property" concept in the trace-events fil= e > trace: separate trace event control and query routines from the = simple backend > trace: always compile support for controlling and querying trace= event states > trace: add "-trace events" argument to control initial state > trace: always use the "nop" backend on events with the "disable"= keyword > trace: [simple] disable all trace points by default > trace: [stderr] add support for dynamically enabling/disabling e= vents > trace: enable all events > > Stefan Hajnoczi (1): > simpletrace: fix process() argument count > > Makefile | 1 + > Makefile.objs | 22 +- > Makefile.target | 8 +- > configure | 27 ++- > docs/tracing.txt | 73 +++-- > hmp-commands.hx | 11 +- > monitor.c | 26 +- > qemu-config.c | 7 +- > qemu-options.hx | 27 ++- > scripts/simpletrace.py | 4 +- > scripts/tracetool | 116 ++++---- > tests/test_path.c | 2 +- > trace-events | 651 +++++++++++++++++++-----------= --------- > trace/control.c | 42 +++ > trace/control.h | 41 +++ > trace/default.c | 41 +++ > simpletrace.c =3D> trace/simple.c | 27 +- > simpletrace.h =3D> trace/simple.h | 16 +- > trace/stderr.c | 37 +++ > trace/stderr.h | 11 + > vl.c | 19 +- > 21 files changed, 719 insertions(+), 490 deletions(-) > create mode 100644 trace/control.c > create mode 100644 trace/control.h > create mode 100644 trace/default.c > rename simpletrace.c =3D> trace/simple.c (94%) > rename simpletrace.h =3D> trace/simple.h (75%) > create mode 100644 trace/stderr.c > create mode 100644 trace/stderr.h > >