From: David Vrabel <david.vrabel@citrix.com>
To: "Roger Pau Monné" <roger.pau@citrix.com>,
"David Vrabel" <david.vrabel@citrix.com>,
xen-devel@lists.xenproject.org
Cc: Boris Ostrovsky <boris.ostrovsky@oracle.com>,
Jenny Herbert <jennifer.herbert@citrix.com>
Subject: Re: [PATCH 12/14] xen-blkback: safely unmap grants in case they are still in use
Date: Fri, 23 Jan 2015 16:00:43 +0000 [thread overview]
Message-ID: <54C2702B.4050508@citrix.com> (raw)
In-Reply-To: <54C26D00.8000306@citrix.com>
On 23/01/15 15:47, Roger Pau Monné wrote:
> El 23/01/15 a les 15.54, David Vrabel ha escrit:
>> On 23/01/15 14:31, Roger Pau Monné wrote:
>>> El 19/01/15 a les 16.51, David Vrabel ha escrit:
>>>> + if (invcount) {
>>>> + ret = gnttab_unmap_refs(unmap, NULL, unmap_pages, invcount);
>>>> BUG_ON(ret);
>>>> - put_free_pages(blkif, unmap_pages, invcount);
>>>> - invcount = 0;
>>>> + xen_blkbk_unmap_done(blkif, unmap_pages, invcount);
>>>> }
>>>> - }
>>>> - if (invcount) {
>>>> - ret = gnttab_unmap_refs(unmap, NULL, unmap_pages, invcount);
>>>> - BUG_ON(ret);
>>>> - put_free_pages(blkif, unmap_pages, invcount);
>>>> + pages += batch;
>>>> + num -= batch;
>
> This should be fixed to at least be (which is still not fully correct,
> but it's better):
>
> pages += invcount;
> num -= invcount;
>
> I hope an example will clarify this, suppose we have the following pages
> array:
>
> pages[0] = persistent grant
> pages[1] = persistent grant
> pages[2] = regular grant
> pages[3] = persistent grant
> pages[4] = regular grant
>
> And batch is 1. In this case, the unmapped grant will be pages[2], but
> then due to the code below pages will be updated to point to &pages[1],
> which has already been scanned. If this was done correctly pages should
> point to &pages[3]. As said, it's not really a bug, but the loop is
> sub-optimal.
Ah ha. Thanks for the clear explanation.
gnttab_blkback_unmap_prepare() stops once its been through the whole
batch regardless of whether it filled the array with ops so we don't
check a page twice but this does mean we have a sub-optimal number of ops.
David
next prev parent reply other threads:[~2015-01-23 16:00 UTC|newest]
Thread overview: 35+ messages / expand[flat|nested] mbox.gz Atom feed top
2015-01-19 15:51 [PATCHv3 00/14] xen: fix many long-standing grant mapping bugs David Vrabel
2015-01-19 15:51 ` [PATCH 01/14] mm: provide a find_special_page vma operation David Vrabel
2015-01-19 15:51 ` [PATCH 02/14] mm: add 'foreign' alias for the 'pinned' page flag David Vrabel
2015-01-19 15:51 ` [PATCH 03/14] xen/grant-table: pre-populate kernel unmap ops for xen_gnttab_unmap_refs() David Vrabel
2015-01-19 15:51 ` [PATCH 04/14] xen: remove scratch frames for ballooned pages and m2p override David Vrabel
2015-01-19 15:51 ` [PATCH 05/14] x86/xen: require ballooned pages for grant maps David Vrabel
2015-01-19 15:51 ` [PATCH 06/14] xen/grant-table: add helpers for allocating pages David Vrabel
2015-01-19 15:51 ` [PATCH 07/14] xen: mark grant mapped pages as foreign David Vrabel
2015-01-19 15:51 ` [PATCH 08/14] xen-netback: use foreign page information from the pages themselves David Vrabel
2015-01-19 15:51 ` [PATCH 09/14] xen/grant-table: add a mechanism to safely unmap pages that are in use David Vrabel
2015-01-19 15:51 ` [PATCH 10/14] xen/gntdev: convert priv->lock to a mutex David Vrabel
2015-01-19 17:49 ` Stefano Stabellini
2015-01-19 17:53 ` David Vrabel
2015-01-19 18:38 ` Stefano Stabellini
2015-01-19 18:43 ` David Vrabel
2015-01-19 15:51 ` [PATCH 11/14] xen/gntdev: safely unmap grants in case they are still in use David Vrabel
2015-01-19 15:51 ` [PATCH 12/14] xen-blkback: " David Vrabel
2015-01-23 12:02 ` David Vrabel
2015-01-23 14:41 ` Roger Pau Monné
2015-01-23 14:31 ` Roger Pau Monné
2015-01-23 14:54 ` David Vrabel
2015-01-23 15:47 ` Roger Pau Monné
2015-01-23 16:00 ` David Vrabel [this message]
2015-01-26 15:00 ` David Vrabel
2015-01-24 8:57 ` Roger Pau Monné
2015-01-26 15:02 ` David Vrabel
2015-01-26 17:34 ` Jens Axboe
2015-01-19 15:51 ` [PATCH 13/14] xen/gntdev: mark userspace PTEs as special on x86 PV guests David Vrabel
2015-01-19 15:51 ` [PATCH 14/14] xen/gntdev: provide find_special_page VMA operation David Vrabel
-- strict thread matches above, loose matches on Subject: below --
2015-01-12 15:43 [PATCHv2 00/14] xen: fix many long-standing grant mapping bugs David Vrabel
2015-01-12 15:43 ` [PATCH 12/14] xen-blkback: safely unmap grants in case they are still in use David Vrabel
2015-01-14 15:17 ` Boris Ostrovsky
2015-01-14 15:47 ` Boris Ostrovsky
2015-01-14 16:00 ` David Vrabel
2015-01-14 16:22 ` Boris Ostrovsky
2015-01-14 16:33 ` David Vrabel
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=54C2702B.4050508@citrix.com \
--to=david.vrabel@citrix.com \
--cc=boris.ostrovsky@oracle.com \
--cc=jennifer.herbert@citrix.com \
--cc=roger.pau@citrix.com \
--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.