Add vhost-net to kvm.modules

This commit is contained in:
Justin M. Forbes 2012-01-27 13:37:44 -06:00
parent 4d9bbd115e
commit abd594bf31

View File

@ -3,9 +3,11 @@
if [ $(grep -c vmx /proc/cpuinfo) -ne 0 ]; then
modprobe -b kvm-intel >/dev/null 2>&1
modprobe -b virtio-net >/dev/null 2>&1
modprobe -b vhost-net >/dev/null 2>&1
fi
if [ $(grep -c svm /proc/cpuinfo) -ne 0 ]; then
modprobe -b kvm-amd >/dev/null 2>&1
modprobe -b virtio-net >/dev/null 2>&1
modprobe -b vhost-net >/dev/null 2>&1
fi