aboutsummaryrefslogtreecommitdiff
path: root/daemon
diff options
context:
space:
mode:
Diffstat (limited to 'daemon')
-rw-r--r--daemon/libvirtd.c6
1 files changed, 6 insertions, 0 deletions
diff --git a/daemon/libvirtd.c b/daemon/libvirtd.c
index c7f8d3b74..19dd26bff 100644
--- a/daemon/libvirtd.c
+++ b/daemon/libvirtd.c
@@ -1318,6 +1318,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);