From mboxrd@z Thu Jan 1 00:00:00 1970 From: Claude Code Review Bot To: dri-devel-reviews@example.com Subject: Claude review: mm: cma: Export dma_contiguous_default_area Date: Fri, 27 Feb 2026 13:12:03 +1000 Message-ID: In-Reply-To: <20260225-dma-buf-heaps-as-modules-v1-4-2109225a090d@kernel.org> References: <20260225-dma-buf-heaps-as-modules-v1-0-2109225a090d@kernel.org> <20260225-dma-buf-heaps-as-modules-v1-4-2109225a090d@kernel.org> X-Mailer: Claude Code Patch Reviewer Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: 7bit MIME-Version: 1.0 Patch Review ```c struct cma *dma_contiguous_default_area; +EXPORT_SYMBOL_GPL(dma_contiguous_default_area); ``` **No issues.** This is needed because `dev_get_cma_area()` is an inline in `dma-map-ops.h` that references this variable directly. Exporting the variable is the correct approach rather than converting the inline to an out-of-line function. --- Generated by Claude Code Patch Reviewer