kvm.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
From: "Daniel P. Berrange" <berrange@redhat.com>
To: Osier Yang <jyang@redhat.com>
Cc: libvir-list@redhat.com, kvm@vger.kernel.org,
	penberg@cs.helsinki.fi, levinsasha928@gmail.com,
	gorcunov@gmail.com, mingo@elte.hu, asias.hejun@gmail.com
Subject: Re: [libvirt] [PATCH 2/7] kvmtool: Add documents
Date: Tue, 6 Dec 2011 14:47:30 +0000	[thread overview]
Message-ID: <20111206144730.GD7937@redhat.com> (raw)
In-Reply-To: <1321012626-31713-4-git-send-email-jyang@redhat.com>

On Fri, Nov 11, 2011 at 07:57:01PM +0800, Osier Yang wrote:
> The document is rather rough now, but at least contains an domain
> config example of all the current supported XMLs, and tells how to
> play with the driver.
> ---
>  docs/drivers.html.in    |    1 +
>  docs/drvkvmtool.html.in |   87 +++++++++++++++++++++++++++++++++++++++++++++++
>  docs/index.html.in      |    3 ++
>  docs/sitemap.html.in    |    4 ++
>  src/README              |    3 +-
>  5 files changed, 97 insertions(+), 1 deletions(-)
>  create mode 100644 docs/drvkvmtool.html.in
> 
> diff --git a/docs/drivers.html.in b/docs/drivers.html.in
> index 75038fc..249c137 100644
> --- a/docs/drivers.html.in
> +++ b/docs/drivers.html.in
> @@ -29,6 +29,7 @@
>        <li><strong><a href="drvvmware.html">VMware Workstation/Player</a></strong></li>
>        <li><strong><a href="drvxen.html">Xen</a></strong></li>
>        <li><strong><a href="drvhyperv.html">Microsoft Hyper-V</a></strong></li>
> +      <li><strong><a href="drvkvmtool.html">Native Linux KVM Tool</a></strong></li>
>      </ul>
>  
>      <h2><a name="stroage">Storage drivers</a></h2>
> diff --git a/docs/drvkvmtool.html.in b/docs/drvkvmtool.html.in
> new file mode 100644
> index 0000000..1b6acdf
> --- /dev/null
> +++ b/docs/drvkvmtool.html.in
> @@ -0,0 +1,87 @@
> +<html>
> +  <body>
> +    <h1>KVM tool driver</h1>
> +
> +    <ul id="toc"></ul>
> +
> +    <p>
> +      The libvirt KVMTOOL driver manages hypervisor Native Linux KVM Tool,
> +      it's implemented by using command line of kvm tool binary.
> +    </p>
> +
> +    <h2><a name="project">Project Links</a></h2>
> +
> +    <ul>
> +      <li>
> +        The <a href="git://github.com/penberg/linux-kvm.git">Native Linux KVM Tool</a> Native
> +        Linux KVM Tool
> +      </li>
> +    </ul>
> +
> +    <h2><a name="uris">Connections to the KVMTOOL driver</a></h2>
> +    <p>
> +      The libvirt KVMTOOL driver is a multi-instance driver, providing a single
> +      system wide privileged driver (the "system" instance), and per-user
> +      unprivileged drivers (the "session" instance). The URI driver protocol
> +      is "kvmtool". Some example conection URIs for the libvirt driver are:
> +    </p>
> +
> +    <pre>
> +      kvmtool:///session                      (local access to per-user instance)
> +      kvmtool+unix:///session                 (local access to per-user instance)
> +
> +      kvmtool:///system                       (local access to system instance)
> +      kvmtool+unix:///system                  (local access to system instance)
> +    </pre>
> +    <p>
> +      cgroups controllers "cpuacct", and "memory" are supported currently.
> +    </p>
> +
> +  <h3>Example config</h3>
> +
> +  <pre>
> +&lt;domain type='kvmtool' id='1'&gt;

As mentioned in a later patch, we should just use  type='kvm' here still


Daniel
-- 
|: http://berrange.com      -o-    http://www.flickr.com/photos/dberrange/ :|
|: http://libvirt.org              -o-             http://virt-manager.org :|
|: http://autobuild.org       -o-         http://search.cpan.org/~danberr/ :|
|: http://entangle-photo.org       -o-       http://live.gnome.org/gtk-vnc :|

  reply	other threads:[~2011-12-06 14:48 UTC|newest]

Thread overview: 26+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2011-11-11 11:56 [libvirt] (no subject) Osier Yang
2011-11-11 11:30 ` [libvirt] Add driver support for Native Linux KVM Tool Osier Yang
2011-11-11 11:56 ` [libvirt] [PATCH 1/7] kvmtool: Add configure support Osier Yang
2011-11-11 11:57 ` [libvirt] [PATCH] kvm tools: Introduce an ENV variable for the state dir Osier Yang
2011-12-06 14:39   ` Daniel P. Berrange
2011-12-09  7:18     ` Osier Yang
2011-11-11 11:57 ` [libvirt] [PATCH 2/7] kvmtool: Add documents Osier Yang
2011-12-06 14:47   ` Daniel P. Berrange [this message]
2011-11-11 11:57 ` [libvirt] [PATCH 3/7] kvmtool: Add new enums and error codes for the driver Osier Yang
2011-12-06 14:47   ` Daniel P. Berrange
2011-11-11 11:57 ` [libvirt] [PATCH 4/7] kvmtool: Add hook support for kvmtool domain Osier Yang
2011-12-06 14:48   ` Daniel P. Berrange
2011-11-11 11:57 ` [libvirt] [PATCH 5/7] kvmtool: Add new domain type Osier Yang
2011-12-06 14:46   ` Daniel P. Berrange
2011-12-09  7:22     ` Osier Yang
2011-11-11 11:57 ` [libvirt] [PATCH 6/7] conf: Set source type of the stub console Osier Yang
2011-11-11 11:57 ` [libvirt] [PATCH 7/7] kvmtool: Implementation for kvm tool driver Osier Yang
2011-12-06 14:55   ` Daniel P. Berrange
2011-12-09  7:30     ` Osier Yang
2011-12-06 14:38 ` [libvirt] (no subject) Daniel P. Berrange
2011-12-07  6:21   ` Sasha Levin
2011-12-07  9:16     ` Daniel P. Berrange
2011-12-09 12:45       ` Osier Yang
2011-12-09 12:41     ` Osier Yang
2011-12-09 12:30   ` Osier Yang
2011-12-10 17:56     ` Pekka Enberg

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=20111206144730.GD7937@redhat.com \
    --to=berrange@redhat.com \
    --cc=asias.hejun@gmail.com \
    --cc=gorcunov@gmail.com \
    --cc=jyang@redhat.com \
    --cc=kvm@vger.kernel.org \
    --cc=levinsasha928@gmail.com \
    --cc=libvir-list@redhat.com \
    --cc=mingo@elte.hu \
    --cc=penberg@cs.helsinki.fi \
    /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 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).