qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
From: Gerd Hoffmann <kraxel@redhat.com>
To: qemu-devel@nongnu.org
Cc: Markus Armbruster <armbru@redhat.com>, Gerd Hoffmann <kraxel@redhat.com>
Subject: [Qemu-devel] [PATCH 15/17] trace-events: Clean up after removal of old usb-host code
Date: Fri, 29 Nov 2013 09:06:19 +0100	[thread overview]
Message-ID: <1385712381-30918-16-git-send-email-kraxel@redhat.com> (raw)
In-Reply-To: <1385712381-30918-1-git-send-email-kraxel@redhat.com>

From: Markus Armbruster <armbru@redhat.com>

Commit b5613fd neglected to drop the trace events along with the code.

Signed-off-by: Markus Armbruster <armbru@redhat.com>
Signed-off-by: Gerd Hoffmann <kraxel@redhat.com>
---
 trace-events | 13 -------------
 1 file changed, 13 deletions(-)

diff --git a/trace-events b/trace-events
index 7322ed8..20e1f49 100644
--- a/trace-events
+++ b/trace-events
@@ -430,45 +430,32 @@ usb_uas_tmf_abort_task(int addr, uint16_t tag, uint16_t task_tag) "dev %d, tag 0
 usb_uas_tmf_logical_unit_reset(int addr, uint16_t tag, int lun) "dev %d, tag 0x%x, lun %d"
 usb_uas_tmf_unsupported(int addr, uint16_t tag, uint32_t function) "dev %d, tag 0x%x, function 0x%x"
 
-# hw/usb/host-linux.c
 # hw/usb/host-libusb.c
 usb_host_open_started(int bus, int addr) "dev %d:%d"
 usb_host_open_success(int bus, int addr) "dev %d:%d"
 usb_host_open_failure(int bus, int addr) "dev %d:%d"
-usb_host_disconnect(int bus, int addr) "dev %d:%d"
 usb_host_close(int bus, int addr) "dev %d:%d"
 usb_host_attach_kernel(int bus, int addr, int interface) "dev %d:%d, if %d"
 usb_host_detach_kernel(int bus, int addr, int interface) "dev %d:%d, if %d"
 usb_host_set_address(int bus, int addr, int config) "dev %d:%d, address %d"
 usb_host_set_config(int bus, int addr, int config) "dev %d:%d, config %d"
 usb_host_set_interface(int bus, int addr, int interface, int alt) "dev %d:%d, interface %d, alt %d"
-usb_host_claim_interfaces(int bus, int addr, int config, int nif) "dev %d:%d, config %d, nif %d"
 usb_host_claim_interface(int bus, int addr, int config, int interface) "dev %d:%d, config %d, if %d"
-usb_host_release_interfaces(int bus, int addr) "dev %d:%d"
 usb_host_release_interface(int bus, int addr, int interface) "dev %d:%d, if %d"
 usb_host_req_control(int bus, int addr, void *p, int req, int value, int index) "dev %d:%d, packet %p, req 0x%x, value %d, index %d"
 usb_host_req_data(int bus, int addr, void *p, int in, int ep, int size) "dev %d:%d, packet %p, in %d, ep %d, size %d"
 usb_host_req_complete(int bus, int addr, void *p, int status, int length) "dev %d:%d, packet %p, status %d, length %d"
 usb_host_req_emulated(int bus, int addr, void *p, int status) "dev %d:%d, packet %p, status %d"
 usb_host_req_canceled(int bus, int addr, void *p) "dev %d:%d, packet %p"
-usb_host_urb_submit(int bus, int addr, void *aurb, int length, int more) "dev %d:%d, aurb %p, length %d, more %d"
-usb_host_urb_complete(int bus, int addr, void *aurb, int status, int length, int more) "dev %d:%d, aurb %p, status %d, length %d, more %d"
-usb_host_urb_canceled(int bus, int addr, void *aurb) "dev %d:%d, aurb %p"
-usb_host_ep_set_halt(int bus, int addr, int ep) "dev %d:%d, ep %d"
-usb_host_ep_clear_halt(int bus, int addr, int ep) "dev %d:%d, ep %d"
 usb_host_iso_start(int bus, int addr, int ep) "dev %d:%d, ep %d"
 usb_host_iso_stop(int bus, int addr, int ep) "dev %d:%d, ep %d"
 usb_host_iso_out_of_bufs(int bus, int addr, int ep) "dev %d:%d, ep %d"
-usb_host_iso_many_urbs(int bus, int addr, int count) "dev %d:%d, count %d"
 usb_host_reset(int bus, int addr) "dev %d:%d"
 usb_host_auto_scan_enabled(void)
 usb_host_auto_scan_disabled(void)
-usb_host_claim_port(int bus, int hub, int port) "bus %d, hub addr %d, port %d"
-usb_host_parse_device(int bus, int addr, int vendor, int product) "dev %d:%d, id %04x:%04x"
 usb_host_parse_config(int bus, int addr, int value, int active) "dev %d:%d, value %d, active %d"
 usb_host_parse_interface(int bus, int addr, int num, int alt, int active) "dev %d:%d, num %d, alt %d, active %d"
 usb_host_parse_endpoint(int bus, int addr, int ep, const char *dir, const char *type, int active) "dev %d:%d, ep %d, %s, %s, active %d"
-usb_host_parse_unknown(int bus, int addr, int len, int type) "dev %d:%d, len %d, type %d"
 usb_host_parse_error(int bus, int addr, const char *errmsg) "dev %d:%d, msg %s"
 
 # hw/scsi/scsi-bus.c
-- 
1.8.3.1

  parent reply	other threads:[~2013-11-29  8:06 UTC|newest]

Thread overview: 18+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2013-11-29  8:06 [Qemu-devel] [PULL 00/17] usb patch queue Gerd Hoffmann
2013-11-29  8:06 ` [Qemu-devel] [PATCH 01/17] xhci: Add a few missing checks for disconnected devices Gerd Hoffmann
2013-11-29  8:06 ` [Qemu-devel] [PATCH 02/17] xhci: add support for suspend/resume Gerd Hoffmann
2013-11-29  8:06 ` [Qemu-devel] [PATCH 03/17] scsi: Add 2 new sense codes needed by uas Gerd Hoffmann
2013-11-29  8:06 ` [Qemu-devel] [PATCH 04/17] uas: Only use report iu-s for task_mgmt status reporting Gerd Hoffmann
2013-11-29  8:06 ` [Qemu-devel] [PATCH 05/17] uas: Fix / cleanup usb_uas_task error handling Gerd Hoffmann
2013-11-29  8:06 ` [Qemu-devel] [PATCH 06/17] uas: Streams are numbered 1-y, rather then 0-x Gerd Hoffmann
2013-11-29  8:06 ` [Qemu-devel] [PATCH 07/17] uas: Bounds check tags when using streams Gerd Hoffmann
2013-11-29  8:06 ` [Qemu-devel] [PATCH 08/17] uas: Fix response iu struct definition Gerd Hoffmann
2013-11-29  8:06 ` [Qemu-devel] [PATCH 09/17] uas: s/ui/iu/ Gerd Hoffmann
2013-11-29  8:06 ` [Qemu-devel] [PATCH 10/17] usb: Add max_streams attribute to endpoint info Gerd Hoffmann
2013-11-29  8:06 ` [Qemu-devel] [PATCH 11/17] usb: Add usb_device_alloc/free_streams Gerd Hoffmann
2013-11-29  8:06 ` [Qemu-devel] [PATCH 12/17] xhci: Call usb_device_alloc/free_streams Gerd Hoffmann
2013-11-29  8:06 ` [Qemu-devel] [PATCH 13/17] ehci: implement port wakeup Gerd Hoffmann
2013-11-29  8:06 ` [Qemu-devel] [PATCH 14/17] Revert "usb-tablet: Don't claim wakeup capability for USB-2 version" Gerd Hoffmann
2013-11-29  8:06 ` Gerd Hoffmann [this message]
2013-11-29  8:06 ` [Qemu-devel] [PATCH 16/17] usb: add vendor request defines Gerd Hoffmann
2013-11-29  8:06 ` [Qemu-devel] [PATCH 17/17] usb: move usb_{hi, lo} helpers to header file Gerd Hoffmann

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=1385712381-30918-16-git-send-email-kraxel@redhat.com \
    --to=kraxel@redhat.com \
    --cc=armbru@redhat.com \
    --cc=qemu-devel@nongnu.org \
    /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).