From: Cole Robinson Date: Mon, 22 Feb 2010 22:02:08 +0000 (-0500) Subject: docs: storage: Document multipath pools X-Git-Tag: v0.7.7~97 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=582f04f0648102f3e6c48499ba03a62b9dc86044;p=thirdparty%2Flibvirt.git docs: storage: Document multipath pools --- diff --git a/docs/storage.html.in b/docs/storage.html.in index 211e687b00..2b6641cb48 100644 --- a/docs/storage.html.in +++ b/docs/storage.html.in @@ -28,6 +28,9 @@ libvirt.
  • SCSI backend
  • +
  • + Multipath backend +
  • Directory pool

    @@ -380,6 +383,41 @@ libvirt. The SCSI volume pool does not use the volume format type element.

    +

    Multipath pools

    +

    + This provides a pool that contains all the multipath devices on the + host. Volume creating is not supported via the libvirt APIs. + The target element is actually ignored, but one is required to appease + the libvirt XML parser.
    +
    + Configuring multipathing is not currently supported, this just covers + the case where users want to discover all the available multipath + devices, and assign them to guests. + Since 0.7.1 +

    + +

    Example pool input

    +
    +      <pool type="mpath">
    +        <name>virtimages</name>
    +        <target>
    +          <path>/dev/mapper</path>
    +        </target>
    +      </pool>
    + +

    Valid pool format types

    +

    + The Multipath volume pool does not use the pool format type element. +

    + +

    Valid volume format types

    +

    + The Multipath volume pool does not use the volume format type element. +

    + + + +