diff options
| author | Linus Torvalds <torvalds@linux-foundation.org> | 2025-10-07 12:48:06 -0700 |
|---|---|---|
| committer | Linus Torvalds <torvalds@linux-foundation.org> | 2025-10-07 12:48:06 -0700 |
| commit | 16d1ba7c9675ee16e0f7fb22d51cd2898aab625d (patch) | |
| tree | 09ee398a3c8cb065e8310074085314ff5b40cc6c /include/trace | |
| parent | Merge tag 'char-misc-6.18-rc1-2' of git://git.kernel.org/pub/scm/linux/kernel... (diff) | |
| parent | dma-mapping: fix direction in dma_alloc direction traces (diff) | |
| download | linux-16d1ba7c9675ee16e0f7fb22d51cd2898aab625d.tar.gz linux-16d1ba7c9675ee16e0f7fb22d51cd2898aab625d.zip | |
Merge tag 'dma-mapping-6.18-2025-10-07' of git://git.kernel.org/pub/scm/linux/kernel/git/mszyprowski/linux
Pull dma-mapping fixes from Marek Szyprowski:
"Two small fixes for the recently performed code refactoring (Shigeru
Yoshida) and missing handling of direction parameter in DMA debug code
(Petr Tesarik)"
* tag 'dma-mapping-6.18-2025-10-07' of git://git.kernel.org/pub/scm/linux/kernel/git/mszyprowski/linux:
dma-mapping: fix direction in dma_alloc direction traces
kmsan: fix kmsan_handle_dma() to avoid false positives
Diffstat (limited to 'include/trace')
| -rw-r--r-- | include/trace/events/dma.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/include/trace/events/dma.h b/include/trace/events/dma.h index 5da59fd8121d..b3fef140ae15 100644 --- a/include/trace/events/dma.h +++ b/include/trace/events/dma.h @@ -133,6 +133,7 @@ DECLARE_EVENT_CLASS(dma_alloc_class, __entry->dma_addr = dma_addr; __entry->size = size; __entry->flags = flags; + __entry->dir = dir; __entry->attrs = attrs; ), |
