
# HG changeset patch # User Jay Gagnon <grendel@linux.vnet.ibm.com> # Date 1204900472 18000 # Node ID 38cd28b072e3416714053bd049c91a55fca9c0c3 # Parent 1990fcb31b29f8e5247bb42ae67e38131060d486 Convert CSMI for MigrationJob Nothing fancy here, just some filter updates. Signed-off-by: Jay Gagnon <grendel@linux.vnet.ibm.com> diff -r 1990fcb31b29 -r 38cd28b072e3 src/Virt_ComputerSystemMigrationIndication.c --- a/src/Virt_ComputerSystemMigrationIndication.c Fri Mar 07 09:34:29 2008 -0500 +++ b/src/Virt_ComputerSystemMigrationIndication.c Fri Mar 07 09:34:32 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, };