From 582f04f0648102f3e6c48499ba03a62b9dc86044 Mon Sep 17 00:00:00 2001 From: Cole Robinson Date: Mon, 22 Feb 2010 17:02:08 -0500 Subject: [PATCH] docs: storage: Document multipath pools --- docs/storage.html.in | 38 ++++++++++++++++++++++++++++++++++++++ 1 file changed, 38 insertions(+) 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. +

    + + + +