engines/libblkio: Add options for some driver-specific properties
[fio.git] / examples / libblkio-virtio-blk-vfio-pci.fio
1 ; Benchmark accessing a PCI virtio-blk device using libblkio.
2 ;
3 ; Replace "/sys/bus/pci/devices/0000:00:01.0" below with the path to your
4 ; device's sysfs directory, or override it by passing the '--libblkio_path=...'
5 ; flag to fio.
6 ;
7 ; For information on libblkio, see: https://gitlab.com/libblkio/libblkio
8
9 [global]
10 ioengine=libblkio
11 libblkio_driver=virtio-blk-vfio-pci
12 libblkio_path=/sys/bus/pci/devices/0000:00:01.0  ; REPLACE THIS WITH THE RIGHT PATH
13 rw=randread
14 blocksize=4k
15 time_based=1
16 runtime=10s
17
18 [job]