I believe the following cases should be put inside #if IS_ENABLED(CONFIG_DMA_ENGINE_RAID) https://github.com/torvalds/linux/blob/master/drivers/dma/dmaengine.c#L984-L989 Otherwise when CONFIG_DMA_ENGINE_RAID config is not enabled, unmap_pool will only have one element. Identified by Cppcheck $ cppcheck ./linux-3.13.6/drivers/dma/dmaengine.c -f Checking linux-3.13.6/drivers/dma/dmaengine.c... [linux-3.13.6/drivers/dma/dmaengine.c:932]: (error) Array 'unmap_pool[1]' accessed at index 2, which is out of bounds. [linux-3.13.6/drivers/dma/dmaengine.c:934]: (error) Array 'unmap_pool[1]' accessed at index 3, which is out of bounds.