Am 1. Oktober 2010 18:57 schrieb Miguel Di Ciurcio Filho
<[email protected]>:
> 1) Document this as a requirement for enabling vhost, and the current
> behavior stays by default:
> gnt-cluster modify --hypervisor-parameters kvm:use_new_network=True
>
> 2) People upgrading need to set this for the old behavior:
> gnt-cluster modify --hypervisor-parameters kvm:use_legacy_network=True
Defaults shouldn't change unless there a really good reason for it.
Can't you do this depending on the KVM version in use instead of
requiring the user to change a setting?
hv_kvm:
…
if kvm_version > 0x…:
args.append("new networking")
else:
args.append("old stuff goes here")
Michael