configure: attempt to link against tcmalloc by default if available
[fio.git] / examples / cross-stripe-verify.fio
CommitLineData
58dc28f4
JA
1# Example of how to split a drive up into sections, manually, and perform
2# verify from a bunch of jobs. This example is special in that it assumes
3# the drive is at around 30 * 124G in size, so with the below settings, we'll
4# cover most of the drive. It's also special in that it doesn't write
5# everything, it just writes 16k at a specific boundary, for every 128k.
6# This is done to exercise the split path for Intel NVMe devices, most of
7# which have a 128k stripe size and require IOs to be split if the cross
8# the stripe boundary.
9#
10[global]
11bs=16k
12direct=1
13rw=write:112k
14verify=crc32c
15filename=/dev/nvme0n1
16verify_backlog=1
17offset_increment=124g
18io_size=120g
19offset=120k
20group_reporting=1
21verify_dump=1
22loops=2
23
24[write-verify]
25numjobs=30