All of lore.kernel.org
 help / color / mirror / Atom feed
From: david.vrabel@citrix.com (David Vrabel)
To: linux-arm-kernel@lists.infradead.org
Subject: [PATCH v3 0/3] xen/arm: fix "xen_add_mach_to_phys_entry: cannot add" problem
Date: Fri, 1 Aug 2014 16:28:49 +0100	[thread overview]
Message-ID: <53DBB231.5010900@citrix.com> (raw)
In-Reply-To: <alpine.DEB.2.02.1408011552460.2293@kaball.uk.xensource.com>

On 01/08/14 15:55, Stefano Stabellini wrote:
> Hi all,
> Xen support in Linux for ARM and ARM64 suffers from lack of support for
> multiple mfn to pfn mappings: whenever a frontend grants the same page
> multiple times to the backend, the mfn to pfn accounting in
> arch/arm/xen/p2m.c fails. The issue has become critical since v3.15,
> when xen-netfront/xen-netback switched from grant copies to grant
> mappings, therefore causing the issue to happen much more often.
> 
> Fixing the mfn to pfn accounting in p2m.c is difficult and expensive,
> therefore we are looking for alternative solutions. One idea is avoiding
> mfn to pfn conversions altogether. The only code path that needs them is
> swiotlb-xen:unmap_page (and single_for_cpu and single_for_device).
> 
> To avoid mfn to pfn conversions we rely on a second p2m mapping done by
> Xen (a separate patch series will be sent for Xen). In Linux we use it
> to perform the cache maintenance operations without mfns conversions.
> 
> 
> The Xen side patch series that introduces XENFEAT_grant_map_identity is:
> http://marc.info/?l=xen-devel&m=140690433923855

If the Xen side is in master, you can apply this series to
devel/for-linus-3.17

David

WARNING: multiple messages have this Message-ID (diff)
From: David Vrabel <david.vrabel@citrix.com>
To: Stefano Stabellini <stefano.stabellini@eu.citrix.com>,
	xen-devel@lists.xensource.com
Cc: Julien Grall <julien.grall@citrix.com>,
	v1ne2go@gmail.com, Ian Campbell <Ian.Campbell@citrix.com>,
	linux-arm-kernel@lists.infradead.org
Subject: Re: [PATCH v3 0/3] xen/arm: fix "xen_add_mach_to_phys_entry: cannot add" problem
Date: Fri, 1 Aug 2014 16:28:49 +0100	[thread overview]
Message-ID: <53DBB231.5010900@citrix.com> (raw)
In-Reply-To: <alpine.DEB.2.02.1408011552460.2293@kaball.uk.xensource.com>

On 01/08/14 15:55, Stefano Stabellini wrote:
> Hi all,
> Xen support in Linux for ARM and ARM64 suffers from lack of support for
> multiple mfn to pfn mappings: whenever a frontend grants the same page
> multiple times to the backend, the mfn to pfn accounting in
> arch/arm/xen/p2m.c fails. The issue has become critical since v3.15,
> when xen-netfront/xen-netback switched from grant copies to grant
> mappings, therefore causing the issue to happen much more often.
> 
> Fixing the mfn to pfn accounting in p2m.c is difficult and expensive,
> therefore we are looking for alternative solutions. One idea is avoiding
> mfn to pfn conversions altogether. The only code path that needs them is
> swiotlb-xen:unmap_page (and single_for_cpu and single_for_device).
> 
> To avoid mfn to pfn conversions we rely on a second p2m mapping done by
> Xen (a separate patch series will be sent for Xen). In Linux we use it
> to perform the cache maintenance operations without mfns conversions.
> 
> 
> The Xen side patch series that introduces XENFEAT_grant_map_identity is:
> http://marc.info/?l=xen-devel&m=140690433923855

If the Xen side is in master, you can apply this series to
devel/for-linus-3.17

David

  parent reply	other threads:[~2014-08-01 15:28 UTC|newest]

Thread overview: 42+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2014-08-01 14:55 [PATCH v3 0/3] xen/arm: fix "xen_add_mach_to_phys_entry: cannot add" problem Stefano Stabellini
2014-08-01 14:55 ` Stefano Stabellini
2014-08-01 14:56 ` [PATCH v3 1/3] xen/arm: introduce XENFEAT_grant_map_identity Stefano Stabellini
2014-08-01 14:56   ` Stefano Stabellini
2014-08-01 15:17   ` David Vrabel
2014-08-01 15:17     ` David Vrabel
2014-08-01 16:53   ` [Xen-devel] " Julien Grall
2014-08-01 16:53     ` Julien Grall
2014-08-01 17:09     ` [Xen-devel] " Stefano Stabellini
2014-08-01 17:09       ` Stefano Stabellini
2014-08-01 14:56 ` [PATCH v3 2/3] xen/arm: reimplement xen_dma_unmap_page & friends Stefano Stabellini
2014-08-01 14:56   ` Stefano Stabellini
2014-08-08 14:32   ` Stefano Stabellini
2014-08-08 14:32     ` Stefano Stabellini
2014-08-08 14:38     ` Wei Liu
2014-08-08 14:38       ` Wei Liu
2014-08-08 14:49       ` Thomas Leonard
2014-08-08 14:49         ` Thomas Leonard
2014-08-08 14:54         ` Stefano Stabellini
2014-08-08 14:54           ` Stefano Stabellini
2014-08-08 15:00         ` Wei Liu
2014-08-08 15:00           ` Wei Liu
2014-08-08 16:01           ` Thomas Leonard
2014-08-08 16:01             ` Thomas Leonard
2014-08-08 16:12             ` Wei Liu
2014-08-08 16:12               ` Wei Liu
2014-08-08 16:52             ` Stefano Stabellini
2014-08-08 16:52               ` Stefano Stabellini
2014-08-01 14:56 ` [PATCH v3 3/3] xen/arm: remove mach_to_phys rbtree Stefano Stabellini
2014-08-01 14:56   ` Stefano Stabellini
2014-08-01 15:28 ` David Vrabel [this message]
2014-08-01 15:28   ` [PATCH v3 0/3] xen/arm: fix "xen_add_mach_to_phys_entry: cannot add" problem David Vrabel
2014-08-01 16:27   ` Stefano Stabellini
2014-08-01 16:27     ` Stefano Stabellini
2014-09-10 23:28   ` Stefano Stabellini
2014-09-10 23:28     ` Stefano Stabellini
2014-09-11 12:55     ` David Vrabel
2014-09-11 12:55       ` David Vrabel
2014-09-11 18:31       ` Stefano Stabellini
2014-09-11 18:31         ` Stefano Stabellini
2014-09-12  9:43         ` David Vrabel
2014-09-12  9:43           ` David Vrabel

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=53DBB231.5010900@citrix.com \
    --to=david.vrabel@citrix.com \
    --cc=linux-arm-kernel@lists.infradead.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.