]> git.ipfire.org Git - thirdparty/kernel/linux.git/commit
dma-buf: heaps: Clear CMA pages with clear_page()
authorLinus Walleij <linus.walleij@linaro.org>
Sun, 30 Nov 2025 10:54:48 +0000 (11:54 +0100)
committerLinus Walleij <linusw@kernel.org>
Thu, 8 Jan 2026 07:52:29 +0000 (08:52 +0100)
commitd42d701e132905d69be3a7808f2ec86bdb4c48d8
treeb33d3fa27701d5b9450893ad12fa9b5f82c30703
parent6a0b99e9fb45f403c3097a9047963d2dd5b0fab2
dma-buf: heaps: Clear CMA pages with clear_page()

clear_page() translates into memset(*p, 0, PAGE_SIZE) on some
architectures, but on the major architectures it will call
an optimized assembly snippet so use this instead of open
coding a memset().

Signed-off-by: Linus Walleij <linus.walleij@linaro.org>
Reviewed-by: Nirmoy Das <nirmoyd@nvidia.com>
Reviewed-by: T.J. Mercier <tjmercier@google.com>
Signed-off-by: Linus Walleij <linusw@kernel.org>
Link: https://patch.msgid.link/20251130-dma-buf-heap-clear-page-v1-1-a8dcea2a88ee@linaro.org
drivers/dma-buf/heaps/cma_heap.c