
On Tue, Jun 14, 2016 at 22:29:36 +0200, Jovanka Gulicoska wrote:
Changes since v2: rename STORAGE_POOL_EVENT_SOURCES to STORAGE_EVENT_SOURCES, change copyright
Add storage event handling infrastructure to storage_event.[ch], following the network_event.[ch] pattern. --- src/Makefile.am | 5 + src/conf/storage_conf.h | 1 + src/conf/storage_event.c | 235 +++++++++++++++++++++++++++++++++++++++++++++++ src/conf/storage_event.h | 58 ++++++++++++ src/libvirt_private.syms | 5 + 5 files changed, 304 insertions(+) create mode 100644 src/conf/storage_event.c create mode 100644 src/conf/storage_event.h
diff --git a/src/conf/storage_conf.h b/src/conf/storage_conf.h index 54116a6..c803ccf 100644 --- a/src/conf/storage_conf.h +++ b/src/conf/storage_conf.h @@ -31,6 +31,7 @@ # include "virthread.h" # include "device_conf.h" # include "node_device_conf.h" +# include "object_event.h"
This include also belongs to the patch adding object events to the storage driver.
# include <libxml/tree.h>