Re: [PATCH 4/4] ARM: dma-mapping: Skip cache maint for invalid page

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

 



Hello,

On 8/28/2012 1:43 PM, Hiroshi Doyu wrote:

Skip cache maint for invalid page but warn it.

Signed-off-by: Hiroshi Doyu <hdoyu@xxxxxxxxxx>
---
  arch/arm/mm/dma-mapping.c |    9 +++++++++
  1 files changed, 9 insertions(+), 0 deletions(-)

diff --git a/arch/arm/mm/dma-mapping.c b/arch/arm/mm/dma-mapping.c
index 2621282..0368702 100644
--- a/arch/arm/mm/dma-mapping.c
+++ b/arch/arm/mm/dma-mapping.c
@@ -1589,6 +1589,9 @@ static void arm_iommu_unmap_page(struct device *dev, dma_addr_t handle,
  	if (!iova)
  		return;

+	if (WARN_ON(!pfn_valid(page_to_pfn(page))))
+		return;
+
  	if (!dma_get_attr(DMA_ATTR_SKIP_CPU_SYNC, attrs))
  		__dma_page_dev_to_cpu(page, offset, size, dir);

@@ -1607,6 +1610,9 @@ static void arm_iommu_sync_single_for_cpu(struct device *dev,
  	if (!iova)
  		return;

+	if (WARN_ON(!pfn_valid(page_to_pfn(page))))
+		return;
+
  	__dma_page_dev_to_cpu(page, offset, size, dir);
  }

@@ -1621,6 +1627,9 @@ static void arm_iommu_sync_single_for_device(struct device *dev,
  	if (!iova)
  		return;

+	if (WARN_ON(!pfn_valid(page_to_pfn(page))))
+		return;
+
  	__dma_page_cpu_to_dev(page, offset, size, dir);
  }

I really wonder what has happened in your system that you require
such paranoid checks. All of the above functions are called on the
scatter-list which has been first passed to dma_map_sg(). IMHO it
makes much more sense to add a pfn_valid() check in dma_map_sg()
and return error if the provided scatter list is not valid instead
of these WARN_ONs.

Best regards
--
Marek Szyprowski
Samsung Poland R&D Center
--
To unsubscribe from this list: send the line "unsubscribe linux-tegra" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at  http://vger.kernel.org/majordomo-info.html


[Index of Archives]     [ARM Kernel]     [Linux ARM]     [Linux ARM MSM]     [Linux USB Devel]     [Video for Linux]     [Linux Audio Users]     [Yosemite News]     [Linux Kernel]     [Linux SCSI]

  Powered by Linux