* [PATCH] mem_access: fix setting default mem_access type
@ 2012-04-18 1:09 Aravindh Puthiyaparambil
2012-04-18 8:32 ` Keir Fraser
0 siblings, 1 reply; 3+ messages in thread
From: Aravindh Puthiyaparambil @ 2012-04-18 1:09 UTC (permalink / raw)
To: xen-devel
When xc_hvm_set_mem_access(xch, domain_id, default_access, ~0ull, 0)
is called, first_pfn=~0ull is a hint to HVMOP_set_mem_access as to
what the default mem_access type is for the domain. This call was
failing because it was gated by the memory range check in the
HVMOP_set_mem_access case statement in do_hvm_op(). The following
patch fixes this issue.
Signed-off-by: Aravindh Puthiyaparambil <aravindh@virtuata.com>
---
xen/arch/x86/hvm/hvm.c | 5 +++--
1 files changed, 3 insertions(+), 2 deletions(-)
diff -r a06e6cdeafe3 xen/arch/x86/hvm/hvm.c
--- a/xen/arch/x86/hvm/hvm.c Mon Apr 16 13:05:28 2012 +0200
+++ b/xen/arch/x86/hvm/hvm.c Tue Apr 17 18:03:37 2012 -0700
@@ -4170,9 +4170,10 @@
goto param_fail5;
rc = -EINVAL;
- if ( (a.first_pfn > domain_get_maximum_gpfn(d)) ||
+ if ( (a.first_pfn != ~0ull) &&
+ ((a.first_pfn > domain_get_maximum_gpfn(d)) ||
((a.first_pfn + a.nr - 1) < a.first_pfn) ||
- ((a.first_pfn + a.nr - 1) > domain_get_maximum_gpfn(d)) )
+ ((a.first_pfn + a.nr - 1) > domain_get_maximum_gpfn(d))) )
goto param_fail5;
rc = p2m_set_mem_access(d, a.first_pfn, a.nr, a.hvmmem_access);
^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: [PATCH] mem_access: fix setting default mem_access type
2012-04-18 1:09 [PATCH] mem_access: fix setting default mem_access type Aravindh Puthiyaparambil
@ 2012-04-18 8:32 ` Keir Fraser
2012-04-18 12:40 ` Tim Deegan
0 siblings, 1 reply; 3+ messages in thread
From: Keir Fraser @ 2012-04-18 8:32 UTC (permalink / raw)
To: Aravindh Puthiyaparambil, xen-devel; +Cc: Tim Deegan
On 18/04/2012 02:09, "Aravindh Puthiyaparambil" <aravindh@virtuata.com>
wrote:
> When xc_hvm_set_mem_access(xch, domain_id, default_access, ~0ull, 0)
> is called, first_pfn=~0ull is a hint to HVMOP_set_mem_access as to
> what the default mem_access type is for the domain. This call was
> failing because it was gated by the memory range check in the
> HVMOP_set_mem_access case statement in do_hvm_op(). The following
> patch fixes this issue.
>
> Signed-off-by: Aravindh Puthiyaparambil <aravindh@virtuata.com>
Looks okay to me. Probably should be checked and applied by Tim.
-- Keir
> ---
> xen/arch/x86/hvm/hvm.c | 5 +++--
> 1 files changed, 3 insertions(+), 2 deletions(-)
>
> diff -r a06e6cdeafe3 xen/arch/x86/hvm/hvm.c
> --- a/xen/arch/x86/hvm/hvm.c Mon Apr 16 13:05:28 2012 +0200
> +++ b/xen/arch/x86/hvm/hvm.c Tue Apr 17 18:03:37 2012 -0700
> @@ -4170,9 +4170,10 @@
> goto param_fail5;
>
> rc = -EINVAL;
> - if ( (a.first_pfn > domain_get_maximum_gpfn(d)) ||
> + if ( (a.first_pfn != ~0ull) &&
> + ((a.first_pfn > domain_get_maximum_gpfn(d)) ||
> ((a.first_pfn + a.nr - 1) < a.first_pfn) ||
> - ((a.first_pfn + a.nr - 1) > domain_get_maximum_gpfn(d)) )
> + ((a.first_pfn + a.nr - 1) > domain_get_maximum_gpfn(d))) )
> goto param_fail5;
>
> rc = p2m_set_mem_access(d, a.first_pfn, a.nr, a.hvmmem_access);
>
> _______________________________________________
> Xen-devel mailing list
> Xen-devel@lists.xen.org
> http://lists.xen.org/xen-devel
^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: [PATCH] mem_access: fix setting default mem_access type
2012-04-18 8:32 ` Keir Fraser
@ 2012-04-18 12:40 ` Tim Deegan
0 siblings, 0 replies; 3+ messages in thread
From: Tim Deegan @ 2012-04-18 12:40 UTC (permalink / raw)
To: Keir Fraser; +Cc: Aravindh Puthiyaparambil, xen-devel
At 09:32 +0100 on 18 Apr (1334741539), Keir Fraser wrote:
> On 18/04/2012 02:09, "Aravindh Puthiyaparambil" <aravindh@virtuata.com>
> wrote:
>
> > When xc_hvm_set_mem_access(xch, domain_id, default_access, ~0ull, 0)
> > is called, first_pfn=~0ull is a hint to HVMOP_set_mem_access as to
> > what the default mem_access type is for the domain. This call was
> > failing because it was gated by the memory range check in the
> > HVMOP_set_mem_access case statement in do_hvm_op(). The following
> > patch fixes this issue.
> >
> > Signed-off-by: Aravindh Puthiyaparambil <aravindh@virtuata.com>
>
> Looks okay to me. Probably should be checked and applied by Tim.
Done.
Tim.
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2012-04-18 12:40 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2012-04-18 1:09 [PATCH] mem_access: fix setting default mem_access type Aravindh Puthiyaparambil
2012-04-18 8:32 ` Keir Fraser
2012-04-18 12:40 ` Tim Deegan
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).