qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
From: John Snow <jsnow@redhat.com>
To: qemu-block@nongnu.org
Cc: eblake@redhat.com, qemu-devel@nongnu.org, stefanha@redhat.com,
	f4bug@amsat.org, John Snow <jsnow@redhat.com>
Subject: [Qemu-devel] [PATCH v3 0/9] IDE: replace printfs with tracing
Date: Thu, 31 Aug 2017 20:14:53 -0400	[thread overview]
Message-ID: <20170901001502.29915-1-jsnow@redhat.com> (raw)

Wherever possible, replace all printfs with proper tracing.
In most places I've tried to do a straight replacement, but
forthcoming patches may calibrate the tracing to be a little nicer.

For now, it's nice to just remove the all-or-nothing tracing.

Key:
[----] : patches are identical
[####] : number of functional differences between upstream/downstream patch
[down] : patch is downstream-only
The flags [FC] indicate (F)unctional and (C)ontextual differences, respectively

001/9:[----] [--] 'IDE: replace DEBUG_IDE with tracing system'
002/9:[----] [--] 'IDE: Add register hints to tracing'
003/9:[----] [--] 'IDE: add tracing for data ports'
004/9:[0002] [FC] 'ATAPI: Replace DEBUG_IDE_ATAPI with tracing events'
005/9:[0011] [FC] 'IDE: replace DEBUG_AIO with trace events'
006/9:[----] [--] 'AHCI: Replace DPRINTF with trace-events'
007/9:[0004] [FC] 'AHCI: Rework IRQ constants'
008/9:[0052] [FC] 'AHCI: pretty-print FIS to buffer instead of stderr'
009/9:[----] [--] 'AHCI: remove DPRINTF macro'

===
v3:
===

04: Change preprocessor gate mechanism for building cmd
           packet buffer dumps (Stefan)
05: Add getter for IDE_DMA_CMD enumeration (Philippe)
07: Changed AHCI enumeration to match changes in 05,
    (But leave assert in place to guard lookup table instead
         of adding getter.)
08: Replace FIS buffer printer with something simpler (Stefan)
    Change preprocessor gate mechanism for building AHCI buffer dumps (Stefan)
    enconstify char parameters in trace-events file (Stefan)

===
v2:
===

01: Rehabilitate commit message.
    Fix switch () statement spacing. (Eric)
    Adjust spacing in ide-tracing file to maintain columns.
    Change filename orderings in trace-events. (Eric)
    Fixed newline issue in trace-events. (Eric)

02: Context / Added R-B.

03: Added trace-events items to appropriate patch (removed from 04) (Eric)
    Added a verbose warning for data tracers (Eric)

04: Shifted items to 03 (Eric)
    Fixed newline issue (Eric)

05: Changed __END to __COUNT (Philippe)
    Removed __BEGIN enumerator (Philippe)

06: Added more information to unknown write (Philippe)

08: Context (Entropy)

John Snow (9):
  IDE: replace DEBUG_IDE with tracing system
  IDE: Add register hints to tracing
  IDE: add tracing for data ports
  ATAPI: Replace DEBUG_IDE_ATAPI with tracing events
  IDE: replace DEBUG_AIO with trace events
  AHCI: Replace DPRINTF with trace-events
  AHCI: Rework IRQ constants
  AHCI: pretty-print FIS to buffer instead of stderr
  AHCI: remove DPRINTF macro

 Makefile.objs             |   1 +
 hw/ide/ahci.c             | 243 +++++++++++++++++++++++-----------------------
 hw/ide/ahci_internal.h    |  44 +++++++--
 hw/ide/atapi.c            |  69 +++++--------
 hw/ide/cmd646.c           |  10 +-
 hw/ide/core.c             | 185 ++++++++++++++++++++++-------------
 hw/ide/pci.c              |  17 +---
 hw/ide/piix.c             |  11 +--
 hw/ide/trace-events       | 111 +++++++++++++++++++++
 hw/ide/via.c              |  10 +-
 include/hw/ide/internal.h |   8 +-
 11 files changed, 437 insertions(+), 272 deletions(-)
 create mode 100644 hw/ide/trace-events

-- 
2.9.5

             reply	other threads:[~2017-09-01  0:15 UTC|newest]

Thread overview: 16+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2017-09-01  0:14 John Snow [this message]
2017-09-01  0:14 ` [Qemu-devel] [PATCH v3 1/9] IDE: replace DEBUG_IDE with tracing system John Snow
2017-09-01  0:14 ` [Qemu-devel] [PATCH v3 2/9] IDE: Add register hints to tracing John Snow
2017-09-01  0:14 ` [Qemu-devel] [PATCH v3 3/9] IDE: add tracing for data ports John Snow
2017-09-01  0:14 ` [Qemu-devel] [PATCH v3 4/9] ATAPI: Replace DEBUG_IDE_ATAPI with tracing events John Snow
2017-09-01  0:14 ` [Qemu-devel] [PATCH v3 5/9] IDE: replace DEBUG_AIO with trace events John Snow
2017-09-01  0:27   ` Philippe Mathieu-Daudé
2017-09-01  0:40     ` John Snow
2017-09-01  0:14 ` [Qemu-devel] [PATCH v3 6/9] AHCI: Replace DPRINTF with trace-events John Snow
2017-09-01  0:15 ` [Qemu-devel] [PATCH v3 7/9] AHCI: Rework IRQ constants John Snow
2017-09-01  0:15 ` [Qemu-devel] [PATCH v3 8/9] AHCI: pretty-print FIS to buffer instead of stderr John Snow
2017-09-01  0:15 ` [Qemu-devel] [PATCH v3 9/9] AHCI: remove DPRINTF macro John Snow
2017-09-01  0:27 ` [Qemu-devel] [PATCH v3 0/9] IDE: replace printfs with tracing no-reply
2017-09-01  0:37   ` John Snow
2017-09-01 10:56 ` [Qemu-devel] [Qemu-block] " Stefan Hajnoczi
2017-09-01 18:57   ` John Snow

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=20170901001502.29915-1-jsnow@redhat.com \
    --to=jsnow@redhat.com \
    --cc=eblake@redhat.com \
    --cc=f4bug@amsat.org \
    --cc=qemu-block@nongnu.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).