hc
2024-02-19 1c055e55a242a33e574e48be530e06770a210dcd
kernel/drivers/usb/host/xhci-trace.h
....@@ -80,20 +80,16 @@
8080 __field(dma_addr_t, ctx_dma)
8181 __field(u8 *, ctx_va)
8282 __field(unsigned, ctx_ep_num)
83
- __field(int, slot_id)
8483 __dynamic_array(u32, ctx_data,
8584 ((HCC_64BYTE_CONTEXT(xhci->hcc_params) + 1) * 8) *
8685 ((ctx->type == XHCI_CTX_TYPE_INPUT) + ep_num + 1))
8786 ),
8887 TP_fast_assign(
89
- struct usb_device *udev;
9088
91
- udev = to_usb_device(xhci_to_hcd(xhci)->self.controller);
9289 __entry->ctx_64 = HCC_64BYTE_CONTEXT(xhci->hcc_params);
9390 __entry->ctx_type = ctx->type;
9491 __entry->ctx_dma = ctx->dma;
9592 __entry->ctx_va = ctx->bytes;
96
- __entry->slot_id = udev->slot_id;
9793 __entry->ctx_ep_num = ep_num;
9894 memcpy(__get_dynamic_array(ctx_data), ctx->bytes,
9995 ((HCC_64BYTE_CONTEXT(xhci->hcc_params) + 1) * 32) *