qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
From: "Denis V. Lunev" <den-lists@parallels.com>
To: Stefan Hajnoczi <stefanha@redhat.com>, qemu-devel@nongnu.org
Cc: Peter Maydell <peter.maydell@linaro.org>
Subject: Re: [Qemu-devel] [PULL v3 00/15] Tracing patches
Date: Mon, 4 Jan 2016 11:00:18 +0300	[thread overview]
Message-ID: <568A2692.90007@parallels.com> (raw)
In-Reply-To: <1447401507-6319-1-git-send-email-stefanha@redhat.com>

On 11/13/2015 10:58 AM, Stefan Hajnoczi wrote:
> v3:
>   * Include "exec/log.h" from translate-a64.c [Peter]
>
> v2:
>   * Add missing log.py file [Peter]
>
> The following changes since commit 74fcbd22d20a2fbc1a47a7b00cce5bf98fd7be5f:
>
>    hw/misc: Add support for ADC controller in Xilinx Zynq 7000 (2015-11-12 21:30:42 +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 de332788d7c626fce31f6baebab807df5a7410e1:
>
>    log: add "-d trace:PATTERN" (2015-11-13 15:52:57 +0800)
>
> ----------------------------------------------------------------
>
> ----------------------------------------------------------------
>
> Denis V. Lunev (2):
>    trace: no need to call trace_backend_init in different branches now
>    log: move qemu-log.c into util/ directory
>
> Paolo Bonzini (11):
>    trace: count number of enabled events
>    trace: track enabled events in a separate array
>    trace: fix documentation
>    trace: split trace_init_events out of trace_init_backends
>    trace: split trace_init_file out of trace_init_backends
>    trace: add "-trace enable=..."
>    trace: add "-trace help"
>    log: do not unnecessarily include qom/cpu.h
>    trace: convert stderr backend to log
>    trace: switch default backend to "log"
>    log: add "-d trace:PATTERN"
>
> Stefan Hajnoczi (2):
>    trace: fix make foo-timestamp rules
>    trace: add make dependencies on tracetool source
>
>   Makefile.objs                        |   1 -
>   bsd-user/main.c                      |   1 +
>   configure                            |   6 +-
>   cpu-exec.c                           |   1 +
>   exec.c                               |   1 +
>   hw/acpi/cpu_hotplug.c                |   1 +
>   hw/timer/a9gtimer.c                  |   1 +
>   include/exec/log.h                   |  60 +++++++++++
>   include/qemu/log.h                   |  60 +----------
>   linux-user/main.c                    |   1 +
>   qemu-io.c                            |   2 +-
>   qemu-log.c                           | 177 --------------------------------
>   qemu-options.hx                      |  22 ++--
>   qom/cpu.c                            |   1 +
>   scripts/tracetool/backend/log.py     |  48 +++++++++
>   scripts/tracetool/backend/stderr.py  |  47 ---------
>   scripts/tracetool/format/events_c.py |   2 +-
>   target-alpha/translate.c             |   1 +
>   target-arm/translate-a64.c           |   1 +
>   target-arm/translate.c               |   1 +
>   target-cris/translate.c              |   1 +
>   target-i386/seg_helper.c             |   1 +
>   target-i386/smm_helper.c             |   1 +
>   target-i386/translate.c              |   1 +
>   target-lm32/helper.c                 |   1 +
>   target-lm32/translate.c              |   1 +
>   target-m68k/translate.c              |   1 +
>   target-microblaze/helper.c           |   1 +
>   target-microblaze/translate.c        |   1 +
>   target-mips/helper.c                 |   1 +
>   target-mips/translate.c              |   1 +
>   target-moxie/translate.c             |   1 +
>   target-openrisc/translate.c          |   1 +
>   target-ppc/mmu-hash32.c              |   1 +
>   target-ppc/mmu-hash64.c              |   1 +
>   target-ppc/mmu_helper.c              |   1 +
>   target-ppc/translate.c               |   1 +
>   target-s390x/translate.c             |   1 +
>   target-sh4/helper.c                  |   1 +
>   target-sh4/translate.c               |   1 +
>   target-sparc/int32_helper.c          |   1 +
>   target-sparc/int64_helper.c          |   1 +
>   target-sparc/translate.c             |   1 +
>   target-tilegx/translate.c            |   1 +
>   target-tricore/translate.c           |   1 +
>   target-unicore32/translate.c         |   1 +
>   target-xtensa/translate.c            |   1 +
>   tcg/tcg.c                            |   1 +
>   trace/Makefile.objs                  |  48 +++++----
>   trace/control-internal.h             |  15 ++-
>   trace/control.c                      |  98 +++++++++++++-----
>   trace/control.h                      |  44 +++++++-
>   trace/event-internal.h               |   2 -
>   trace/simple.c                       |   6 +-
>   trace/simple.h                       |   4 +-
>   translate-all.c                      |   1 +
>   util/Makefile.objs                   |   1 +
>   util/log.c                           | 190 +++++++++++++++++++++++++++++++++++
>   vl.c                                 |  38 ++++---
>   59 files changed, 537 insertions(+), 373 deletions(-)
>   create mode 100644 include/exec/log.h
>   delete mode 100644 qemu-log.c
>   create mode 100644 scripts/tracetool/backend/log.py
>   delete mode 100644 scripts/tracetool/backend/stderr.py
>   create mode 100644 util/log.c
>
Can I help with this? This series really stuck...

Den

      parent reply	other threads:[~2016-01-04  8:22 UTC|newest]

Thread overview: 10+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2015-11-13  7:58 [Qemu-devel] [PULL v3 00/15] Tracing patches Stefan Hajnoczi
2015-11-13 10:30 ` Peter Maydell
2015-11-13 10:44   ` Stefan Hajnoczi
2015-12-21  5:53     ` Denis V. Lunev
2016-01-08  2:49       ` Stefan Hajnoczi
2015-11-13 11:28   ` Peter Maydell
2015-11-13 17:03     ` Edgar E. Iglesias
2015-11-20 12:15       ` Alistair Francis
2015-11-13 11:52   ` Paolo Bonzini
2016-01-04  8:00 ` Denis V. Lunev [this message]

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=568A2692.90007@parallels.com \
    --to=den-lists@parallels.com \
    --cc=peter.maydell@linaro.org \
    --cc=qemu-devel@nongnu.org \
    --cc=stefanha@redhat.com \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
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).