[PATCH] Couple of MigrationIndication schema fixes

# HG changeset patch # User Jay Gagnon <grendel@linux.vnet.ibm.com> # Date 1204558449 18000 # Node ID c46cbe6df83682e9f1d762b4649f09a1daefe227 # Parent b5577ad78998fcf535b94ca0d2a1e8730720f3cf Couple of MigrationIndication schema fixes Turns out that pegasus needs things a bit more explicit than sfcb. Dan's changes are the first step to fixing it; this should be the rest. Also, the description has been listing the wrong provider for way too long, so that's fixed here too. Signed-off-by: Jay Gagnon <grendel@linux.vnet.ibm.com> diff -r b5577ad78998 -r c46cbe6df836 schema/ComputerSystemMigrationIndication.mof --- a/schema/ComputerSystemMigrationIndication.mof Thu Feb 28 10:30:05 2008 -0800 +++ b/schema/ComputerSystemMigrationIndication.mof Mon Mar 03 10:34:09 2008 -0500 @@ -1,15 +1,17 @@ // Copyright IBM Corp. 2007 [Description ("Xen_ComputerSystem migration status"), - Provider("cmpi::Virt_ComputerSystemModificationIndication") + Provider("cmpi::Virt_ComputerSystemMigrationIndication") ] class Xen_ComputerSystemMigrationIndication : CIM_InstModification { + uint32 RaiseIndication([IN] CIM_InstModification REF TheIndication); }; [Description ("KVM_ComputerSystem migration status"), - Provider("cmpi::Virt_ComputerSystemModificationIndication") + Provider("cmpi::Virt_ComputerSystemMigrationIndication") ] class KVM_ComputerSystemMigrationIndication : CIM_InstModification { + uint32 RaiseIndication([IN] CIM_InstModification REF TheIndication); };
participants (1)
-
Jay Gagnon