Permalink
Cannot retrieve contributors at this time
Name already in use
A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
lktm/drivers/block/sampleblk/labs/lab1/fs_seq_write_sync_001
Go to fileThis commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
15 lines (12 sloc)
589 Bytes
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
; -- start job file -- | |
[global] ; global shared parameters | |
filename=/mnt/test ; location of file in file system | |
rw=write ; sequential write only, no read | |
ioengine=sync ; synchronized, write(2) system call | |
bs=,4k ; fio iounit size, write=4k, read and trim are default(4k) | |
iodepth=1 ; how many in-flight io unit | |
size=2M ; total size of file io in one job | |
loops=1000000 ; number of iterations of one job | |
[job1] ; job1 specific parameters | |
[job2] ; job2 specific parameters | |
; -- end job file -- |