Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > linux.kernel > #1218215
| From | Juergen Gross <jgross@suse.com> |
|---|---|
| Newsgroups | linux.kernel |
| Subject | Re: [PATCH] xen/p2m: fix extra memory regions accounting |
| Date | 2015-09-03 14:30 +0200 |
| Message-ID | <q4BOq-3tf-13@gated-at.bofh.it> (permalink) |
| References | <q4Bv3-36H-9@gated-at.bofh.it> |
| Organization | linux.* mail to news gateway |
On 09/03/2015 02:05 PM, Roger Pau Monne wrote:
> On systems with memory maps with ranges that don't end at page boundaries,
> like:
>
> [...]
> (XEN) 0000000000100000 - 00000000dfdf9c00 (usable)
> (XEN) 00000000dfdf9c00 - 00000000dfe4bc00 (ACPI NVS)
> [...]
>
> xen_add_extra_mem will create a protected range that ends up at 0xdfdf9c00,
> but the function used to check if a memory address is inside of a protected
> range works with pfns, which means that an attempt to map 0xdfdf9c00 will be
> refused because the check is performed against 0xdfdf9000 instead of
> 0xdfdf9c00.
>
> In order to fix this, make sure that the ranges that are added to the
> xen_extra_mem array are aligned to page boundaries.
>
> Signed-off-by: Roger Pau Monné <roger.pau@citrix.com>
> Cc: Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
> Cc: Boris Ostrovsky <boris.ostrovsky@oracle.com>
> Cc: David Vrabel <david.vrabel@citrix.com>
> Cc: Juergen Gross <jgross@suse.com>
> Cc: xen-devel@lists.xenproject.org
> ---
> AFAICT this patch needs to be backported to 3.19, 4.0, 4.1 and 4.2.
> ---
> arch/x86/xen/setup.c | 6 ++++++
> 1 file changed, 6 insertions(+)
>
> diff --git a/arch/x86/xen/setup.c b/arch/x86/xen/setup.c
> index 55f388e..dcf5865 100644
> --- a/arch/x86/xen/setup.c
> +++ b/arch/x86/xen/setup.c
> @@ -68,6 +68,9 @@ static void __init xen_add_extra_mem(phys_addr_t start, phys_addr_t size)
> {
> int i;
>
> + start = PAGE_ALIGN(start);
> + size &= PAGE_MASK;
This is not correct. If start wasn't page aligned and size was, you'll
add one additional page to xen_extra_mem.
> +
> for (i = 0; i < XEN_EXTRA_MEM_MAX_REGIONS; i++) {
> /* Add new region. */
> if (xen_extra_mem[i].size == 0) {
> @@ -92,6 +95,9 @@ static void __init xen_del_extra_mem(phys_addr_t start, phys_addr_t size)
> int i;
> phys_addr_t start_r, size_r;
>
> + start = PAGE_ALIGN(start);
> + size &= PAGE_MASK;
Not really needed, as xen_del_extra_mem() is called with aligned values
only. OTOH it does no harm, as long as you correct size as above.
> +
> for (i = 0; i < XEN_EXTRA_MEM_MAX_REGIONS; i++) {
> start_r = xen_extra_mem[i].start;
> size_r = xen_extra_mem[i].size;
>
Juergen
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
Back to linux.kernel | Previous | Next — Previous in thread | Next in thread | Find similar | Unroll thread
[PATCH] xen/p2m: fix extra memory regions accounting Roger Pau Monne <roger.pau@citrix.com> - 2015-09-03 14:10 +0200
Re: [PATCH] xen/p2m: fix extra memory regions accounting Roger Pau Monné <roger.pau@citrix.com> - 2015-09-03 14:20 +0200
Re: [PATCH] xen/p2m: fix extra memory regions accounting Juergen Gross <jgross@suse.com> - 2015-09-03 14:30 +0200
Re: [PATCH] xen/p2m: fix extra memory regions accounting Juergen Gross <jgross@suse.com> - 2015-09-03 14:30 +0200
Re: [PATCH] xen/p2m: fix extra memory regions accounting David Vrabel <david.vrabel@citrix.com> - 2015-09-03 16:50 +0200
Re: [Xen-devel] [PATCH] xen/p2m: fix extra memory regions accounting David Vrabel <david.vrabel@citrix.com> - 2015-09-03 17:00 +0200
Re: [Xen-devel] [PATCH] xen/p2m: fix extra memory regions accounting Juergen Gross <jgross@suse.com> - 2015-09-03 17:00 +0200
Re: [Xen-devel] [PATCH] xen/p2m: fix extra memory regions accounting David Vrabel <david.vrabel@citrix.com> - 2015-09-03 17:10 +0200
Re: [Xen-devel] [PATCH] xen/p2m: fix extra memory regions accounting Juergen Gross <jgross@suse.com> - 2015-09-03 17:30 +0200
Re: [Xen-devel] [PATCH] xen/p2m: fix extra memory regions accounting Roger Pau Monné <roger.pau@citrix.com> - 2015-09-03 17:40 +0200
Re: [Xen-devel] [PATCH] xen/p2m: fix extra memory regions accounting Juergen Gross <jgross@suse.com> - 2015-09-03 18:00 +0200
Re: [Xen-devel] [PATCH] xen/p2m: fix extra memory regions accounting Juergen Gross <jgross@suse.com> - 2015-09-04 07:10 +0200
Re: [Xen-devel] [PATCH] xen/p2m: fix extra memory regions accounting Roger Pau Monné <roger.pau@citrix.com> - 2015-09-04 09:40 +0200
Re: [Xen-devel] [PATCH] xen/p2m: fix extra memory regions accounting Juergen Gross <jgross@suse.com> - 2015-09-04 09:50 +0200
Re: [Xen-devel] [PATCH] xen/p2m: fix extra memory regions accounting Roger Pau Monné <roger.pau@citrix.com> - 2015-09-04 10:00 +0200
Re: [Xen-devel] [PATCH] xen/p2m: fix extra memory regions accounting Juergen Gross <jgross@suse.com> - 2015-09-04 10:10 +0200
Re: [PATCH] xen/p2m: fix extra memory regions accounting Roger Pau Monné <roger.pau@citrix.com> - 2015-09-03 16:50 +0200
Re: [PATCH] xen/p2m: fix extra memory regions accounting Juergen Gross <jgross@suse.com> - 2015-09-03 17:00 +0200
csiph-web