From: Daniel De Graaf <dgdegra@tycho.nsa.gov>
To: Marek Marczykowski <marmarek@invisiblethingslab.com>,
George Dunlap <george.dunlap@eu.citrix.com>
Cc: Ian Campbell <ian.campbell@citrix.com>, xen-devel@lists.xen.org
Subject: Re: [PATCH v2 2/2] libvchan: replace munmap with correct xc_gntshr_munmap
Date: Wed, 08 May 2013 09:49:33 -0400 [thread overview]
Message-ID: <518A57ED.5030708@tycho.nsa.gov> (raw)
In-Reply-To: <20130508040327.951AD329@duch.mimuw.edu.pl>
On 05/04/2013 06:10 PM, Marek Marczykowski wrote:
> On linux it will end up in munmap anyway, but do not assume any
> particular xc_gntshr_munmap implementation details.
>
> Signed-off-by: Marek Marczykowski <marmarek@invisiblethingslab.com>
On a client, this ends up using xc_gntshr_munmap to unmap pages that
were mapped with xc_gnttab_map_* instead of using xc_gnttab_unmam
George: unless there is another OS besides Linux that implements the
xc_gntshr_* interfaces (I found none from a grep of the source), this
is just code clean-up and so could be postponed to 4.4.
> ---
> tools/libvchan/io.c | 6 ++++--
> 1 file changed, 4 insertions(+), 2 deletions(-)
>
> diff --git a/tools/libvchan/io.c b/tools/libvchan/io.c
> index 5ec5fb9..3040099 100644
> --- a/tools/libvchan/io.c
> +++ b/tools/libvchan/io.c
> @@ -324,9 +324,11 @@ void libxenvchan_close(struct libxenvchan *ctrl)
> if (!ctrl)
> return;
> if (ctrl->read.order >= PAGE_SHIFT)
> - munmap(ctrl->read.buffer, 1 << ctrl->read.order);
> + xc_gntshr_munmap(ctrl->gntshr, ctrl->read.buffer,
> + 1 << (ctrl->read.order - PAGE_SHIFT));
> if (ctrl->write.order >= PAGE_SHIFT)
> - munmap(ctrl->write.buffer, 1 << ctrl->write.order);
> + xc_gntshr_munmap(ctrl->gntshr, ctrl->write.buffer,
> + 1 << (ctrl->write.order - PAGE_SHIFT));
> if (ctrl->ring) {
> if (ctrl->is_server) {
> ctrl->ring->srv_live = 0;
>
--
Daniel De Graaf
National Security Agency
next prev parent reply other threads:[~2013-05-08 13:49 UTC|newest]
Thread overview: 15+ messages / expand[flat|nested] mbox.gz Atom feed top
2013-05-04 22:10 [PATCH v2 2/2] libvchan: replace munmap with correct xc_gntshr_munmap Marek Marczykowski
2013-05-08 10:48 ` George Dunlap
2013-05-08 10:55 ` Ian Campbell
2013-05-08 10:57 ` Ian Campbell
2013-05-08 11:42 ` Ian Campbell
2013-05-08 14:06 ` Marek Marczykowski
2013-05-08 13:49 ` Daniel De Graaf [this message]
2013-05-08 14:08 ` Marek Marczykowski
2013-05-10 13:46 ` Ian Campbell
2013-05-10 13:55 ` Marek Marczykowski
2013-05-10 13:57 ` George Dunlap
2013-05-10 14:08 ` Ian Campbell
2013-05-10 14:15 ` George Dunlap
2013-05-10 14:18 ` Ian Campbell
2013-07-04 9:43 ` Ian Campbell
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=518A57ED.5030708@tycho.nsa.gov \
--to=dgdegra@tycho.nsa.gov \
--cc=george.dunlap@eu.citrix.com \
--cc=ian.campbell@citrix.com \
--cc=marmarek@invisiblethingslab.com \
--cc=xen-devel@lists.xen.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.