On Thu, Oct 10, 2013 at 07:05:58PM +0100, Kirill A. Shutemov wrote:
> Signed-off-by: Kirill A. Shutemov <[email protected]>
> Cc: Will Deacon <[email protected]>
> Cc: Grant Likely <[email protected]>
> Cc: Rob Herring <[email protected]>
> ---
>  drivers/iommu/arm-smmu.c | 5 ++++-
>  1 file changed, 4 insertions(+), 1 deletion(-)
> 
> diff --git a/drivers/iommu/arm-smmu.c b/drivers/iommu/arm-smmu.c
> index f417e89e1e..2b256a5075 100644
> --- a/drivers/iommu/arm-smmu.c
> +++ b/drivers/iommu/arm-smmu.c
> @@ -1211,7 +1211,10 @@ static int arm_smmu_alloc_init_pte(struct 
> arm_smmu_device *smmu, pmd_t *pmd,
>  
>               arm_smmu_flush_pgtable(smmu, page_address(table),
>                                      ARM_SMMU_PTE_HWTABLE_SIZE);
> -             pgtable_page_ctor(table);
> +             if (!pgtable_page_ctor(table)) {
> +                     __free_page(table);
> +                     return -ENOMEM;
> +             }
>               pmd_populate(NULL, pmd, table);
>               arm_smmu_flush_pgtable(smmu, pmd, sizeof(*pmd));
>       }

  Acked-by: Will Deacon <[email protected]>

I have quite a few changes queued for this driver, but it doesn't look like
you'll get a conflict with the iommu tree.

Will
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to [email protected]
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/

Reply via email to