
# HG changeset patch # User Dan Smith <danms@us.ibm.com> # Date 1214852563 25200 # Node ID 834563d8520b1876d99bf579cc3319b1dfa09795 # Parent 25963f4ea20e26b353d11d4d6f394ae38ce09e9e Make CSI declare support for KVM and LXC indications Signed-off-by: Dan Smith <danms@us.ibm.com> diff -r 25963f4ea20e -r 834563d8520b src/Virt_ComputerSystemIndication.c --- a/src/Virt_ComputerSystemIndication.c Mon Jun 30 12:02:42 2008 -0700 +++ b/src/Virt_ComputerSystemIndication.c Mon Jun 30 12:02:43 2008 -0700 @@ -505,11 +505,23 @@ DECLARE_FILTER(xen_created, "Xen_ComputerSystemCreatedIndication"); DECLARE_FILTER(xen_deleted, "Xen_ComputerSystemDeletedIndication"); DECLARE_FILTER(xen_modified, "Xen_ComputerSystemModifiedIndication"); +DECLARE_FILTER(kvm_created, "KVM_ComputerSystemCreatedIndication"); +DECLARE_FILTER(kvm_deleted, "KVM_ComputerSystemDeletedIndication"); +DECLARE_FILTER(kvm_modified, "KVM_ComputerSystemModifiedIndication"); +DECLARE_FILTER(lxc_created, "LXC_ComputerSystemCreatedIndication"); +DECLARE_FILTER(lxc_deleted, "LXC_ComputerSystemDeletedIndication"); +DECLARE_FILTER(lxc_modified, "LXC_ComputerSystemModifiedIndication"); static struct std_ind_filter *filters[] = { &xen_created, &xen_deleted, &xen_modified, + &kvm_created, + &kvm_deleted, + &kvm_modified, + &lxc_created, + &lxc_deleted, + &lxc_modified, NULL, };