mirror of https://gitee.com/openkylin/libvirt.git
remote: stop trying to load Xen driver module
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é <berrange@redhat.com>
This commit is contained in:
parent
419607c478
commit
87680332a3
src/remote
|
@ -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
|
||||
|
|
Loading…
Reference in New Issue