mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2026-07-24 19:43:22 -04:00
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:
committed by
Sumit Semwal
parent
10bb37fc62
commit
fd55edff8a
@@ -1,5 +1,5 @@
|
|||||||
config DMABUF_HEAPS_SYSTEM
|
config DMABUF_HEAPS_SYSTEM
|
||||||
bool "DMA-BUF System Heap"
|
tristate "DMA-BUF System Heap"
|
||||||
depends on DMABUF_HEAPS
|
depends on DMABUF_HEAPS
|
||||||
help
|
help
|
||||||
Choose this option to enable the system dmabuf heap. The system heap
|
Choose this option to enable the system dmabuf heap. The system heap
|
||||||
|
|||||||
@@ -537,3 +537,8 @@ static int __init system_heap_create(void)
|
|||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
module_init(system_heap_create);
|
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");
|
||||||
|
|||||||
Reference in New Issue
Block a user