diff options
author | T.J. Mercier <tjmercier@google.com> | 2025-05-22 23:04:25 +0000 |
---|---|---|
committer | Alexei Starovoitov <ast@kernel.org> | 2025-05-27 09:51:25 -0700 |
commit | 89f9dba365e1b85caef556d28654c6d336629eef (patch) | |
tree | 4a868ecae6c5a2e51c425f2c8719b468a7842f71 /include/linux/dma-buf.h | |
parent | 079e5c56a5c41d285068939ff7b0041ab10386fa (diff) |
dma-buf: Rename debugfs symbols
Rename the debugfs list and mutex so it's clear they are now usable
without the need for CONFIG_DEBUG_FS. The list will always be populated
to support the creation of a BPF iterator for dmabufs.
Signed-off-by: T.J. Mercier <tjmercier@google.com>
Reviewed-by: Christian König <christian.koenig@amd.com>
Acked-by: Song Liu <song@kernel.org>
Link: https://lore.kernel.org/r/20250522230429.941193-2-tjmercier@google.com
Signed-off-by: Alexei Starovoitov <ast@kernel.org>
Diffstat (limited to 'include/linux/dma-buf.h')
-rw-r--r-- | include/linux/dma-buf.h | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/include/linux/dma-buf.h b/include/linux/dma-buf.h index 36216d28d8bd..8ff4add71f88 100644 --- a/include/linux/dma-buf.h +++ b/include/linux/dma-buf.h @@ -370,10 +370,8 @@ struct dma_buf { */ struct module *owner; -#if IS_ENABLED(CONFIG_DEBUG_FS) /** @list_node: node for dma_buf accounting and debugging. */ struct list_head list_node; -#endif /** @priv: exporter specific private data for this buffer object. */ void *priv; |