[PATCH] iommu/arm-smmu: fix panic in arm_smmu_alloc_init_pte
Marc Zyngier
marc.zyngier at arm.com
Fri Mar 21 06:57:08 EDT 2014
Hi Bin,
On 21/03/14 10:06, Bin Wang wrote:
> kernel panic happened when iommu_unmap a buffer larger than 2MB,
> more than expected pmd entries got “invalidated”, due to a wrong range
> passed to arm_smmu_alloc_init_pte. it was likely a typo, now we fix
> it, passing the correct "end" address to arm_smmu_alloc_init_pte.
>
> Signed-off-by: Bin Wang <binw at marvell.com>
> ---
> drivers/iommu/arm-smmu.c | 2 +-
> 1 files changed, 1 insertions(+), 1 deletions(-)
>
> diff --git a/drivers/iommu/arm-smmu.c b/drivers/iommu/arm-smmu.c
> index 1d9ab39..52d0c34 100644
> --- a/drivers/iommu/arm-smmu.c
> +++ b/drivers/iommu/arm-smmu.c
> @@ -1346,7 +1346,7 @@ static int arm_smmu_alloc_init_pmd(struct arm_smmu_device *smmu, pud_t *pud,
>
> do {
> next = pmd_addr_end(addr, end);
> - ret = arm_smmu_alloc_init_pte(smmu, pmd, addr, end, pfn,
> + ret = arm_smmu_alloc_init_pte(smmu, pmd, addr, next, pfn,
> flags, stage);
> phys += next - addr;
> } while (pmd++, addr = next, addr < end);
>
Looks like a valid fix. In Will's absence ([1]), I'll queue it for 3.15,
and CC stable.
Joerg: are you still taking pull requests for 3.15, or shall I wait
until rc1?
Thanks,
M.
[1]: http://www.spinics.net/lists/arm-kernel/msg315615.html
--
Jazz is not dead. It just smells funny...
More information about the linux-arm-kernel
mailing list