diff options
author | Andrey Smirnov <andrew.smirnov@gmail.com> | 2016-09-28 18:22:33 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2016-09-28 19:19:01 -0400 |
commit | 2481366afd71a0c0b7cd725e6750c04cf589673b (patch) | |
tree | bddefbe87e77de1c6d7d5d6e77ea85155973b45e | |
parent | 5b398e416e880159fe55eefd93c6588fa072cd66 (diff) |
dma-mapping.h: preserve unmap info for CONFIG_DMA_API_DEBUG
When CONFIG_DMA_API_DEBUG is enabled we need to preserve unmapping address
even if "unmap" is a no-op for our architecutre because we need
debug_dma_unmap_page() to correctly cleanup all of the debug bookkeeping.
Failing to do so results in a false positive warnings about previously
mapped areas never being unmapped.
Link: http://lkml.kernel.org/r/1474387125-3713-1-git-send-email-andrew.smirnov@gmail.com
Signed-off-by: Andrey Smirnov <andrew.smirnov@gmail.com>
Reviewed-by: Robin Murphy <robin.murphy@arm.com>
Cc: Joerg Roedel <jroedel@suse.de>
Cc: Will Deacon <will.deacon@arm.com>
Cc: Zhen Lei <thunder.leizhen@huawei.com>
Cc: "Luis R. Rodriguez" <mcgrof@suse.com>
Cc: Christian Borntraeger <borntraeger@de.ibm.com>
Cc: Geliang Tang <geliangtang@163.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
-rw-r--r-- | include/linux/dma-mapping.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/linux/dma-mapping.h b/include/linux/dma-mapping.h index 66533e18276c..dc69df04abc1 100644 --- a/include/linux/dma-mapping.h +++ b/include/linux/dma-mapping.h | |||
@@ -718,7 +718,7 @@ static inline int dma_mmap_wc(struct device *dev, | |||
718 | #define dma_mmap_writecombine dma_mmap_wc | 718 | #define dma_mmap_writecombine dma_mmap_wc |
719 | #endif | 719 | #endif |
720 | 720 | ||
721 | #ifdef CONFIG_NEED_DMA_MAP_STATE | 721 | #if defined(CONFIG_NEED_DMA_MAP_STATE) || defined(CONFIG_DMA_API_DEBUG) |
722 | #define DEFINE_DMA_UNMAP_ADDR(ADDR_NAME) dma_addr_t ADDR_NAME | 722 | #define DEFINE_DMA_UNMAP_ADDR(ADDR_NAME) dma_addr_t ADDR_NAME |
723 | #define DEFINE_DMA_UNMAP_LEN(LEN_NAME) __u32 LEN_NAME | 723 | #define DEFINE_DMA_UNMAP_LEN(LEN_NAME) __u32 LEN_NAME |
724 | #define dma_unmap_addr(PTR, ADDR_NAME) ((PTR)->ADDR_NAME) | 724 | #define dma_unmap_addr(PTR, ADDR_NAME) ((PTR)->ADDR_NAME) |