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. +

    + + + +