Re: [PATCH 3/3] dma-mapping: Trace more error paths

2024-10-21 Thread Sean Anderson
On 10/21/24 06:38, Robin Murphy wrote: > On 2024-10-17 7:13 pm, Sean Anderson wrote: >> It can be surprising to the user if DMA functions are only traced on >> success. On failure, it can be unclear what the source of the problem >> is. Fix this by tracing all functions even when they fail. Cases w

Re: [PATCH 3/3] dma-mapping: Trace more error paths

2024-10-21 Thread Robin Murphy
On 2024-10-17 7:13 pm, Sean Anderson wrote: It can be surprising to the user if DMA functions are only traced on success. On failure, it can be unclear what the source of the problem is. Fix this by tracing all functions even when they fail. Cases where we BUG/WARN are skipped, since those should

[PATCH 3/3] dma-mapping: Trace more error paths

2024-10-17 Thread Sean Anderson
It can be surprising to the user if DMA functions are only traced on success. On failure, it can be unclear what the source of the problem is. Fix this by tracing all functions even when they fail. Cases where we BUG/WARN are skipped, since those should be sufficiently noisy already. Signed-off-by