From: Christoph Hellwig <hch@lst.de>
To: Tushar Dave <tushar.n.dave@oracle.com>
Cc: davem@davemloft.net, chris.hyser@oracle.com,
sowmini.varadhan@oracle.com, egtvedt@samfundet.no,
dan.carpenter@oracle.com, krzk@kernel.org,
bart.vanassche@sandisk.com, sparclinux@vger.kernel.org,
linux-kernel@vger.kernel.org, hch@lst.de, mroos@linux.ee
Subject: Re: [sparc-next] SPARC64: Fix sun4v DMA panic
Date: Wed, 12 Jul 2017 09:21:18 +0200 [thread overview]
Message-ID: <20170712072118.GB5739@lst.de> (raw)
In-Reply-To: <1499808887-31483-1-git-send-email-tushar.n.dave@oracle.com>
On Tue, Jul 11, 2017 at 02:34:47PM -0700, Tushar Dave wrote:
> 64bit DMA only supported on sun4v equipped with ATU IOMMU HW.
> 'Commit b02c2b0bfd7ae ("sparc: remove arch specific dma_supported
> implementations")' introduced a code that incorrectly allow
> dma_supported() to succeed for 64bit dma mask even if system doesn't
> have ATU IOMMU. This results into panic.
>
> Fix it.
>
> Reported-by: Meelis Roos <mroos@linux.ee>
> Signed-off-by: Tushar Dave <tushar.n.dave@oracle.com>
> ---
> arch/sparc/kernel/pci_sun4v.c | 12 +++++++-----
> 1 file changed, 7 insertions(+), 5 deletions(-)
>
> diff --git a/arch/sparc/kernel/pci_sun4v.c b/arch/sparc/kernel/pci_sun4v.c
> index 24f21c7..f10e2f7 100644
> --- a/arch/sparc/kernel/pci_sun4v.c
> +++ b/arch/sparc/kernel/pci_sun4v.c
> @@ -673,12 +673,14 @@ static void dma_4v_unmap_sg(struct device *dev, struct scatterlist *sglist,
> static int dma_4v_supported(struct device *dev, u64 device_mask)
> {
> struct iommu *iommu = dev->archdata.iommu;
> - u64 dma_addr_mask;
> + u64 dma_addr_mask = iommu->dma_addr_mask;
>
> - if (device_mask > DMA_BIT_MASK(32) && iommu->atu)
> - dma_addr_mask = iommu->atu->dma_addr_mask;
> - else
> - dma_addr_mask = iommu->dma_addr_mask;
> + if (device_mask > DMA_BIT_MASK(32)) {
> + if (iommu->atu)
> + dma_addr_mask = iommu->atu->dma_addr_mask;
> + else
> + return 0;
> + }
This would be more readable as:
if (device_mask > DMA_BIT_MASK(32)) {
if (!iommu->atu)
return 0;
dma_addr_mask = iommu->atu->dma_addr_mask;
}
But except for that it looks fine to me:
Reviewed-by: Christoph Hellwig <hch@lst.de>
next prev parent reply other threads:[~2017-07-12 7:21 UTC|newest]
Thread overview: 3+ messages / expand[flat|nested] mbox.gz Atom feed top
2017-07-11 21:34 Tushar Dave
2017-07-12 7:21 ` Christoph Hellwig [this message]
2017-07-12 15:13 ` David Miller
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20170712072118.GB5739@lst.de \
--to=hch@lst.de \
--cc=bart.vanassche@sandisk.com \
--cc=chris.hyser@oracle.com \
--cc=dan.carpenter@oracle.com \
--cc=davem@davemloft.net \
--cc=egtvedt@samfundet.no \
--cc=krzk@kernel.org \
--cc=linux-kernel@vger.kernel.org \
--cc=mroos@linux.ee \
--cc=sowmini.varadhan@oracle.com \
--cc=sparclinux@vger.kernel.org \
--cc=tushar.n.dave@oracle.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox
all inboxes | Powered by JetHome®