[Libvirt-cim] [PATCH 2 of 5] SDC: adopt DevicePool interface change

Heidi Eckhart heidieck at linux.vnet.ibm.com
Mon Mar 3 13:02:12 UTC 2008


# HG changeset patch
# User Heidi Eckhart <heidieck at linux.vnet.ibm.com>
# Date 1204546145 -3600
# Node ID 0d2ac636d4463d881b1e200c44f1086411e5c074
# Parent  4748d0422f3891598680b74b3aa1bcb4acdcb9a1
SDC: adopt DevicePool interface change
Signed-off-by: Heidi Eckhart <heidieck at linux.vnet.ibm.com>

diff -r 4748d0422f38 -r 0d2ac636d446 src/Virt_SettingsDefineCapabilities.c
--- a/src/Virt_SettingsDefineCapabilities.c	Mon Mar 03 12:58:22 2008 +0100
+++ b/src/Virt_SettingsDefineCapabilities.c	Mon Mar 03 13:09:05 2008 +0100
@@ -529,13 +529,9 @@ static struct sdc_rasd_prop *disk_max(co
 
         /* Getting the relevant resource pool directly finds the free space 
            for us.  It is in the Capacity field. */
-        pool_inst = get_pool_by_id(_BROKER, conn, inst_id, NAMESPACE(ref));
-        if (pool_inst == NULL) {
-                cu_statusf(_BROKER, s, 
-                           CMPI_RC_ERR_FAILED,
-                           "Could not get pool instance");
-                goto out;
-        }
+        *s = get_pool_by_name(_BROKER, ref, inst_id, &pool_inst);
+        if (s->rc != CMPI_RC_OK)
+                goto out;
 
         prop_ret = cu_get_u64_prop(pool_inst, "Capacity", &free_64);
         if (prop_ret != CMPI_RC_OK) {




More information about the Libvirt-cim mailing list