All of lore.kernel.org
 help / color / mirror / Atom feed
From: Chris Lalancette <clalance@redhat.com>
To: Keir Fraser <keir.fraser@eu.citrix.com>
Cc: "xen-devel@lists.xensource.com" <xen-devel@lists.xensource.com>
Subject: Re: [PATCH]: Better checking in range_straddles_page_boundary
Date: Wed, 22 Oct 2008 12:57:37 +0200	[thread overview]
Message-ID: <48FF0721.9090207@redhat.com> (raw)
In-Reply-To: <C524C337.2850B%keir.fraser@eu.citrix.com>

Keir Fraser wrote:
> On 22/10/08 10:05, "Chris Lalancette" <clalance@redhat.com> wrote:
> 
>>     Attached is a simple patch to slightly rework the logic in
>> range_straddles_page_boundary().  The reason for this is to avoid a crash we
>> are
>> seeing on 32-bit dom0.  Basically, the contiguous_bitmap is allocated based on
>> max_low_pfn.  However, the swiotlb code can be passed a request (in
>> swiotlb_map_sg) that is > 1 page (I've seen 2 pages), and is also a page
>> (sg->page) > max_low_pfn.  If this combination happens, then you get a fatal
>> page fault when doing the test_bit(pfn, contiguous_bitmap).  For that reason,
>> rework the logic in range_straddles_page_boundary so that if it gets a request
>> 1 page, and it's above max_low_pfn, then we force the splitting of the
>> request.
>>  In our testing, this seems to fix the issue.
> 
> How about we just get rid of the contiguous_bitmap? We might as well if you
> are going to push that check after calling
> check_pages_physically_contiguous(), since no extent which is acceptable to
> contiguous_bitmap should fail on check_pages_physically_contiguous(). I
> think I kept contiguous_bitmap only as a fast check before calling that
> slower function.

Oh, hm, good point.  If we think that the fast check is still good to have, the
other option is to leave range_straddles_page_boundary as-is, and just allocate
contiguous_bitmap with max_pfn (or end_pfn; I can never remember which is which
i386 vs. x86_64).

Either way works for me, though; I don't think the
check_pages_physically_contiguous is a huge performance bottleneck, especially
since *most* requests are for 1 page; it's just the odd request that comes in
with 2 pages (or more, but I've never seen more than 2 pages).

-- 
Chris Lalancette

      reply	other threads:[~2008-10-22 10:57 UTC|newest]

Thread overview: 3+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2008-10-22  9:05 [PATCH]: Better checking in range_straddles_page_boundary Chris Lalancette
2008-10-22 10:47 ` Keir Fraser
2008-10-22 10:57   ` Chris Lalancette [this message]

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=48FF0721.9090207@redhat.com \
    --to=clalance@redhat.com \
    --cc=keir.fraser@eu.citrix.com \
    --cc=xen-devel@lists.xensource.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 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.