
# HG changeset patch # User Dan Smith <danms@us.ibm.com> # Date 1210267263 25200 # Node ID eece298b820b031be45dc5aca525a43a7bb029dd # Parent 7d8223bceaf3206b13443db42e95d9e505ce5ff7 Temporarily fall through on processor devices in DefineSystem() This is breaking tests just because it refuses a domain with processors defined. This will be replaced with Jay's processor support when it's ready. Signed-off-by: Dan Smith <danms@us.ibm.com> diff -r 7d8223bceaf3 -r eece298b820b src/Virt_VirtualSystemManagementService.c --- a/src/Virt_VirtualSystemManagementService.c Thu May 08 10:10:49 2008 -0700 +++ b/src/Virt_VirtualSystemManagementService.c Thu May 08 10:21:03 2008 -0700 @@ -457,6 +457,8 @@ static const char *_sysvirt_rasd_to_vdev return net_rasd_to_vdev(inst, dev); } else if (type == CIM_RES_TYPE_MEM) { return mem_rasd_to_vdev(inst, dev); + } else if (type == CIM_RES_TYPE_PROC) { + return NULL; /* FIXME: replace when processor is done */ } return "Resource type not supported on this platform";