Skip to content

Commit c4e3a97

Browse files
committed
hack: enable PCI by default to do A/B test with PCI
This allows me to point the CI to this commit and run the performance tests with PCI support. Signed-off-by: Riccardo Mancini <[email protected]>
1 parent da4076d commit c4e3a97

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/vmm/src/builder.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -570,7 +570,7 @@ pub fn build_microvm_for_boot(
570570
vm_resources.vm_config.track_dirty_pages,
571571
vm_resources.vm_config.vcpu_count,
572572
cpu_template.kvm_capabilities.clone(),
573-
vm_resources.pci_config.as_ref().map(|x| x.enabled).unwrap_or(false),
573+
vm_resources.pci_config.as_ref().map(|x| x.enabled).unwrap_or(true),
574574
)?;
575575

576576
#[cfg(feature = "gdb")]

0 commit comments

Comments
 (0)