From 87680332a3fcfca1985651ef8f820bc2fe5e608b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Daniel=20P=2E=20Berrang=C3=A9?= Date: Thu, 19 Apr 2018 17:12:44 +0100 Subject: [PATCH] remote: stop trying to load Xen driver module MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The Xen driver was recently deleted, but libvirtd has left over code that tries to use it. Fortunately this is dead code because WITH_XEN will never be defined anymore. Signed-off-by: Daniel P. Berrangé --- src/remote/remote_daemon.c | 3 --- 1 file changed, 3 deletions(-) diff --git a/src/remote/remote_daemon.c b/src/remote/remote_daemon.c index 31c6ce1b61..3e02297eee 100644 --- a/src/remote/remote_daemon.c +++ b/src/remote/remote_daemon.c @@ -328,9 +328,6 @@ static void daemonInitialize(void) #ifdef WITH_NWFILTER VIR_DAEMON_LOAD_MODULE(nwfilterRegister, "nwfilter"); #endif -#ifdef WITH_XEN - VIR_DAEMON_LOAD_MODULE(xenRegister, "xen"); -#endif #ifdef WITH_LIBXL VIR_DAEMON_LOAD_MODULE(libxlRegister, "libxl"); #endif