mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/herbert/cryptodev-2.6.git
synced 2026-04-18 03:23:53 -04:00
firewire: core: record card index in async_phy_inbound tracepoints event
The asynchronous transmission of phy packet is initiated on one of 1394 OHCI controller, however the existing tracepoints events has the lack of data about it. This commit adds card_index member into event structure to store the index of host controller in use, and prints it. Link: https://lore.kernel.org/r/20240613131440.431766-7-o-takashi@sakamocchi.jp Signed-off-by: Takashi Sakamoto <o-takashi@sakamocchi.jp>
This commit is contained in:
@@ -997,7 +997,7 @@ void fw_core_handle_request(struct fw_card *card, struct fw_packet *p)
|
||||
|
||||
tcode = async_header_get_tcode(p->header);
|
||||
if (tcode_is_link_internal(tcode)) {
|
||||
trace_async_phy_inbound((uintptr_t)p, p->generation, p->ack, p->timestamp,
|
||||
trace_async_phy_inbound((uintptr_t)p, card->index, p->generation, p->ack, p->timestamp,
|
||||
p->header[1], p->header[2]);
|
||||
fw_cdev_handle_phy_packet(card, p);
|
||||
return;
|
||||
|
||||
Reference in New Issue
Block a user