Add support for spinlocks hyperv feature

This commit is contained in:
Zdenek Zambersky
2019-09-04 20:57:15 +02:00
parent 98ff2dfb51
commit 3b1b17a5c9
6 changed files with 22 additions and 4 deletions

View File

@@ -1258,6 +1258,8 @@ Vagrant.configure("2") do |config|
libvirt.hyperv_feature :name => 'relaxed', :state => 'on'
# Enable virtual APIC
libvirt.hyperv_feature :name => 'vapic', :state => 'on'
# Enable spinlocks (requires retries to be specified)
libvirt.hyperv_feature :name => 'spinlocks', :state => 'on', :retries => '8191'
end
end
```