
# HG changeset patch # User Jay Gagnon <grendel@linux.vnet.ibm.com> # Date 1204903903 18000 # Node ID 93787c5830dee7da979937945c1e9437d4780f37 # Parent d5574570a60216eadfe3a641d7672b5e23e1d9eb Convert CSMI for MigrationJob Nothing fancy here, just some filter updates. Signed-off-by: Jay Gagnon <grendel@linux.vnet.ibm.com> diff -r d5574570a602 -r 93787c5830de src/Virt_ComputerSystemMigrationIndication.c --- a/src/Virt_ComputerSystemMigrationIndication.c Fri Mar 07 10:31:40 2008 -0500 +++ b/src/Virt_ComputerSystemMigrationIndication.c Fri Mar 07 10:31:43 2008 -0500 @@ -42,10 +42,14 @@ static const CMPIBroker *_BROKER; -DECLARE_FILTER(xen_migrate, "Xen_ComputerSystemMigrationIndication"); +DECLARE_FILTER(xen_created, "Xen_ComputerSystemMigrationJobCreatedIndication"); +DECLARE_FILTER(xen_mod, "Xen_ComputerSystemMigrationJobModifiedIndication"); +DECLARE_FILTER(xen_deleted, "Xen_ComputerSystemMigrationJobDeletedIndication"); static struct std_ind_filter *filters[] = { - &xen_migrate, + &xen_created, + &xen_mod, + &xen_deleted, NULL, };