diff options
author | Takashi Sakamoto <o-takashi@sakamocchi.jp> | 2024-06-25 12:18:06 +0900 |
---|---|---|
committer | Takashi Sakamoto <o-takashi@sakamocchi.jp> | 2024-06-25 21:49:43 +0900 |
commit | 0d8914165dd17b0fd330538871968efabb3227c0 (patch) | |
tree | a2f84aa78b014fcc15518c3cb90310e01382ae21 /drivers/firewire | |
parent | 001c1ff5dc397bc26a3d1a0da8733c179f39c946 (diff) | |
download | linux-stable-0d8914165dd17b0fd330538871968efabb3227c0.tar.gz linux-stable-0d8914165dd17b0fd330538871968efabb3227c0.tar.bz2 linux-stable-0d8914165dd17b0fd330538871968efabb3227c0.zip |
firewire: ohci: add tracepoints event for hardIRQ event
1394 OHCI hardware triggers PCI interrupts to notify any events to
software. Current driver for the hardware is programmed by the typical
way to utilize top- and bottom- halves, thus it has a timing gap to handle
the notification in softIRQ (tasklet).
This commit adds a tracepoint event for the hardIRQ event. The comparison
of the tracepoint event to tracepoints events in firewire subsystem is
helpful to diagnose the timing gap.
Link: https://lore.kernel.org/r/20240625031806.956650-3-o-takashi@sakamocchi.jp
Signed-off-by: Takashi Sakamoto <o-takashi@sakamocchi.jp>
Diffstat (limited to 'drivers/firewire')
-rw-r--r-- | drivers/firewire/ohci.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/firewire/ohci.c b/drivers/firewire/ohci.c index 07adb4ddd444..df16a8f4ee7f 100644 --- a/drivers/firewire/ohci.c +++ b/drivers/firewire/ohci.c @@ -2185,6 +2185,7 @@ static irqreturn_t irq_handler(int irq, void *data) */ reg_write(ohci, OHCI1394_IntEventClear, event & ~(OHCI1394_busReset | OHCI1394_postedWriteErr)); + trace_irqs(ohci->card.index, event); log_irqs(ohci, event); // The flag is masked again at bus_reset_work() scheduled by selfID event. if (event & OHCI1394_busReset) |