From: Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
To: Joe Jin <joe.jin@oracle.com>
Cc: "DONGLI.ZHANG" <dongli.zhang@oracle.com>,
konrad@kernel.org, Christoph Helwig <hch@lst.de>,
John Sobecki <john.sobecki@oracle.com>,
Boris Ostrovsky <boris.ostrovsky@oracle.com>,
"xen-devel@lists.xenproject.org" <xen-devel@lists.xenproject.org>,
"linux-kernel@vger.kernel.org\"" <linux-kernel@vger.kernel.org>
Subject: Re: [PATCH] xen-swiotlb: exchange memory with Xen only when pages are contiguous
Date: Wed, 24 Oct 2018 09:02:46 -0400 [thread overview]
Message-ID: <20181024130246.GA22616@localhost.localdomain> (raw)
In-Reply-To: <bb6d87b4-c371-c6c0-8c48-bc95df018ad1@oracle.com>
On Tue, Oct 23, 2018 at 08:09:04PM -0700, Joe Jin wrote:
> Commit 4855c92dbb7 "xen-swiotlb: fix the check condition for
> xen_swiotlb_free_coherent" only fixed memory address check condition
> on xen_swiotlb_free_coherent(), when memory was not physically
> contiguous and tried to exchanged with Xen via
> xen_destroy_contiguous_region it will lead kernel panic.
s/it will lead/which lead to/?
>
> The correct check condition should be memory is in DMA area and
> physically contiguous.
"The correct check condition to make Xen hypercall to revert the
memory back from its 32-bit pool is if it is:
1) Above its DMA bit mask (for example 32-bit devices can only address
up to 4GB, and we may want 4GB+2K), and
2) If it not physically contingous
N.B. The logic in the code is inverted, which leads to all sorts of
confusions."
Does that sound correct?
>
> Thank you Boris for pointing it out.
>
Fixes: 4855c92dbb7 ("xen-sw..") ?
> Signed-off-by: Joe Jin <joe.jin@oracle.com>
> Cc: Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
> Cc: Boris Ostrovsky <boris.ostrovsky@oracle.com>
Reported-by: Boris Ostrovs... ?
> Cc: Christoph Helwig <hch@lst.de>
> Cc: Dongli Zhang <dongli.zhang@oracle.com>
> Cc: John Sobecki <john.sobecki@oracle.com>
> ---
> drivers/xen/swiotlb-xen.c | 4 ++--
> 1 file changed, 2 insertions(+), 2 deletions(-)
>
> diff --git a/drivers/xen/swiotlb-xen.c b/drivers/xen/swiotlb-xen.c
> index f5c1af4ce9ab..aed92fa019f9 100644
> --- a/drivers/xen/swiotlb-xen.c
> +++ b/drivers/xen/swiotlb-xen.c
> @@ -357,8 +357,8 @@ xen_swiotlb_free_coherent(struct device *hwdev, size_t size, void *vaddr,
> /* Convert the size to actually allocated. */
> size = 1UL << (order + XEN_PAGE_SHIFT);
>
> - if (((dev_addr + size - 1 <= dma_mask)) ||
> - range_straddles_page_boundary(phys, size))
> + if ((dev_addr + size - 1 <= dma_mask) &&
> + !range_straddles_page_boundary(phys, size))
> xen_destroy_contiguous_region(phys, order);
>
> xen_free_coherent_pages(hwdev, size, vaddr, (dma_addr_t)phys, attrs);
> --
> 2.17.1 (Apple Git-112)
>
next prev parent reply other threads:[~2018-10-24 13:03 UTC|newest]
Thread overview: 37+ messages / expand[flat|nested] mbox.gz Atom feed top
2018-10-24 3:09 [PATCH] xen-swiotlb: exchange memory with Xen only when pages are contiguous Joe Jin
2018-10-24 13:02 ` Konrad Rzeszutek Wilk
2018-10-24 13:02 ` Konrad Rzeszutek Wilk [this message]
2018-10-24 13:57 ` Boris Ostrovsky
2018-10-24 13:57 ` Boris Ostrovsky
2018-10-24 14:43 ` Joe Jin
2018-10-24 14:43 ` Joe Jin
2018-10-25 11:45 ` Boris Ostrovsky
2018-10-25 14:23 ` Joe Jin
2018-10-25 14:23 ` Joe Jin
2018-10-25 16:10 ` Boris Ostrovsky
2018-10-25 16:10 ` Boris Ostrovsky
2018-10-25 16:28 ` Joe Jin
2018-10-25 18:56 ` Joe Jin
2018-10-26 7:48 ` Christoph Helwig
2018-10-26 7:48 ` Christoph Helwig
2018-10-26 8:54 ` Dongli Zhang
2018-10-26 14:48 ` Joe Jin
2018-10-26 14:48 ` Joe Jin
2018-10-26 8:54 ` Dongli Zhang
2018-10-26 14:40 ` Joe Jin
2018-10-26 14:40 ` Joe Jin
2018-10-30 2:51 ` Joe Jin
2018-10-30 8:59 ` Paul Durrant
2018-10-30 14:12 ` Joe Jin
2018-10-30 14:12 ` [Xen-devel] " Joe Jin
2018-10-30 14:21 ` Paul Durrant
2018-10-30 14:48 ` Joe Jin
2018-10-30 14:48 ` [Xen-devel] " Joe Jin
2018-10-30 14:51 ` Paul Durrant
2018-10-30 2:51 ` Joe Jin
2018-10-25 18:56 ` Joe Jin
2018-10-25 16:28 ` Joe Jin
2018-10-25 11:45 ` Boris Ostrovsky
2018-10-24 16:05 ` Joe Jin
2018-10-24 16:05 ` Joe Jin
-- strict thread matches above, loose matches on Subject: below --
2018-10-24 3:09 Joe Jin
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=20181024130246.GA22616@localhost.localdomain \
--to=konrad.wilk@oracle.com \
--cc=boris.ostrovsky@oracle.com \
--cc=dongli.zhang@oracle.com \
--cc=hch@lst.de \
--cc=joe.jin@oracle.com \
--cc=john.sobecki@oracle.com \
--cc=konrad@kernel.org \
--cc=linux-kernel@vger.kernel.org \
--cc=xen-devel@lists.xenproject.org \
/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 an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.