lkl: pci: Fix freeing DMA allocation with CPU address#637
Merged
Conversation
lkl_dma_alloc() returns a kernel virtual address derived from the allocated page. The DMA ops free callback receives that same CPU address, but lkl_dma_free() passed it directly to __free_pages(), which expects a struct page pointer. Convert the CPU address with virt_to_page() before freeing it. Add an LKL PCI KUnit test that exercises dma_alloc_attrs() and dma_free_attrs() through stub PCI host ops, and wire it into the LKL test configuration via PCI_KUNIT. Signed-off-by: Cheng Lingfei <chenglingfei@foxmail.com>
We also enable kunit test in CI, and remove kunit.filter_glob= in CONFIG_BUILTIN_CMDLINE to avoid the kasan and pci test be filtered out. Signed-off-by: Cheng Lingfei <chenglingfei@foxmail.com>
Member
|
thanks @clingfei ! |
Author
Yes, I am using CONFIG_MMU=y. I wanted to see how LKL supports DMA. Then I realized that this might be a confusion between __free_pages and free_pages. |
thehajime
reviewed
May 26, 2026
As we have already removed the filter, the KASAN_CMD_LINE and other macros are always empty. Thus we remove them. Signed-off-by: Cheng Lingfei <chenglingfei@foxmail.com>
tavip
approved these changes
May 27, 2026
Member
|
thanks ! |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
lkl_dma_alloc() returns a kernel virtual address derived from the allocated page. The DMA ops free callback receives that same CPU address, but lkl_dma_free() passed it directly to __free_pages(), which expects a struct page pointer.
Convert the CPU address with virt_to_page() before freeing it.
Add an LKL PCI KUnit test that exercises dma_alloc_attrs() and dma_free_attrs() through stub PCI host ops, and wire it into the LKL test configuration via PCI_KUNIT.