From 92e43e6d026b06d79ae156de511df1f024f4bf42 Mon Sep 17 00:00:00 2001 From: Soren Hansen Date: Tue, 10 Aug 2010 13:46:46 +0200 Subject: [PATCH] Add "ubd" to the list of disk prefixes virDiskNameToIndex has a list of disk name prefixes that it uses in the process of finding the disk's index. This list is missing "ubd" which is the disk prefix used for UML domains. Signed-off-by: Soren Hansen --- .mailmap | 1 + src/util/util.c | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/.mailmap b/.mailmap index 652c5856fa..824df36e33 100644 --- a/.mailmap +++ b/.mailmap @@ -13,3 +13,4 @@ + diff --git a/src/util/util.c b/src/util/util.c index 8f2a17e6f9..c173e491d0 100644 --- a/src/util/util.c +++ b/src/util/util.c @@ -2367,7 +2367,7 @@ const char *virEnumToString(const char *const*types, int virDiskNameToIndex(const char *name) { const char *ptr = NULL; int idx = 0; - static char const* const drive_prefix[] = {"fd", "hd", "vd", "sd", "xvd"}; + static char const* const drive_prefix[] = {"fd", "hd", "vd", "sd", "xvd", "ubd"}; unsigned int i; for (i = 0; i < ARRAY_CARDINALITY(drive_prefix); i++) {