[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Qemu-devel] [PATCH 03/10] xhci: add port to slot_address tracepoint
From: |
Gerd Hoffmann |
Subject: |
[Qemu-devel] [PATCH 03/10] xhci: add port to slot_address tracepoint |
Date: |
Wed, 28 Aug 2013 14:42:59 +0200 |
Signed-off-by: Gerd Hoffmann <address@hidden>
---
hw/usb/hcd-xhci.c | 2 +-
trace-events | 2 +-
2 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/hw/usb/hcd-xhci.c b/hw/usb/hcd-xhci.c
index 83161b9..4d693bc 100644
--- a/hw/usb/hcd-xhci.c
+++ b/hw/usb/hcd-xhci.c
@@ -2135,7 +2135,6 @@ static TRBCCode xhci_address_slot(XHCIState *xhci,
unsigned int slotid,
int i;
TRBCCode res;
- trace_usb_xhci_slot_address(slotid);
assert(slotid >= 1 && slotid <= xhci->numslots);
dcbaap = xhci_addr64(xhci->dcbaap_low, xhci->dcbaap_high);
@@ -2168,6 +2167,7 @@ static TRBCCode xhci_address_slot(XHCIState *xhci,
unsigned int slotid,
fprintf(stderr, "xhci: port not found\n");
return CC_TRB_ERROR;
}
+ trace_usb_xhci_slot_address(slotid, uport->path);
dev = uport->dev;
if (!dev) {
diff --git a/trace-events b/trace-events
index eb8eaef..f849807 100644
--- a/trace-events
+++ b/trace-events
@@ -371,7 +371,7 @@ usb_xhci_port_link(uint32_t port, uint32_t pls) "port %d,
pls %d"
usb_xhci_port_notify(uint32_t port, uint32_t pls) "port %d, bits %x"
usb_xhci_slot_enable(uint32_t slotid) "slotid %d"
usb_xhci_slot_disable(uint32_t slotid) "slotid %d"
-usb_xhci_slot_address(uint32_t slotid) "slotid %d"
+usb_xhci_slot_address(uint32_t slotid, const char *port) "slotid %d, port %s"
usb_xhci_slot_configure(uint32_t slotid) "slotid %d"
usb_xhci_slot_evaluate(uint32_t slotid) "slotid %d"
usb_xhci_slot_reset(uint32_t slotid) "slotid %d"
--
1.8.3.1
- [Qemu-devel] [PATCH 00/10] usb: a bunch of bugfixes., Gerd Hoffmann, 2013/08/28
- [Qemu-devel] [PATCH 01/10] xhci: remove leftover debug printf, Gerd Hoffmann, 2013/08/28
- [Qemu-devel] [PATCH 02/10] xhci: add tracepoint for endpoint state changes, Gerd Hoffmann, 2013/08/28
- [Qemu-devel] [PATCH 04/10] xhci: fix endpoint interval calculation, Gerd Hoffmann, 2013/08/28
- [Qemu-devel] [PATCH 08/10] usb: parallelize usb3 streams, Gerd Hoffmann, 2013/08/28
- [Qemu-devel] [PATCH 06/10] xhci: reset port when disabling slot, Gerd Hoffmann, 2013/08/28
- [Qemu-devel] [PATCH 03/10] xhci: add port to slot_address tracepoint,
Gerd Hoffmann <=
- [Qemu-devel] [PATCH 07/10] uas: add property for request logging, Gerd Hoffmann, 2013/08/28
- [Qemu-devel] [PATCH 05/10] xhci: emulate intr endpoint intervals correctly, Gerd Hoffmann, 2013/08/28
- [Qemu-devel] [PATCH 10/10] Revert "usb-hub: report status changes only once", Gerd Hoffmann, 2013/08/28
- [Qemu-devel] [PATCH 09/10] usb-hub: add tracepoint for status reports, Gerd Hoffmann, 2013/08/28