From mboxrd@z Thu Jan 1 00:00:00 1970 From: Konrad Rzeszutek Wilk Subject: Re: [V10 PATCH 01/23] PVH xen: Add readme docs/misc/pvh-readme.txt Date: Fri, 16 Aug 2013 10:11:49 -0400 Message-ID: <20130816141149.GA11775@konrad-lan.dumpdata.com> References: <1374631171-15224-1-git-send-email-mukesh.rathor@oracle.com> <1374631171-15224-2-git-send-email-mukesh.rathor@oracle.com> Mime-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit Return-path: Content-Disposition: inline In-Reply-To: List-Unsubscribe: , List-Post: List-Help: List-Subscribe: , Sender: xen-devel-bounces@lists.xen.org Errors-To: xen-devel-bounces@lists.xen.org To: George Dunlap Cc: "xen-devel@lists.xensource.com" , "keir.xen@gmail.com" List-Id: xen-devel@lists.xenproject.org On Fri, Aug 16, 2013 at 02:17:47PM +0100, George Dunlap wrote: > On Fri, Aug 16, 2013 at 11:18 AM, George Dunlap wrote: > > On Wed, Jul 24, 2013 at 2:59 AM, Mukesh Rathor wrote: > >> Signed-off-by: Mukesh Rathor > >> --- > >> docs/misc/pvh-readme.txt | 56 ++++++++++++++++++++++++++++++++++++++++++++++ > >> 1 files changed, 56 insertions(+), 0 deletions(-) > >> create mode 100644 docs/misc/pvh-readme.txt > >> > >> diff --git a/docs/misc/pvh-readme.txt b/docs/misc/pvh-readme.txt > >> new file mode 100644 > >> index 0000000..3b14aa7 > >> --- /dev/null > >> +++ b/docs/misc/pvh-readme.txt > >> @@ -0,0 +1,56 @@ > >> + > >> +PVH : an x86 PV guest running in an HVM container. HAP is required for PVH. > >> + > >> +See: http://blog.xen.org/index.php/2012/10/23/the-paravirtualization-spectrum-part-1-the-ends-of-the-spectrum/ > >> + > >> +At present the only PVH guest is an x86 64bit PV linux. Patches are at: > >> + git://git.kernel.org/pub/scm/linux/kernel/git/konrad/xen.git > > > > One thing that's missing from this is how to actually create a PVH > > guest. I'm guessing there's a way to get the xl toolstack to create a > > PVH domain with HAP enabled? > > Also, which branch has the most recent PVH kernel to test with V10 of > the hypervisor series? stable/pvh.v8. But you need to merge it against the latest. I would recommend you do: git checkout v3.9 git merge stable/pvh.v8 there are some conflicts but they are pretty simple to resolve. > > -George