All of lore.kernel.org
 help / color / mirror / Atom feed
From: Julien Grall <julien.grall@arm.com>
To: xen-devel@lists.xen.org
Cc: sstabellini@kernel.org, Wei Liu <wei.liu2@citrix.com>,
	George Dunlap <george.dunlap@eu.citrix.com>,
	Andrew Cooper <andrew.cooper3@citrix.com>,
	Ian Jackson <ian.jackson@eu.citrix.com>, Tim Deegan <tim@xen.org>,
	Jan Beulich <jbeulich@suse.com>
Subject: Re: [PATCH v2 6/8] xen: Use the typesafe mfn and gfn in map_mmio_regions...
Date: Mon, 20 Jun 2016 15:37:48 +0100	[thread overview]
Message-ID: <5767FFBC.30504@arm.com> (raw)
In-Reply-To: <1466429845-28240-7-git-send-email-julien.grall@arm.com>



On 20/06/16 14:37, Julien Grall wrote:
> diff --git a/xen/arch/x86/mm/p2m.c b/xen/arch/x86/mm/p2m.c
> index a3add21..2710ce8 100644
> --- a/xen/arch/x86/mm/p2m.c
> +++ b/xen/arch/x86/mm/p2m.c
> @@ -2214,9 +2214,9 @@ static unsigned int mmio_order(const struct domain *d,
>   #define MAP_MMIO_MAX_ITER 64 /* pretty arbitrary */
>
>   int map_mmio_regions(struct domain *d,
> -                     unsigned long start_gfn,
> +                     gfn_t start_gfn,
>                        unsigned long nr,
> -                     unsigned long mfn)
> +                     mfn_t mfn)
>   {
>       int ret = 0;
>       unsigned long i;
> @@ -2229,10 +2229,11 @@ int map_mmio_regions(struct domain *d,
>             i += 1UL << order, ++iter )
>       {
>           /* OR'ing gfn and mfn values will return an order suitable to both. */
> -        for ( order = mmio_order(d, (start_gfn + i) | (mfn + i), nr - i); ;
> +        for ( order = mmio_order(d, (gfn_x(start_gfn) + i) | (mfn_x(mfn) + i), nr - i); ;
>                 order = ret - 1 )
>           {
> -            ret = set_mmio_p2m_entry(d, start_gfn + i, _mfn(mfn + i), order,
> +            ret = set_mmio_p2m_entry(d, gfn_x(start_gfn) + i,
> +                                     _mfn(mfn_x(mfn) + i), order,

Hmm I forgot to convert this one to mfn_add(mfn, i).


-- 
Julien Grall

_______________________________________________
Xen-devel mailing list
Xen-devel@lists.xen.org
http://lists.xen.org/xen-devel

  reply	other threads:[~2016-06-20 14:37 UTC|newest]

Thread overview: 19+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2016-06-20 13:37 [PATCH v2 0/8] xen/arm: Use the typesafes gfn and mfn Julien Grall
2016-06-20 13:37 ` [PATCH v2 1/8] xen/arm: Rename gmfn_to_mfn to gfn_to_mfn and use gfn/mfn typesafe Julien Grall
2016-06-20 13:37 ` [PATCH v2 2/8] xen/mm: Introduce a bunch of helpers for the typesafes mfn and gfn Julien Grall
2016-06-20 14:25   ` Jan Beulich
2016-06-20 14:26     ` Julien Grall
2016-06-20 13:37 ` [PATCH v2 3/8] xen: Use typesafe gfn/mfn in guest_physmap_* helpers Julien Grall
2016-06-20 14:33   ` Jan Beulich
2016-06-20 13:37 ` [PATCH v2 4/8] xen: Use typesafe gfn in xenmem_add_to_physmap_one Julien Grall
2016-06-20 14:35   ` Jan Beulich
2016-06-20 13:37 ` [PATCH v2 5/8] xen/arm: Rename grant_table_gfpn into grant_table_gfn and use the typesafe gfn Julien Grall
2016-06-20 13:37 ` [PATCH v2 6/8] xen: Use the typesafe mfn and gfn in map_mmio_regions Julien Grall
2016-06-20 14:37   ` Julien Grall [this message]
2016-06-20 15:04   ` Jan Beulich
2016-06-20 13:37 ` [PATCH v2 7/8] xen/arm: Rework the interface of p2m_lookup and use typesafe gfn and mfn Julien Grall
2016-06-20 13:37 ` [PATCH v2 8/8] xen/arm: p2m_cache_flush: Use the correct terminology and typesafe gfn Julien Grall
2016-06-20 14:53   ` Andrew Cooper
2016-06-20 15:03     ` Julien Grall
2016-06-20 15:36       ` Andrew Cooper
2016-06-20 15:37         ` Julien Grall

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=5767FFBC.30504@arm.com \
    --to=julien.grall@arm.com \
    --cc=andrew.cooper3@citrix.com \
    --cc=george.dunlap@eu.citrix.com \
    --cc=ian.jackson@eu.citrix.com \
    --cc=jbeulich@suse.com \
    --cc=sstabellini@kernel.org \
    --cc=tim@xen.org \
    --cc=wei.liu2@citrix.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.