From 51cb34b31df8ef2b71ca0ad977e6576cbdc60184 Mon Sep 17 00:00:00 2001 From: Eric Blake Date: Mon, 11 Aug 2014 15:42:45 -0600 Subject: [PATCH] docs: use correct hints per bus type in examples Commit 4cf53158 tried to set up unique labels per disk in the example, but ended up choosing strings that don't correspond to the usual choice of bus types. Tweak the strings once again. * docs/formatdomain.html.in: Use preferred names. Signed-off-by: Eric Blake --- docs/formatdomain.html.in | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/docs/formatdomain.html.in b/docs/formatdomain.html.in index 6b5df51a0f..bd99ae0cb2 100644 --- a/docs/formatdomain.html.in +++ b/docs/formatdomain.html.in @@ -1616,12 +1616,12 @@ <source dev='/dev/sda'/> <geometry cyls='16383' heads='16' secs='63' trans='lba'/> <blockio logical_block_size='512' physical_block_size='4096'/> - <target dev='sdb' bus='ide'/> + <target dev='hdj' bus='ide'/> </disk> <disk type='volume' device='disk'> <driver name='qemu' type='raw'/> <source pool='blk-pool0' volume='blk-pool0-vol0'/> - <target dev='sdc' bus='ide'/> + <target dev='hdk' bus='ide'/> </disk> <disk type='network' device='disk'> <driver name='qemu' type='raw'/> @@ -1641,7 +1641,7 @@ <auth username='myuser'> <secret type='iscsi' usage='libvirtiscsi'/> </auth> - <target dev='vdb' bus='scsi'/> + <target dev='sdb' bus='scsi'/> </disk> <disk type='volume' device='disk'> <driver name='qemu' type='raw'/> @@ -1649,7 +1649,7 @@ <auth username='myuser'> <secret type='iscsi' usage='libvirtiscsi'/> </auth> - <target dev='vdc' bus='virtio'/> + <target dev='vdb' bus='virtio'/> </disk> <disk type='volume' device='disk'> <driver name='qemu' type='raw'/> @@ -1657,7 +1657,7 @@ <auth username='myuser'> <secret type='iscsi' usage='libvirtiscsi'/> </auth> - <target dev='vdd' bus='virtio'/> + <target dev='vdc' bus='virtio'/> </disk> <disk type='file' device='disk'> <driver name='qemu' type='qcow2'/> @@ -1671,7 +1671,7 @@ <backingStore/> </backingStore> </backingStore> - <target dev='vde' bus='virtio'/> + <target dev='vdd' bus='virtio'/> </disk> </devices> ...