dma-buf: heaps: system: Turn the heap into a module

The system heap can be easily turned into a module by adding the usual
MODULE_* macros, importing the proper namespaces and changing the
Kconfig symbol to a tristate.

This heap won't be able to unload though, since we're missing a lot of
infrastructure to make it safe.

Reviewed-by: T.J. Mercier <tjmercier@google.com>
Acked-by: Andrew Davis <afd@ti.com>
Signed-off-by: Maxime Ripard <mripard@kernel.org>
Signed-off-by: Sumit Semwal <sumit.semwal@linaro.org>
Link: https://patch.msgid.link/20260427-dma-buf-heaps-as-modules-v5-3-b6f5678feefc@kernel.org
This commit is contained in:
Maxime Ripard
2026-04-27 12:04:59 +02:00
committed by Sumit Semwal
parent 10bb37fc62
commit fd55edff8a
2 changed files with 6 additions and 1 deletions

View File

@@ -1,5 +1,5 @@
config DMABUF_HEAPS_SYSTEM
bool "DMA-BUF System Heap"
tristate "DMA-BUF System Heap"
depends on DMABUF_HEAPS
help
Choose this option to enable the system dmabuf heap. The system heap

View File

@@ -537,3 +537,8 @@ static int __init system_heap_create(void)
return 0;
}
module_init(system_heap_create);
MODULE_DESCRIPTION("DMA-BUF System Heap");
MODULE_LICENSE("GPL");
MODULE_IMPORT_NS("DMA_BUF");
MODULE_IMPORT_NS("DMA_BUF_HEAP");