From 415b92101ff1677c3281ee26ea9414e9a97bf238 Mon Sep 17 00:00:00 2001 From: Daniel Veillard Date: Wed, 13 Aug 2008 09:45:10 +0000 Subject: [PATCH] * docs/storage.html[.in] src/storage_backend_disk.c: revert previous msdos patch and apply new one from Cole Robinson daniel --- ChangeLog | 5 +++++ docs/storage.html | 4 ++-- docs/storage.html.in | 4 ++-- src/storage_backend_disk.c | 16 +++++++++------- 4 files changed, 18 insertions(+), 11 deletions(-) diff --git a/ChangeLog b/ChangeLog index 321669c245..2340922e66 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +Wed Aug 13 11:43:36 CEST 2008 Daniel Veillard + + * docs/storage.html[.in] src/storage_backend_disk.c: revert previous + msdos patch and apply new one from Cole Robinson + Tue Aug 12 19:37:23 CEST 2008 Jim Meyering rewrite virFileLinkPointsTo diff --git a/docs/storage.html b/docs/storage.html index 1b82b36862..d9d62f7353 100644 --- a/docs/storage.html +++ b/docs/storage.html @@ -331,7 +331,7 @@ libvirt. the common partition table types:

  • - msdos + dos
  • dvh
  • @@ -346,7 +346,7 @@ libvirt. sun

- The msdos or gpt formats are recommended for + The dos or gpt formats are recommended for best portability - the latter is needed for disks larger than 2TB.

Valid volume format types

diff --git a/docs/storage.html.in b/docs/storage.html.in index 8cab480b42..40e8e80da5 100644 --- a/docs/storage.html.in +++ b/docs/storage.html.in @@ -258,7 +258,7 @@ libvirt.

  • - msdos + dos
  • dvh @@ -280,7 +280,7 @@ libvirt.

- The msdos or gpt formats are recommended for + The dos or gpt formats are recommended for best portability - the latter is needed for disks larger than 2TB.

diff --git a/src/storage_backend_disk.c b/src/storage_backend_disk.c index d7d7514795..b3e669266b 100644 --- a/src/storage_backend_disk.c +++ b/src/storage_backend_disk.c @@ -29,7 +29,7 @@ #include "memory.h" enum { - VIR_STORAGE_POOL_DISK_MSDOS = 0, + VIR_STORAGE_POOL_DISK_DOS = 0, VIR_STORAGE_POOL_DISK_DVH, VIR_STORAGE_POOL_DISK_GPT, VIR_STORAGE_POOL_DISK_MAC, @@ -64,10 +64,10 @@ static int virStorageBackendDiskPoolFormatFromString(virConnectPtr conn, const char *format) { if (format == NULL) - return VIR_STORAGE_POOL_DISK_MSDOS; + return VIR_STORAGE_POOL_DISK_DOS; - if (STREQ(format, "msdos")) - return VIR_STORAGE_POOL_DISK_MSDOS; + if (STREQ(format, "dos")) + return VIR_STORAGE_POOL_DISK_DOS; if (STREQ(format, "dvh")) return VIR_STORAGE_POOL_DISK_DVH; if (STREQ(format, "gpt")) @@ -90,8 +90,8 @@ static const char * virStorageBackendDiskPoolFormatToString(virConnectPtr conn, int format) { switch (format) { - case VIR_STORAGE_POOL_DISK_MSDOS: - return "msdos"; + case VIR_STORAGE_POOL_DISK_DOS: + return "dos"; case VIR_STORAGE_POOL_DISK_DVH: return "dvh"; case VIR_STORAGE_POOL_DISK_GPT: @@ -407,7 +407,9 @@ virStorageBackendDiskBuildPool(virConnectPtr conn, pool->def->source.devices[0].path, "mklabel", "--script", - virStorageBackendDiskPoolFormatToString(conn, pool->def->source.format), + ((pool->def->source.format == VIR_STORAGE_POOL_DISK_DOS) ? "msdos" : + virStorageBackendDiskPoolFormatToString(conn, + pool->def->source.format)), NULL, };