All of lore.kernel.org
 help / color / mirror / Atom feed
From: "Jan Beulich" <jbeulich@novell.com>
To: xen-devel@lists.xensource.com
Subject: [PATCH] x86/32on64: fix physical address restriction
Date: Thu, 12 Jun 2008 15:28:59 +0100	[thread overview]
Message-ID: <48514ECB.76E4.0078.0@novell.com> (raw)

The allocation bit size setting wasn't working anymore after the recent
fix to properly use PAGE_SHIFT instead of PAGE_SIZE. This was because
the bit size implies a power-of-two range that's accessible, but if all
memory is accessible anyway (and its upper boundary is not a power of
two), the domain would either be needlessly restricted or wouldn't be
able to allocate as much memory as was intended for it (specifically
the case for Dom0 without dom0_mem= boot parameter). Consequently,
don't restrict the bit width if all memory can be accessed.

To avoid needing to adjust this code in two places in the future (it
may need further touching when memory hotplug gets supported), fold the
logic into a function.

Signed-off-by: Jan Beulich <jbeulich@novell.com>

Index: 2008-06-12/xen/arch/x86/domain.c
===================================================================
--- 2008-06-12.orig/xen/arch/x86/domain.c	2008-06-12 09:02:00.000000000 +0200
+++ 2008-06-12/xen/arch/x86/domain.c	2008-06-12 09:07:02.000000000 +0200
@@ -349,11 +349,7 @@ int switch_compat(struct domain *d)
                                  FIRST_RESERVED_GDT_PAGE)] = gdt_l1e;
     }
 
-    d->arch.physaddr_bitsize =
-        /* 2^n entries can be contained in guest's p2m mapping space */
-        fls((1UL << 32) - HYPERVISOR_COMPAT_VIRT_START(d)) - 3
-        /* 2^n pages -> 2^(n+PAGE_SHIFT) bits */
-        + PAGE_SHIFT;
+    domain_set_alloc_bitsize(d);
 
     return 0;
 
Index: 2008-06-12/xen/arch/x86/domain_build.c
===================================================================
--- 2008-06-12.orig/xen/arch/x86/domain_build.c	2008-06-10 18:00:41.000000000 +0200
+++ 2008-06-12/xen/arch/x86/domain_build.c	2008-06-12 09:08:19.000000000 +0200
@@ -353,14 +353,7 @@ int __init construct_dom0(
 #endif
     }
 
-#if defined(__x86_64__)
-    if ( is_pv_32on64_domain(d) )
-        d->arch.physaddr_bitsize =
-            /* 2^n entries can be contained in guest's p2m mapping space */
-            fls((1UL << 32) - HYPERVISOR_COMPAT_VIRT_START(d)) - 3
-            /* 2^n pages -> 2^(n+PAGE_SHIFT) bits */
-            + PAGE_SHIFT;
-#endif
+    domain_set_alloc_bitsize(d);
 
     /*
      * Why do we need this? The number of page-table frames depends on the 
Index: 2008-06-12/xen/arch/x86/x86_64/mm.c
===================================================================
--- 2008-06-12.orig/xen/arch/x86/x86_64/mm.c	2008-06-10 18:00:41.000000000 +0200
+++ 2008-06-12/xen/arch/x86/x86_64/mm.c	2008-06-12 09:07:42.000000000 +0200
@@ -470,9 +470,21 @@ int check_descriptor(const struct domain
     return 0;
 }
 
+void domain_set_alloc_bitsize(struct domain *d)
+{
+    if ( !is_pv_32on64_domain(d)
+         || HYPERVISOR_COMPAT_VIRT_START(d) > __HYPERVISOR_COMPAT_VIRT_START )
+        return;
+    d->arch.physaddr_bitsize =
+        /* 2^n entries can be contained in guest's p2m mapping space */
+        fls((1UL << 32) - HYPERVISOR_COMPAT_VIRT_START(d)) - 3
+        /* 2^n pages -> 2^(n+PAGE_SHIFT) bits */
+        + PAGE_SHIFT;
+}
+
 unsigned int domain_clamp_alloc_bitsize(struct domain *d, unsigned int bits)
 {
-    if ( (d == NULL) || !is_pv_32on64_domain(d) )
+    if ( d == NULL || d->arch.physaddr_bitsize == 0 )
         return bits;
     return min(d->arch.physaddr_bitsize, bits);
 }
Index: 2008-06-12/xen/include/asm-x86/mm.h
===================================================================
--- 2008-06-12.orig/xen/include/asm-x86/mm.h	2008-05-09 09:48:32.000000000 +0200
+++ 2008-06-12/xen/include/asm-x86/mm.h	2008-06-12 09:06:20.000000000 +0200
@@ -343,9 +343,11 @@ int map_ldt_shadow_page(unsigned int);
 
 #ifdef CONFIG_COMPAT
 int setup_arg_xlat_area(struct vcpu *, l4_pgentry_t *);
+void domain_set_alloc_bitsize(struct domain *d);
 unsigned int domain_clamp_alloc_bitsize(struct domain *d, unsigned int bits);
 #else
 # define setup_arg_xlat_area(vcpu, l4tab) 0
+# define domain_set_alloc_bitsize(d) ((void)0)
 # define domain_clamp_alloc_bitsize(d, b) (b)
 #endif
 

             reply	other threads:[~2008-06-12 14:28 UTC|newest]

Thread overview: 3+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2008-06-12 14:28 Jan Beulich [this message]
2008-06-12 15:06 ` [PATCH] x86/32on64: fix physical address restriction Keir Fraser
2008-06-12 15:46   ` [PATCH] x86/32on64: fix physical addressrestriction Jan Beulich

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=48514ECB.76E4.0078.0@novell.com \
    --to=jbeulich@novell.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.