* [Qemu-devel] [PULL 0/1] Tracing patches
@ 2015-02-06 13:45 Stefan Hajnoczi
2015-02-06 13:45 ` [Qemu-devel] [PULL 1/1] trace: Print PID and time in stderr traces Stefan Hajnoczi
2015-02-06 14:35 ` [Qemu-devel] [PULL 0/1] Tracing patches Peter Maydell
0 siblings, 2 replies; 39+ messages in thread
From: Stefan Hajnoczi @ 2015-02-06 13:45 UTC (permalink / raw)
To: qemu-devel; +Cc: Peter Maydell, Andreas Faerber, Stefan Hajnoczi
The following changes since commit 16017c48547960539fcadb1f91d252124f442482:
softfloat: Clarify license status (2015-01-29 16:45:45 +0000)
are available in the git repository at:
git://github.com/stefanha/qemu.git tags/tracing-pull-request
for you to fetch changes up to dd9fe29c80b8a35f12d98928a97be3aded80cf69:
trace: Print PID and time in stderr traces (2015-02-06 10:27:22 +0000)
----------------------------------------------------------------
----------------------------------------------------------------
Dr. David Alan Gilbert (1):
trace: Print PID and time in stderr traces
scripts/tracetool/backend/stderr.py | 10 +++++++++-
1 file changed, 9 insertions(+), 1 deletion(-)
--
2.1.0
^ permalink raw reply [flat|nested] 39+ messages in thread
* [Qemu-devel] [PULL 1/1] trace: Print PID and time in stderr traces
2015-02-06 13:45 [Qemu-devel] [PULL 0/1] Tracing patches Stefan Hajnoczi
@ 2015-02-06 13:45 ` Stefan Hajnoczi
2015-02-06 14:35 ` [Qemu-devel] [PULL 0/1] Tracing patches Peter Maydell
1 sibling, 0 replies; 39+ messages in thread
From: Stefan Hajnoczi @ 2015-02-06 13:45 UTC (permalink / raw)
To: qemu-devel
Cc: Peter Maydell, Andreas Faerber, Stefan Hajnoczi,
Dr. David Alan Gilbert
From: "Dr. David Alan Gilbert" <dgilbert@redhat.com>
When debugging migration it's useful to know the PID of
each trace message so you can figure out if it came from the source
or the destination.
Printing the time makes it easy to do latency measurements or timings
between trace points.
Signed-off-by: Dr. David Alan Gilbert <dgilbert@redhat.com>
Message-id: 1421746875-9962-1-git-send-email-dgilbert@redhat.com
Signed-off-by: Stefan Hajnoczi <stefanha@redhat.com>
---
scripts/tracetool/backend/stderr.py | 10 +++++++++-
1 file changed, 9 insertions(+), 1 deletion(-)
diff --git a/scripts/tracetool/backend/stderr.py b/scripts/tracetool/backend/stderr.py
index 2a1e906..ca58054 100644
--- a/scripts/tracetool/backend/stderr.py
+++ b/scripts/tracetool/backend/stderr.py
@@ -21,6 +21,9 @@ PUBLIC = True
def generate_h_begin(events):
out('#include <stdio.h>',
+ '#include <sys/time.h>',
+ '#include <sys/types.h>',
+ '#include <unistd.h>',
'#include "trace/control.h"',
'')
@@ -31,7 +34,12 @@ def generate_h(event):
argnames = ", " + argnames
out(' if (trace_event_get_state(%(event_id)s)) {',
- ' fprintf(stderr, "%(name)s " %(fmt)s "\\n" %(argnames)s);',
+ ' struct timeval _now;',
+ ' gettimeofday(&_now, NULL);',
+ ' fprintf(stderr, "%%d@%%zd.%%06zd:%(name)s " %(fmt)s "\\n",',
+ ' getpid(),',
+ ' (size_t)_now.tv_sec, (size_t)_now.tv_usec',
+ ' %(argnames)s);',
' }',
event_id="TRACE_" + event.name.upper(),
name=event.name,
--
2.1.0
^ permalink raw reply related [flat|nested] 39+ messages in thread
* Re: [Qemu-devel] [PULL 0/1] Tracing patches
2015-02-06 13:45 [Qemu-devel] [PULL 0/1] Tracing patches Stefan Hajnoczi
2015-02-06 13:45 ` [Qemu-devel] [PULL 1/1] trace: Print PID and time in stderr traces Stefan Hajnoczi
@ 2015-02-06 14:35 ` Peter Maydell
1 sibling, 0 replies; 39+ messages in thread
From: Peter Maydell @ 2015-02-06 14:35 UTC (permalink / raw)
To: Stefan Hajnoczi; +Cc: QEMU Developers, Andreas Faerber
On 6 February 2015 at 13:45, Stefan Hajnoczi <stefanha@redhat.com> wrote:
> The following changes since commit 16017c48547960539fcadb1f91d252124f442482:
>
> softfloat: Clarify license status (2015-01-29 16:45:45 +0000)
>
> are available in the git repository at:
>
> git://github.com/stefanha/qemu.git tags/tracing-pull-request
>
> for you to fetch changes up to dd9fe29c80b8a35f12d98928a97be3aded80cf69:
>
> trace: Print PID and time in stderr traces (2015-02-06 10:27:22 +0000)
>
> ----------------------------------------------------------------
>
> ----------------------------------------------------------------
Applied, thanks.
-- PMM
^ permalink raw reply [flat|nested] 39+ messages in thread
* [Qemu-devel] [PULL 0/1] Tracing patches
@ 2019-08-27 20:33 Stefan Hajnoczi
2019-09-03 13:03 ` Peter Maydell
0 siblings, 1 reply; 39+ messages in thread
From: Stefan Hajnoczi @ 2019-08-27 20:33 UTC (permalink / raw)
To: qemu-devel; +Cc: Peter Maydell, Stefan Hajnoczi
The following changes since commit dac03af5d5482ec7ee9c23db467bb7230b33c0d9:
Merge remote-tracking branch 'remotes/rth/tags/pull-axp-20190825' into staging (2019-08-27 10:00:51 +0100)
are available in the Git repository at:
https://github.com/stefanha/qemu.git tags/tracing-pull-request
for you to fetch changes up to 9f591a5d95e1969969632ab44cf35e505c8ddc3b:
trace: Clarify DTrace/SystemTap help message (2019-08-27 15:12:36 +0100)
----------------------------------------------------------------
Pull request
----------------------------------------------------------------
Philippe Mathieu-Daudé (1):
trace: Clarify DTrace/SystemTap help message
trace/control.c | 6 ++++++
1 file changed, 6 insertions(+)
--
2.21.0
^ permalink raw reply [flat|nested] 39+ messages in thread
* Re: [Qemu-devel] [PULL 0/1] Tracing patches
2019-08-27 20:33 Stefan Hajnoczi
@ 2019-09-03 13:03 ` Peter Maydell
0 siblings, 0 replies; 39+ messages in thread
From: Peter Maydell @ 2019-09-03 13:03 UTC (permalink / raw)
To: Stefan Hajnoczi; +Cc: QEMU Developers
On Tue, 27 Aug 2019 at 21:33, Stefan Hajnoczi <stefanha@redhat.com> wrote:
>
> The following changes since commit dac03af5d5482ec7ee9c23db467bb7230b33c0d9:
>
> Merge remote-tracking branch 'remotes/rth/tags/pull-axp-20190825' into staging (2019-08-27 10:00:51 +0100)
>
> are available in the Git repository at:
>
> https://github.com/stefanha/qemu.git tags/tracing-pull-request
>
> for you to fetch changes up to 9f591a5d95e1969969632ab44cf35e505c8ddc3b:
>
> trace: Clarify DTrace/SystemTap help message (2019-08-27 15:12:36 +0100)
>
> ----------------------------------------------------------------
> Pull request
>
> ----------------------------------------------------------------
>
Applied, thanks.
Please update the changelog at https://wiki.qemu.org/ChangeLog/4.2
for any user-visible changes.
-- PMM
^ permalink raw reply [flat|nested] 39+ messages in thread
* [Qemu-devel] [PULL 0/1] Tracing patches
@ 2019-04-29 16:10 Stefan Hajnoczi
2019-04-29 16:10 ` Stefan Hajnoczi
` (3 more replies)
0 siblings, 4 replies; 39+ messages in thread
From: Stefan Hajnoczi @ 2019-04-29 16:10 UTC (permalink / raw)
To: qemu-devel; +Cc: Paolo Bonzini, Peter Maydell, Stefan Hajnoczi
The following changes since commit e0fb2c3d89aa77057ac4aa073e01f4ca484449b0:
Merge remote-tracking branch 'remotes/rth/tags/pull-tcg-20190426' into staging (2019-04-28 11:43:10 +0100)
are available in the Git repository at:
https://github.com/stefanha/qemu.git tags/tracing-pull-request
for you to fetch changes up to b1939fcd438b7140cb8f2685dee026bb112819d7:
trace: fix runstate tracing (2019-04-29 11:57:19 -0400)
----------------------------------------------------------------
Pull request
----------------------------------------------------------------
Yury Kotov (1):
trace: fix runstate tracing
vl.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
--
2.20.1
^ permalink raw reply [flat|nested] 39+ messages in thread
* [Qemu-devel] [PULL 0/1] Tracing patches
2019-04-29 16:10 Stefan Hajnoczi
@ 2019-04-29 16:10 ` Stefan Hajnoczi
2019-04-30 9:20 ` Peter Maydell
` (2 subsequent siblings)
3 siblings, 0 replies; 39+ messages in thread
From: Stefan Hajnoczi @ 2019-04-29 16:10 UTC (permalink / raw)
To: qemu-devel; +Cc: Stefan Hajnoczi, Paolo Bonzini, Peter Maydell
The following changes since commit e0fb2c3d89aa77057ac4aa073e01f4ca484449b0:
Merge remote-tracking branch 'remotes/rth/tags/pull-tcg-20190426' into staging (2019-04-28 11:43:10 +0100)
are available in the Git repository at:
https://github.com/stefanha/qemu.git tags/tracing-pull-request
for you to fetch changes up to b1939fcd438b7140cb8f2685dee026bb112819d7:
trace: fix runstate tracing (2019-04-29 11:57:19 -0400)
----------------------------------------------------------------
Pull request
----------------------------------------------------------------
Yury Kotov (1):
trace: fix runstate tracing
vl.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
--
2.20.1
^ permalink raw reply [flat|nested] 39+ messages in thread
* Re: [Qemu-devel] [PULL 0/1] Tracing patches
2019-04-29 16:10 Stefan Hajnoczi
2019-04-29 16:10 ` Stefan Hajnoczi
@ 2019-04-30 9:20 ` Peter Maydell
2019-04-30 9:20 ` Peter Maydell
2019-04-30 23:08 ` no-reply
2019-05-01 4:42 ` no-reply
3 siblings, 1 reply; 39+ messages in thread
From: Peter Maydell @ 2019-04-30 9:20 UTC (permalink / raw)
To: Stefan Hajnoczi; +Cc: QEMU Developers, Paolo Bonzini
On Mon, 29 Apr 2019 at 17:10, Stefan Hajnoczi <stefanha@gmail.com> wrote:
>
> The following changes since commit e0fb2c3d89aa77057ac4aa073e01f4ca484449b0:
>
> Merge remote-tracking branch 'remotes/rth/tags/pull-tcg-20190426' into staging (2019-04-28 11:43:10 +0100)
>
> are available in the Git repository at:
>
> https://github.com/stefanha/qemu.git tags/tracing-pull-request
>
> for you to fetch changes up to b1939fcd438b7140cb8f2685dee026bb112819d7:
>
> trace: fix runstate tracing (2019-04-29 11:57:19 -0400)
>
> ----------------------------------------------------------------
> Pull request
>
Applied, thanks.
Please update the changelog at https://wiki.qemu.org/ChangeLog/4.1
for any user-visible changes.
-- PMM
^ permalink raw reply [flat|nested] 39+ messages in thread
* Re: [Qemu-devel] [PULL 0/1] Tracing patches
2019-04-30 9:20 ` Peter Maydell
@ 2019-04-30 9:20 ` Peter Maydell
0 siblings, 0 replies; 39+ messages in thread
From: Peter Maydell @ 2019-04-30 9:20 UTC (permalink / raw)
To: Stefan Hajnoczi; +Cc: Paolo Bonzini, QEMU Developers
On Mon, 29 Apr 2019 at 17:10, Stefan Hajnoczi <stefanha@gmail.com> wrote:
>
> The following changes since commit e0fb2c3d89aa77057ac4aa073e01f4ca484449b0:
>
> Merge remote-tracking branch 'remotes/rth/tags/pull-tcg-20190426' into staging (2019-04-28 11:43:10 +0100)
>
> are available in the Git repository at:
>
> https://github.com/stefanha/qemu.git tags/tracing-pull-request
>
> for you to fetch changes up to b1939fcd438b7140cb8f2685dee026bb112819d7:
>
> trace: fix runstate tracing (2019-04-29 11:57:19 -0400)
>
> ----------------------------------------------------------------
> Pull request
>
Applied, thanks.
Please update the changelog at https://wiki.qemu.org/ChangeLog/4.1
for any user-visible changes.
-- PMM
^ permalink raw reply [flat|nested] 39+ messages in thread
* Re: [Qemu-devel] [PULL 0/1] Tracing patches
2019-04-29 16:10 Stefan Hajnoczi
2019-04-29 16:10 ` Stefan Hajnoczi
2019-04-30 9:20 ` Peter Maydell
@ 2019-04-30 23:08 ` no-reply
2019-04-30 23:08 ` no-reply
2019-05-01 4:42 ` no-reply
3 siblings, 1 reply; 39+ messages in thread
From: no-reply @ 2019-04-30 23:08 UTC (permalink / raw)
To: stefanha; +Cc: fam, qemu-devel, pbonzini, peter.maydell
Patchew URL: https://patchew.org/QEMU/20190429161046.10527-1-stefanha@gmail.com/
Hi,
This series failed the docker-mingw@fedora build test. Please find the testing commands and
their output below. If you have Docker installed, you can probably reproduce it
locally.
=== TEST SCRIPT BEGIN ===
#!/bin/bash
time make docker-test-mingw@fedora SHOW_ENV=1 J=14 NETWORK=1
=== TEST SCRIPT END ===
The full log is available at
http://patchew.org/logs/20190429161046.10527-1-stefanha@gmail.com/testing.docker-mingw@fedora/?type=message.
---
Email generated automatically by Patchew [https://patchew.org/].
Please send your feedback to patchew-devel@redhat.com
^ permalink raw reply [flat|nested] 39+ messages in thread
* Re: [Qemu-devel] [PULL 0/1] Tracing patches
2019-04-29 16:10 Stefan Hajnoczi
` (2 preceding siblings ...)
2019-04-30 23:08 ` no-reply
@ 2019-05-01 4:42 ` no-reply
2019-05-01 4:42 ` no-reply
3 siblings, 1 reply; 39+ messages in thread
From: no-reply @ 2019-05-01 4:42 UTC (permalink / raw)
To: stefanha; +Cc: fam, qemu-devel, pbonzini, peter.maydell
Patchew URL: https://patchew.org/QEMU/20190429161046.10527-1-stefanha@gmail.com/
Hi,
This series failed the asan build test. Please find the testing commands and
their output below. If you have Docker installed, you can probably reproduce it
locally.
=== TEST SCRIPT BEGIN ===
#!/bin/bash
time make docker-test-debug@fedora TARGET_LIST=x86_64-softmmu J=14 NETWORK=1
=== TEST SCRIPT END ===
COPY RUNNER
RUN test-debug in qemu:fedora
container_linux.go:247: starting container process caused "process_linux.go:258: applying cgroup configuration for process caused \"The maximum number of active connections for UID 0 has been reached\""
/usr/bin/docker-current: Error response from daemon: oci runtime error: The maximum number of active connections for UID 0 has been reached.
Traceback (most recent call last):
File "./tests/docker/docker.py", line 615, in <module>
sys.exit(main())
The full log is available at
http://patchew.org/logs/20190429161046.10527-1-stefanha@gmail.com/testing.asan/?type=message.
---
Email generated automatically by Patchew [https://patchew.org/].
Please send your feedback to patchew-devel@redhat.com
^ permalink raw reply [flat|nested] 39+ messages in thread
* [Qemu-devel] [PULL 0/1] Tracing patches
@ 2018-06-01 15:04 Stefan Hajnoczi
2018-06-01 16:12 ` Peter Maydell
0 siblings, 1 reply; 39+ messages in thread
From: Stefan Hajnoczi @ 2018-06-01 15:04 UTC (permalink / raw)
To: qemu-devel; +Cc: Peter Maydell, Stefan Hajnoczi
The following changes since commit e609fa71e89c81fbe2670411be62da95dfb093e0:
Merge remote-tracking branch 'remotes/edgar/tags/edgar/xilinx-next-2018-05-29-v1.for-upstream' into staging (2018-05-29 13:01:11 +0100)
are available in the Git repository at:
git://github.com/stefanha/qemu.git tags/tracing-pull-request
for you to fetch changes up to eb7ccb3c0e14ae5b6ce3254165b91a7ed77527dd:
trace: Sort trace-events-subdirs (2018-05-30 16:08:17 +0100)
----------------------------------------------------------------
Pull request
----------------------------------------------------------------
Philippe Mathieu-Daudé (1):
trace: Sort trace-events-subdirs
Makefile.objs | 82 +++++++++++++++++++++++++--------------------------
1 file changed, 41 insertions(+), 41 deletions(-)
--
2.17.0
^ permalink raw reply [flat|nested] 39+ messages in thread
* Re: [Qemu-devel] [PULL 0/1] Tracing patches
2018-06-01 15:04 Stefan Hajnoczi
@ 2018-06-01 16:12 ` Peter Maydell
0 siblings, 0 replies; 39+ messages in thread
From: Peter Maydell @ 2018-06-01 16:12 UTC (permalink / raw)
To: Stefan Hajnoczi; +Cc: QEMU Developers
On 1 June 2018 at 16:04, Stefan Hajnoczi <stefanha@redhat.com> wrote:
> The following changes since commit e609fa71e89c81fbe2670411be62da95dfb093e0:
>
> Merge remote-tracking branch 'remotes/edgar/tags/edgar/xilinx-next-2018-05-29-v1.for-upstream' into staging (2018-05-29 13:01:11 +0100)
>
> are available in the Git repository at:
>
> git://github.com/stefanha/qemu.git tags/tracing-pull-request
>
> for you to fetch changes up to eb7ccb3c0e14ae5b6ce3254165b91a7ed77527dd:
>
> trace: Sort trace-events-subdirs (2018-05-30 16:08:17 +0100)
>
> ----------------------------------------------------------------
> Pull request
>
> ----------------------------------------------------------------
>
> Philippe Mathieu-Daudé (1):
> trace: Sort trace-events-subdirs
>
> Makefile.objs | 82 +++++++++++++++++++++++++--------------------------
> 1 file changed, 41 insertions(+), 41 deletions(-)
Applied, thanks.
-- PMM
^ permalink raw reply [flat|nested] 39+ messages in thread
* [Qemu-devel] [PULL 0/1] Tracing patches
@ 2018-05-11 18:28 Stefan Hajnoczi
2018-05-14 12:15 ` Peter Maydell
0 siblings, 1 reply; 39+ messages in thread
From: Stefan Hajnoczi @ 2018-05-11 18:28 UTC (permalink / raw)
To: qemu-devel; +Cc: Peter Maydell, Stefan Hajnoczi, Eduardo Habkost, Cleber Rosa
The following changes since commit e5cd695266c5709308aa95b1baae499e4b5d4544:
Merge remote-tracking branch 'remotes/cody/tags/block-pull-request' into staging (2018-05-08 17:05:58 +0100)
are available in the Git repository at:
git://github.com/stefanha/qemu.git tags/tracing-pull-request
for you to fetch changes up to 0e07629297c9725e764b301dc03ab17cc1fb59e4:
MAINTAINERS: Add trace-events and qemu-option-trace.texi to tracing section (2018-05-10 11:55:33 +0100)
----------------------------------------------------------------
tracing patches
Just a MAINTAINERS file update for tracing files.
----------------------------------------------------------------
Thomas Huth (1):
MAINTAINERS: Add trace-events and qemu-option-trace.texi to tracing
section
MAINTAINERS | 2 ++
1 file changed, 2 insertions(+)
--
2.17.0
^ permalink raw reply [flat|nested] 39+ messages in thread
* Re: [Qemu-devel] [PULL 0/1] Tracing patches
2018-05-11 18:28 Stefan Hajnoczi
@ 2018-05-14 12:15 ` Peter Maydell
0 siblings, 0 replies; 39+ messages in thread
From: Peter Maydell @ 2018-05-14 12:15 UTC (permalink / raw)
To: Stefan Hajnoczi; +Cc: QEMU Developers, Eduardo Habkost, Cleber Rosa
On 11 May 2018 at 19:28, Stefan Hajnoczi <stefanha@redhat.com> wrote:
> The following changes since commit e5cd695266c5709308aa95b1baae499e4b5d4544:
>
> Merge remote-tracking branch 'remotes/cody/tags/block-pull-request' into staging (2018-05-08 17:05:58 +0100)
>
> are available in the Git repository at:
>
> git://github.com/stefanha/qemu.git tags/tracing-pull-request
>
> for you to fetch changes up to 0e07629297c9725e764b301dc03ab17cc1fb59e4:
>
> MAINTAINERS: Add trace-events and qemu-option-trace.texi to tracing section (2018-05-10 11:55:33 +0100)
>
> ----------------------------------------------------------------
> tracing patches
>
> Just a MAINTAINERS file update for tracing files.
>
> ----------------------------------------------------------------
>
> Thomas Huth (1):
> MAINTAINERS: Add trace-events and qemu-option-trace.texi to tracing
> section
Applied, thanks.
-- PMM
^ permalink raw reply [flat|nested] 39+ messages in thread
* [Qemu-devel] [PULL 0/1] Tracing patches
@ 2017-10-05 14:25 Stefan Hajnoczi
2017-10-05 16:28 ` Peter Maydell
0 siblings, 1 reply; 39+ messages in thread
From: Stefan Hajnoczi @ 2017-10-05 14:25 UTC (permalink / raw)
To: qemu-devel; +Cc: Peter Maydell, Stefan Hajnoczi
The following changes since commit 5456c6a4ec9cd8fc314ddc303e88bf85c110975c:
Merge remote-tracking branch 'remotes/stefanha/tags/block-pull-request' into staging (2017-10-05 12:02:21 +0100)
are available in the git repository at:
git://github.com/stefanha/qemu.git tags/tracing-pull-request
for you to fetch changes up to 45042732f39ecd42794c256bf98f231e58849c3e:
checkpatch: fix incompatibility with old perl (2017-10-05 10:22:44 -0400)
----------------------------------------------------------------
----------------------------------------------------------------
Vladimir Sementsov-Ogievskiy (1):
checkpatch: fix incompatibility with old perl
scripts/checkpatch.pl | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
--
2.13.6
^ permalink raw reply [flat|nested] 39+ messages in thread
* Re: [Qemu-devel] [PULL 0/1] Tracing patches
2017-10-05 14:25 Stefan Hajnoczi
@ 2017-10-05 16:28 ` Peter Maydell
0 siblings, 0 replies; 39+ messages in thread
From: Peter Maydell @ 2017-10-05 16:28 UTC (permalink / raw)
To: Stefan Hajnoczi; +Cc: QEMU Developers
On 5 October 2017 at 15:25, Stefan Hajnoczi <stefanha@redhat.com> wrote:
> The following changes since commit 5456c6a4ec9cd8fc314ddc303e88bf85c110975c:
>
> Merge remote-tracking branch 'remotes/stefanha/tags/block-pull-request' into staging (2017-10-05 12:02:21 +0100)
>
> are available in the git repository at:
>
> git://github.com/stefanha/qemu.git tags/tracing-pull-request
>
> for you to fetch changes up to 45042732f39ecd42794c256bf98f231e58849c3e:
>
> checkpatch: fix incompatibility with old perl (2017-10-05 10:22:44 -0400)
>
> ----------------------------------------------------------------
>
> ----------------------------------------------------------------
>
> Vladimir Sementsov-Ogievskiy (1):
> checkpatch: fix incompatibility with old perl
>
> scripts/checkpatch.pl | 3 ++-
> 1 file changed, 2 insertions(+), 1 deletion(-)
>
Applied, thanks.
-- PMM
^ permalink raw reply [flat|nested] 39+ messages in thread
* [Qemu-devel] [PULL 0/1] Tracing patches
@ 2017-09-15 17:39 Stefan Hajnoczi
2017-09-16 13:35 ` Peter Maydell
0 siblings, 1 reply; 39+ messages in thread
From: Stefan Hajnoczi @ 2017-09-15 17:39 UTC (permalink / raw)
To: qemu-devel; +Cc: Peter Maydell, Stefan Hajnoczi
The following changes since commit 3dabde1128b671f36ac6cb36b97b273139964420:
Merge remote-tracking branch 'remotes/dgilbert/tags/pull-hmp-20170914' into staging (2017-09-14 16:33:02 +0100)
are available in the git repository at:
git://github.com/stefanha/qemu.git tags/tracing-pull-request
for you to fetch changes up to f99b38fc7c1bdf2dcc5e316478281c35b8c60f79:
trace: Immediately apply per-vCPU state changes if a vCPU is being created (2017-09-15 14:25:22 +0100)
----------------------------------------------------------------
----------------------------------------------------------------
Lluís Vilanova (1):
trace: Immediately apply per-vCPU state changes if a vCPU is being
created
trace/control-target.c | 18 +++++++++++-------
1 file changed, 11 insertions(+), 7 deletions(-)
--
2.13.5
^ permalink raw reply [flat|nested] 39+ messages in thread
* Re: [Qemu-devel] [PULL 0/1] Tracing patches
2017-09-15 17:39 Stefan Hajnoczi
@ 2017-09-16 13:35 ` Peter Maydell
0 siblings, 0 replies; 39+ messages in thread
From: Peter Maydell @ 2017-09-16 13:35 UTC (permalink / raw)
To: Stefan Hajnoczi; +Cc: QEMU Developers
On 15 September 2017 at 18:39, Stefan Hajnoczi <stefanha@redhat.com> wrote:
> The following changes since commit 3dabde1128b671f36ac6cb36b97b273139964420:
>
> Merge remote-tracking branch 'remotes/dgilbert/tags/pull-hmp-20170914' into staging (2017-09-14 16:33:02 +0100)
>
> are available in the git repository at:
>
> git://github.com/stefanha/qemu.git tags/tracing-pull-request
>
> for you to fetch changes up to f99b38fc7c1bdf2dcc5e316478281c35b8c60f79:
>
> trace: Immediately apply per-vCPU state changes if a vCPU is being created (2017-09-15 14:25:22 +0100)
>
> ----------------------------------------------------------------
>
> ----------------------------------------------------------------
>
> Lluís Vilanova (1):
> trace: Immediately apply per-vCPU state changes if a vCPU is being
> created
>
> trace/control-target.c | 18 +++++++++++-------
> 1 file changed, 11 insertions(+), 7 deletions(-)
Applied, thanks.
-- PMM
^ permalink raw reply [flat|nested] 39+ messages in thread
* [Qemu-devel] [PULL 0/1] Tracing patches
@ 2017-08-07 11:04 Stefan Hajnoczi
2017-08-07 13:14 ` Peter Maydell
0 siblings, 1 reply; 39+ messages in thread
From: Stefan Hajnoczi @ 2017-08-07 11:04 UTC (permalink / raw)
To: qemu-devel; +Cc: Peter Maydell, Stefan Hajnoczi
The following changes since commit ac44ed2afb7c60255e989b163301479f5b4ecd04:
Merge remote-tracking branch 'remotes/ehabkost/tags/machine-pull-request' into staging (2017-08-04 13:46:22 +0100)
are available in the git repository at:
git://github.com/stefanha/qemu.git tags/tracing-pull-request
for you to fetch changes up to f42cf447e2310e84e119b99f7f13c8dc7a6cf3d6:
block: move trace probes into bdrv_co_preadv|pwritev (2017-08-07 09:39:35 +0100)
----------------------------------------------------------------
----------------------------------------------------------------
Daniel P. Berrange (1):
block: move trace probes into bdrv_co_preadv|pwritev
block/io.c | 8 ++++----
block/trace-events | 4 ++--
2 files changed, 6 insertions(+), 6 deletions(-)
--
2.13.3
^ permalink raw reply [flat|nested] 39+ messages in thread
* Re: [Qemu-devel] [PULL 0/1] Tracing patches
2017-08-07 11:04 Stefan Hajnoczi
@ 2017-08-07 13:14 ` Peter Maydell
0 siblings, 0 replies; 39+ messages in thread
From: Peter Maydell @ 2017-08-07 13:14 UTC (permalink / raw)
To: Stefan Hajnoczi; +Cc: QEMU Developers
On 7 August 2017 at 12:04, Stefan Hajnoczi <stefanha@redhat.com> wrote:
> The following changes since commit ac44ed2afb7c60255e989b163301479f5b4ecd04:
>
> Merge remote-tracking branch 'remotes/ehabkost/tags/machine-pull-request' into staging (2017-08-04 13:46:22 +0100)
>
> are available in the git repository at:
>
> git://github.com/stefanha/qemu.git tags/tracing-pull-request
>
> for you to fetch changes up to f42cf447e2310e84e119b99f7f13c8dc7a6cf3d6:
>
> block: move trace probes into bdrv_co_preadv|pwritev (2017-08-07 09:39:35 +0100)
>
> ----------------------------------------------------------------
>
> ----------------------------------------------------------------
>
> Daniel P. Berrange (1):
> block: move trace probes into bdrv_co_preadv|pwritev
>
> block/io.c | 8 ++++----
> block/trace-events | 4 ++--
> 2 files changed, 6 insertions(+), 6 deletions(-)
Applied, thanks.
-- PMM
^ permalink raw reply [flat|nested] 39+ messages in thread
* [Qemu-devel] [PULL 0/1] Tracing patches
@ 2017-06-07 18:55 Stefan Hajnoczi
2017-06-12 14:29 ` Peter Maydell
0 siblings, 1 reply; 39+ messages in thread
From: Stefan Hajnoczi @ 2017-06-07 18:55 UTC (permalink / raw)
To: qemu-devel; +Cc: Peter Maydell, Stefan Hajnoczi
The following changes since commit 0db1851becbefe3e50cfc03776fb1f75817376af:
Merge remote-tracking branch 'remotes/vivier/tags/m68k-for-2.10-pull-request' into staging (2017-06-07 11:56:00 +0100)
are available in the git repository at:
git://github.com/stefanha/qemu.git tags/tracing-pull-request
for you to fetch changes up to 249e9f792c4c6e52058570e83b550ec8310f621e:
simpletrace: Improve the error message if event is not declared (2017-06-07 14:34:19 +0100)
----------------------------------------------------------------
----------------------------------------------------------------
Jose Ricardo Ziviani (1):
simpletrace: Improve the error message if event is not declared
scripts/simpletrace.py | 10 +++++++++-
1 file changed, 9 insertions(+), 1 deletion(-)
--
2.9.4
^ permalink raw reply [flat|nested] 39+ messages in thread
* Re: [Qemu-devel] [PULL 0/1] Tracing patches
2017-06-07 18:55 Stefan Hajnoczi
@ 2017-06-12 14:29 ` Peter Maydell
0 siblings, 0 replies; 39+ messages in thread
From: Peter Maydell @ 2017-06-12 14:29 UTC (permalink / raw)
To: Stefan Hajnoczi; +Cc: QEMU Developers
On 7 June 2017 at 19:55, Stefan Hajnoczi <stefanha@redhat.com> wrote:
> The following changes since commit 0db1851becbefe3e50cfc03776fb1f75817376af:
>
> Merge remote-tracking branch 'remotes/vivier/tags/m68k-for-2.10-pull-request' into staging (2017-06-07 11:56:00 +0100)
>
> are available in the git repository at:
>
> git://github.com/stefanha/qemu.git tags/tracing-pull-request
>
> for you to fetch changes up to 249e9f792c4c6e52058570e83b550ec8310f621e:
>
> simpletrace: Improve the error message if event is not declared (2017-06-07 14:34:19 +0100)
>
> ----------------------------------------------------------------
>
> ----------------------------------------------------------------
>
> Jose Ricardo Ziviani (1):
> simpletrace: Improve the error message if event is not declared
>
> scripts/simpletrace.py | 10 +++++++++-
> 1 file changed, 9 insertions(+), 1 deletion(-)
Applied, thanks.
-- PMM
^ permalink raw reply [flat|nested] 39+ messages in thread
* [Qemu-devel] [PULL 0/1] Tracing patches
@ 2016-11-29 10:07 Stefan Hajnoczi
2016-11-29 10:21 ` Stefan Hajnoczi
0 siblings, 1 reply; 39+ messages in thread
From: Stefan Hajnoczi @ 2016-11-29 10:07 UTC (permalink / raw)
To: qemu-devel; +Cc: Peter Maydell, Stefan Hajnoczi
The following changes since commit 00227fefd2059464cd2f59aed29944874c630e2f:
Update version for v2.8.0-rc1 release (2016-11-22 22:29:08 +0000)
are available in the git repository at:
git://github.com/stefanha/qemu.git tags/tracing-pull-request
for you to fetch changes up to c79ed23df5090294a81fd66f67632e4535fb3164:
configure: fix LTTng UST tracing backend detection (2016-11-29 09:36:12 +0000)
----------------------------------------------------------------
----------------------------------------------------------------
Francis Deslauriers (1):
configure: fix LTTng UST tracing backend detection
configure | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
--
2.9.3
^ permalink raw reply [flat|nested] 39+ messages in thread
* Re: [Qemu-devel] [PULL 0/1] Tracing patches
2016-11-29 10:07 Stefan Hajnoczi
@ 2016-11-29 10:21 ` Stefan Hajnoczi
0 siblings, 0 replies; 39+ messages in thread
From: Stefan Hajnoczi @ 2016-11-29 10:21 UTC (permalink / raw)
To: Stefan Hajnoczi; +Cc: qemu-devel, Peter Maydell
[-- Attachment #1: Type: text/plain, Size: 944 bytes --]
On Tue, Nov 29, 2016 at 10:07:23AM +0000, Stefan Hajnoczi wrote:
> The following changes since commit 00227fefd2059464cd2f59aed29944874c630e2f:
>
> Update version for v2.8.0-rc1 release (2016-11-22 22:29:08 +0000)
>
> are available in the git repository at:
>
> git://github.com/stefanha/qemu.git tags/tracing-pull-request
>
> for you to fetch changes up to c79ed23df5090294a81fd66f67632e4535fb3164:
>
> configure: fix LTTng UST tracing backend detection (2016-11-29 09:36:12 +0000)
>
> ----------------------------------------------------------------
>
> ----------------------------------------------------------------
>
> Francis Deslauriers (1):
> configure: fix LTTng UST tracing backend detection
>
> configure | 4 ++--
> 1 file changed, 2 insertions(+), 2 deletions(-)
>
> --
> 2.9.3
>
>
Thanks, applied to my staging tree:
https://github.com/stefanha/qemu/commits/staging
Stefan
[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 455 bytes --]
^ permalink raw reply [flat|nested] 39+ messages in thread
* [Qemu-devel] [PULL 0/1] Tracing patches
@ 2016-11-18 15:01 Stefan Hajnoczi
2016-11-18 15:33 ` Stefan Hajnoczi
0 siblings, 1 reply; 39+ messages in thread
From: Stefan Hajnoczi @ 2016-11-18 15:01 UTC (permalink / raw)
To: qemu-devel; +Cc: Peter Maydell, Stefan Hajnoczi
The following changes since commit b0bcc86d2a87456f5a276f941dc775b265b309cf:
Update version for v2.8.0-rc0 release (2016-11-15 20:55:12 +0000)
are available in the git repository at:
git://github.com/stefanha/qemu.git tags/tracing-pull-request
for you to fetch changes up to d4f7ca59017835784c6872dfab0e269d9b41b05a:
trace: fix generated code build break (2016-11-18 11:09:58 +0000)
----------------------------------------------------------------
----------------------------------------------------------------
Greg Kurz (1):
trace: fix generated code build break
scripts/tracetool.py | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
--
2.7.4
^ permalink raw reply [flat|nested] 39+ messages in thread
* Re: [Qemu-devel] [PULL 0/1] Tracing patches
2016-11-18 15:01 Stefan Hajnoczi
@ 2016-11-18 15:33 ` Stefan Hajnoczi
0 siblings, 0 replies; 39+ messages in thread
From: Stefan Hajnoczi @ 2016-11-18 15:33 UTC (permalink / raw)
To: Stefan Hajnoczi; +Cc: qemu-devel, Peter Maydell
[-- Attachment #1: Type: text/plain, Size: 915 bytes --]
On Fri, Nov 18, 2016 at 03:01:28PM +0000, Stefan Hajnoczi wrote:
> The following changes since commit b0bcc86d2a87456f5a276f941dc775b265b309cf:
>
> Update version for v2.8.0-rc0 release (2016-11-15 20:55:12 +0000)
>
> are available in the git repository at:
>
> git://github.com/stefanha/qemu.git tags/tracing-pull-request
>
> for you to fetch changes up to d4f7ca59017835784c6872dfab0e269d9b41b05a:
>
> trace: fix generated code build break (2016-11-18 11:09:58 +0000)
>
> ----------------------------------------------------------------
>
> ----------------------------------------------------------------
>
> Greg Kurz (1):
> trace: fix generated code build break
>
> scripts/tracetool.py | 2 +-
> 1 file changed, 1 insertion(+), 1 deletion(-)
>
> --
> 2.7.4
>
>
Thanks, applied to my staging tree:
https://github.com/stefanha/qemu/commits/staging
Stefan
[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 455 bytes --]
^ permalink raw reply [flat|nested] 39+ messages in thread
* [Qemu-devel] [PULL 0/1] Tracing patches
@ 2016-11-08 18:17 Stefan Hajnoczi
2016-11-09 12:44 ` Stefan Hajnoczi
0 siblings, 1 reply; 39+ messages in thread
From: Stefan Hajnoczi @ 2016-11-08 18:17 UTC (permalink / raw)
To: qemu-devel; +Cc: Peter Maydell, Stefan Hajnoczi
The following changes since commit 207faf24c58859f5240f66bf6decc33b87a1776e:
Merge remote-tracking branch 'pm215/tags/pull-target-arm-20161107' into staging (2016-11-07 14:02:15 +0000)
are available in the git repository at:
git://github.com/stefanha/qemu.git tags/tracing-pull-request
for you to fetch changes up to 3b0fc80dd8ed9bd1ac738898e4fbd70c4a618925:
docs/tracing.txt: Update documentation of default backend (2016-11-08 18:16:48 +0000)
----------------------------------------------------------------
----------------------------------------------------------------
Peter Maydell (1):
docs/tracing.txt: Update documentation of default backend
docs/tracing.txt | 7 +++++--
1 file changed, 5 insertions(+), 2 deletions(-)
--
2.7.4
^ permalink raw reply [flat|nested] 39+ messages in thread
* Re: [Qemu-devel] [PULL 0/1] Tracing patches
2016-11-08 18:17 Stefan Hajnoczi
@ 2016-11-09 12:44 ` Stefan Hajnoczi
0 siblings, 0 replies; 39+ messages in thread
From: Stefan Hajnoczi @ 2016-11-09 12:44 UTC (permalink / raw)
To: Stefan Hajnoczi; +Cc: qemu-devel, Peter Maydell
[-- Attachment #1: Type: text/plain, Size: 1004 bytes --]
On Tue, Nov 08, 2016 at 06:17:32PM +0000, Stefan Hajnoczi wrote:
> The following changes since commit 207faf24c58859f5240f66bf6decc33b87a1776e:
>
> Merge remote-tracking branch 'pm215/tags/pull-target-arm-20161107' into staging (2016-11-07 14:02:15 +0000)
>
> are available in the git repository at:
>
> git://github.com/stefanha/qemu.git tags/tracing-pull-request
>
> for you to fetch changes up to 3b0fc80dd8ed9bd1ac738898e4fbd70c4a618925:
>
> docs/tracing.txt: Update documentation of default backend (2016-11-08 18:16:48 +0000)
>
> ----------------------------------------------------------------
>
> ----------------------------------------------------------------
>
> Peter Maydell (1):
> docs/tracing.txt: Update documentation of default backend
>
> docs/tracing.txt | 7 +++++--
> 1 file changed, 5 insertions(+), 2 deletions(-)
>
> --
> 2.7.4
>
>
Thanks, applied to my staging tree:
https://github.com/stefanha/qemu/commits/staging
Stefan
[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 455 bytes --]
^ permalink raw reply [flat|nested] 39+ messages in thread
* [Qemu-devel] [PULL 0/1] Tracing patches
@ 2016-05-17 13:07 Stefan Hajnoczi
2016-05-17 13:46 ` Peter Maydell
0 siblings, 1 reply; 39+ messages in thread
From: Stefan Hajnoczi @ 2016-05-17 13:07 UTC (permalink / raw)
To: qemu-devel; +Cc: Peter Maydell, Stefan Hajnoczi
The following changes since commit 70f87e0f0aa04f764dabaeb3ed71ff195748076a:
Merge remote-tracking branch 'remotes/kraxel/tags/pull-ui-20160513-1' into staging (2016-05-13 13:39:38 +0100)
are available in the git repository at:
git://github.com/stefanha/qemu.git tags/tracing-pull-request
for you to fetch changes up to 2531088f6c1ce1f620f8d5a545f0af95598e69fc:
hw/intc/arm_gic: add tracepoints (2016-05-16 17:20:41 -0700)
----------------------------------------------------------------
----------------------------------------------------------------
Hollis Blanchard (1):
hw/intc/arm_gic: add tracepoints
hw/intc/arm_gic.c | 12 ++++++++++++
trace-events | 8 ++++++++
2 files changed, 20 insertions(+)
--
2.5.5
^ permalink raw reply [flat|nested] 39+ messages in thread
* Re: [Qemu-devel] [PULL 0/1] Tracing patches
2016-05-17 13:07 Stefan Hajnoczi
@ 2016-05-17 13:46 ` Peter Maydell
0 siblings, 0 replies; 39+ messages in thread
From: Peter Maydell @ 2016-05-17 13:46 UTC (permalink / raw)
To: Stefan Hajnoczi; +Cc: QEMU Developers
On 17 May 2016 at 14:07, Stefan Hajnoczi <stefanha@redhat.com> wrote:
> The following changes since commit 70f87e0f0aa04f764dabaeb3ed71ff195748076a:
>
> Merge remote-tracking branch 'remotes/kraxel/tags/pull-ui-20160513-1' into staging (2016-05-13 13:39:38 +0100)
>
> are available in the git repository at:
>
> git://github.com/stefanha/qemu.git tags/tracing-pull-request
>
> for you to fetch changes up to 2531088f6c1ce1f620f8d5a545f0af95598e69fc:
>
> hw/intc/arm_gic: add tracepoints (2016-05-16 17:20:41 -0700)
Applied, thanks.
Incidentally as a result of my recent gicv3 work I've become a
convert to tracepoints. Being able to turn them on at runtime via
-d 'trace:gicv3*' makes them really useful and accessible in a
way I think they weren't previously.
thanks
-- PMM
^ permalink raw reply [flat|nested] 39+ messages in thread
* [Qemu-devel] [PULL 0/1] Tracing patches
@ 2015-09-03 14:46 Stefan Hajnoczi
2015-09-03 16:27 ` Peter Maydell
0 siblings, 1 reply; 39+ messages in thread
From: Stefan Hajnoczi @ 2015-09-03 14:46 UTC (permalink / raw)
To: qemu-devel; +Cc: Peter Maydell, Stefan Hajnoczi
The following changes since commit 561578c2a82292ddf55737791d2838b797f49f35:
Merge remote-tracking branch 'remotes/rth/tags/pull-tcg-20150902' into staging (2015-09-03 13:05:45 +0100)
are available in the git repository at:
git://github.com/stefanha/qemu.git tags/tracing-pull-request
for you to fetch changes up to 987bd27000b6e21df6c73f6badb945ab5e42996a:
trace-events: Add hmp completion (2015-09-03 15:46:10 +0100)
----------------------------------------------------------------
----------------------------------------------------------------
Dr. David Alan Gilbert (1):
trace-events: Add hmp completion
hmp-commands.hx | 1 +
hmp.h | 1 +
monitor.c | 20 ++++++++++++++++++++
3 files changed, 22 insertions(+)
--
2.4.3
^ permalink raw reply [flat|nested] 39+ messages in thread
* Re: [Qemu-devel] [PULL 0/1] Tracing patches
2015-09-03 14:46 Stefan Hajnoczi
@ 2015-09-03 16:27 ` Peter Maydell
0 siblings, 0 replies; 39+ messages in thread
From: Peter Maydell @ 2015-09-03 16:27 UTC (permalink / raw)
To: Stefan Hajnoczi; +Cc: QEMU Developers
On 3 September 2015 at 15:46, Stefan Hajnoczi <stefanha@redhat.com> wrote:
> The following changes since commit 561578c2a82292ddf55737791d2838b797f49f35:
>
> Merge remote-tracking branch 'remotes/rth/tags/pull-tcg-20150902' into staging (2015-09-03 13:05:45 +0100)
>
> are available in the git repository at:
>
> git://github.com/stefanha/qemu.git tags/tracing-pull-request
>
> for you to fetch changes up to 987bd27000b6e21df6c73f6badb945ab5e42996a:
>
> trace-events: Add hmp completion (2015-09-03 15:46:10 +0100)
>
> ----------------------------------------------------------------
Applied, thanks.
-- PMM
^ permalink raw reply [flat|nested] 39+ messages in thread
* [Qemu-devel] [PULL 0/1] Tracing patches
@ 2013-09-20 17:58 Stefan Hajnoczi
2013-09-20 20:40 ` Paolo Bonzini
0 siblings, 1 reply; 39+ messages in thread
From: Stefan Hajnoczi @ 2013-09-20 17:58 UTC (permalink / raw)
To: qemu-devel; +Cc: Stefan Hajnoczi, Anthony Liguori
The following changes since commit 6c2679fc19560699679200fb42ab4659bcbe7f79:
Merge remote-tracking branch 'kiszka/queues/slirp' into staging (2013-09-17 10:01:24 -0500)
are available in the git repository at:
git://github.com/stefanha/qemu.git tracing
for you to fetch changes up to cbf5b968567dbd5a71165c1d30a0ce351bdca11a:
kvm: fix traces to use %x instead of %d (2013-09-20 19:55:01 +0200)
----------------------------------------------------------------
Alexey Kardashevskiy (1):
kvm: fix traces to use %x instead of %d
trace-events | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
--
1.8.3.1
^ permalink raw reply [flat|nested] 39+ messages in thread
* Re: [Qemu-devel] [PULL 0/1] Tracing patches
2013-09-20 17:58 Stefan Hajnoczi
@ 2013-09-20 20:40 ` Paolo Bonzini
0 siblings, 0 replies; 39+ messages in thread
From: Paolo Bonzini @ 2013-09-20 20:40 UTC (permalink / raw)
To: Stefan Hajnoczi; +Cc: qemu-devel, Anthony Liguori
Il 20/09/2013 19:58, Stefan Hajnoczi ha scritto:
> The following changes since commit 6c2679fc19560699679200fb42ab4659bcbe7f79:
>
> Merge remote-tracking branch 'kiszka/queues/slirp' into staging (2013-09-17 10:01:24 -0500)
>
> are available in the git repository at:
>
>
> git://github.com/stefanha/qemu.git tracing
>
> for you to fetch changes up to cbf5b968567dbd5a71165c1d30a0ce351bdca11a:
>
> kvm: fix traces to use %x instead of %d (2013-09-20 19:55:01 +0200)
>
> ----------------------------------------------------------------
> Alexey Kardashevskiy (1):
> kvm: fix traces to use %x instead of %d
>
> trace-events | 6 +++---
> 1 file changed, 3 insertions(+), 3 deletions(-)
>
This single patch is also in my KVM pull request, so it's not needed.
Paolo
^ permalink raw reply [flat|nested] 39+ messages in thread
* [Qemu-devel] [PULL 0/1] Tracing patches
@ 2011-11-01 14:19 Stefan Hajnoczi
2011-11-01 18:13 ` Anthony Liguori
0 siblings, 1 reply; 39+ messages in thread
From: Stefan Hajnoczi @ 2011-11-01 14:19 UTC (permalink / raw)
To: qemu-devel; +Cc: Anthony Liguori, Stefan Hajnoczi
The last tracing tree patch for QEMU 1.0!
The following changes since commit ff74c5a9a91c6dbf1017195462aa4176f7381240:
Merge remote-tracking branch 'riku/linux-user-for-upstream' into staging (2011-10-31 15:05:40 -0500)
are available in the git repository at:
ssh://repo.or.cz/srv/git/qemu/stefanha.git tracing
Mark Wu (1):
trace: Add wildcard trace event support
docs/tracing.txt | 9 ++++++++-
trace/simple.c | 17 ++++++++++++++++-
trace/stderr.c | 17 ++++++++++++++++-
3 files changed, 40 insertions(+), 3 deletions(-)
--
1.7.7
^ permalink raw reply [flat|nested] 39+ messages in thread
* Re: [Qemu-devel] [PULL 0/1] Tracing patches
2011-11-01 14:19 Stefan Hajnoczi
@ 2011-11-01 18:13 ` Anthony Liguori
0 siblings, 0 replies; 39+ messages in thread
From: Anthony Liguori @ 2011-11-01 18:13 UTC (permalink / raw)
To: Stefan Hajnoczi; +Cc: qemu-devel
On 11/01/2011 09:19 AM, Stefan Hajnoczi wrote:
> The last tracing tree patch for QEMU 1.0!
>
> The following changes since commit ff74c5a9a91c6dbf1017195462aa4176f7381240:
>
> Merge remote-tracking branch 'riku/linux-user-for-upstream' into staging (2011-10-31 15:05:40 -0500)
>
> are available in the git repository at:
>
> ssh://repo.or.cz/srv/git/qemu/stefanha.git tracing
Pulled. Thanks.
Regards,
Anthony Liguori
>
> Mark Wu (1):
> trace: Add wildcard trace event support
>
> docs/tracing.txt | 9 ++++++++-
> trace/simple.c | 17 ++++++++++++++++-
> trace/stderr.c | 17 ++++++++++++++++-
> 3 files changed, 40 insertions(+), 3 deletions(-)
>
^ permalink raw reply [flat|nested] 39+ messages in thread
end of thread, other threads:[~2019-09-03 13:05 UTC | newest]
Thread overview: 39+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2015-02-06 13:45 [Qemu-devel] [PULL 0/1] Tracing patches Stefan Hajnoczi
2015-02-06 13:45 ` [Qemu-devel] [PULL 1/1] trace: Print PID and time in stderr traces Stefan Hajnoczi
2015-02-06 14:35 ` [Qemu-devel] [PULL 0/1] Tracing patches Peter Maydell
-- strict thread matches above, loose matches on Subject: below --
2019-08-27 20:33 Stefan Hajnoczi
2019-09-03 13:03 ` Peter Maydell
2019-04-29 16:10 Stefan Hajnoczi
2019-04-29 16:10 ` Stefan Hajnoczi
2019-04-30 9:20 ` Peter Maydell
2019-04-30 9:20 ` Peter Maydell
2019-04-30 23:08 ` no-reply
2019-04-30 23:08 ` no-reply
2019-05-01 4:42 ` no-reply
2019-05-01 4:42 ` no-reply
2018-06-01 15:04 Stefan Hajnoczi
2018-06-01 16:12 ` Peter Maydell
2018-05-11 18:28 Stefan Hajnoczi
2018-05-14 12:15 ` Peter Maydell
2017-10-05 14:25 Stefan Hajnoczi
2017-10-05 16:28 ` Peter Maydell
2017-09-15 17:39 Stefan Hajnoczi
2017-09-16 13:35 ` Peter Maydell
2017-08-07 11:04 Stefan Hajnoczi
2017-08-07 13:14 ` Peter Maydell
2017-06-07 18:55 Stefan Hajnoczi
2017-06-12 14:29 ` Peter Maydell
2016-11-29 10:07 Stefan Hajnoczi
2016-11-29 10:21 ` Stefan Hajnoczi
2016-11-18 15:01 Stefan Hajnoczi
2016-11-18 15:33 ` Stefan Hajnoczi
2016-11-08 18:17 Stefan Hajnoczi
2016-11-09 12:44 ` Stefan Hajnoczi
2016-05-17 13:07 Stefan Hajnoczi
2016-05-17 13:46 ` Peter Maydell
2015-09-03 14:46 Stefan Hajnoczi
2015-09-03 16:27 ` Peter Maydell
2013-09-20 17:58 Stefan Hajnoczi
2013-09-20 20:40 ` Paolo Bonzini
2011-11-01 14:19 Stefan Hajnoczi
2011-11-01 18:13 ` Anthony Liguori
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).