Skip to content

Commit 2037cee

Browse files
committed
fix(ci): try to improve performance
we are seeing a lot of `workqueue: ata_sff_pio_task hogged CPU for >10000us 4 times` which comes from the IDE Driver. Try if switching to virtio-blk speeds things up.
1 parent 3bf4e5d commit 2037cee

2 files changed

Lines changed: 4 additions & 4 deletions

File tree

.github/actions/test/integration/setup/hv.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
<disk type='file' device='disk'>
1616
<driver name='qemu' type='qcow2' />
1717
<source file='/var/lib/libvirt/images/HV_NAME_GOES_HERE.qcow2' />
18-
<target dev='hda' bus='ide' />
18+
<target dev='vda' bus='virtio' />
1919
</disk>
2020
<interface type='network'>
2121
<mac address='MAC_GOES_HERE' />

.github/actions/test/integration/test/qemu/vm.xml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,12 +15,12 @@
1515
<disk type='file' device='disk'>
1616
<driver name='qemu' type='qcow2' />
1717
<source file='/var/lib/libvirt/images/ubuntu.qcow2' />
18-
<target dev='hda' bus='ide' />
18+
<target dev='vda' bus='virtio' />
1919
</disk>
20-
<disk type='file' device='cdrom'>
20+
<disk type='file' device='disk'>
2121
<driver name='qemu' type='raw' />
2222
<source file='/var/lib/libvirt/images/ubuntu-cloud-init-ds.iso' />
23-
<target dev='hdb' bus='ide' />
23+
<target dev='vdb' bus='virtio' />
2424
<readonly />
2525
</disk>
2626
<interface type='network'>

0 commit comments

Comments
 (0)