[libvirt] [PATCH V3 3/3] Add uevent netlink service.

Tang Chen tangchen at cn.fujitsu.com
Wed Aug 22 04:10:25 UTC 2012


This patch adds a new netlink service with NETLINK_KOBJECT_UEVENT
protocol hotplug event.

Signed-off-by: Tang Chen <tangchen at cn.fujitsu.com>
---
 daemon/libvirtd.c |    6 ++++++
 1 file changed, 6 insertions(+)

diff --git a/daemon/libvirtd.c b/daemon/libvirtd.c
index 922c5b5..c0a2f03 100644
--- a/daemon/libvirtd.c
+++ b/daemon/libvirtd.c
@@ -1316,6 +1316,12 @@ int main(int argc, char **argv) {
         goto cleanup;
     }
 
+    /* Register the netlink event service for NETLINK_KOBJECT_UEVENT */
+    if (virNetlinkEventServiceStart(NETLINK_KOBJECT_UEVENT, 1) < 0) {
+        ret = VIR_DAEMON_ERR_NETWORK;
+        goto cleanup;
+    }
+
     /* Run event loop. */
     virNetServerRun(srv);
 
-- 
1.7.10.1




More information about the libvir-list mailing list