Commit d7cd8fc5 authored by Joerg Roedel's avatar Joerg Roedel Committed by Greg Kroah-Hartman

iommu/msm: Fix error handling in msm_iommu_unmap()

commit 05df1f3c upstream.

Error handling in msm_iommu_unmap() is broken. On some error
conditions retval is set to a non-zero value which causes
the function to return 'len' at the end. This hides the
error from the user. Zero should be returned in those error
cases.

Cc: David Brown <davidb@codeaurora.org>
Cc: Stepan Moskovchenko <stepanm@codeaurora.org>
Signed-off-by: default avatarJoerg Roedel <joerg.roedel@amd.com>
Acked-by: default avatarDavid Brown <davidb@codeaurora.org>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 61c39c6d
...@@ -481,23 +481,19 @@ static int msm_iommu_unmap(struct iommu_domain *domain, unsigned long va, ...@@ -481,23 +481,19 @@ static int msm_iommu_unmap(struct iommu_domain *domain, unsigned long va,
priv = domain->priv; priv = domain->priv;
if (!priv) { if (!priv)
ret = -ENODEV;
goto fail; goto fail;
}
fl_table = priv->pgtable; fl_table = priv->pgtable;
if (len != SZ_16M && len != SZ_1M && if (len != SZ_16M && len != SZ_1M &&
len != SZ_64K && len != SZ_4K) { len != SZ_64K && len != SZ_4K) {
pr_debug("Bad length: %d\n", len); pr_debug("Bad length: %d\n", len);
ret = -EINVAL;
goto fail; goto fail;
} }
if (!fl_table) { if (!fl_table) {
pr_debug("Null page table\n"); pr_debug("Null page table\n");
ret = -EINVAL;
goto fail; goto fail;
} }
...@@ -506,7 +502,6 @@ static int msm_iommu_unmap(struct iommu_domain *domain, unsigned long va, ...@@ -506,7 +502,6 @@ static int msm_iommu_unmap(struct iommu_domain *domain, unsigned long va,
if (*fl_pte == 0) { if (*fl_pte == 0) {
pr_debug("First level PTE is 0\n"); pr_debug("First level PTE is 0\n");
ret = -ENODEV;
goto fail; goto fail;
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment