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 tracepoinrts events derived from async_outbound_initiate_template
The asynchronous transaction 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-3-o-takashi@sakamocchi.jp Signed-off-by: Takashi Sakamoto <o-takashi@sakamocchi.jp>
This commit is contained in:
@@ -398,7 +398,8 @@ void __fw_send_request(struct fw_card *card, struct fw_transaction *t, int tcode
|
||||
|
||||
spin_unlock_irqrestore(&card->lock, flags);
|
||||
|
||||
trace_async_request_outbound_initiate((uintptr_t)t, generation, speed, t->packet.header, payload,
|
||||
trace_async_request_outbound_initiate((uintptr_t)t, card->index, generation, speed,
|
||||
t->packet.header, payload,
|
||||
tcode_is_read_request(tcode) ? 0 : length / 4);
|
||||
|
||||
card->driver->send_request(card, &t->packet);
|
||||
@@ -879,9 +880,10 @@ void fw_send_response(struct fw_card *card,
|
||||
// Increase the reference count so that the object is kept during in-flight.
|
||||
fw_request_get(request);
|
||||
|
||||
trace_async_response_outbound_initiate((uintptr_t)request, request->response.generation,
|
||||
request->response.speed, request->response.header,
|
||||
data, data ? data_length / 4 : 0);
|
||||
trace_async_response_outbound_initiate((uintptr_t)request, card->index,
|
||||
request->response.generation, request->response.speed,
|
||||
request->response.header, data,
|
||||
data ? data_length / 4 : 0);
|
||||
|
||||
card->driver->send_response(card, &request->response);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user