Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Using GFP_DMA for DMA allocations in a kernel code that runs on a 32-bit system should not inherently cause an error just because of the flag's usage. The GFP_DMA flag is used to indicate that the allocated memory is DMA-able, and it's generally used for devices that require direct access to physical memory without going through the CPU's caching mechanisms. This flag is not specifically tied to 32-bit or 64-bit addressing; it's more about the requirements of the device and the DMA (Direct Memory Access) system.
- Loading branch information