summaryrefslogtreecommitdiff
path: root/benches/dio-seqread
diff options
context:
space:
mode:
Diffstat (limited to 'benches/dio-seqread')
-rwxr-xr-xbenches/dio-seqread17
1 files changed, 17 insertions, 0 deletions
diff --git a/benches/dio-seqread b/benches/dio-seqread
new file mode 100755
index 0000000..afe904e
--- /dev/null
+++ b/benches/dio-seqread
@@ -0,0 +1,17 @@
+#!/bin/bash
+
+dd if=/dev/zero of=test bs=16M count=1024 oflag=direct 2>/dev/null
+
+#perf record -a -F max -o /root/perf.data -- \
+
+fio --group_reporting \
+ --runtime=210 \
+ --size=16G \
+ --name=dio-read \
+ --ioengine=libaio \
+ --direct=1 \
+ --iodepth=64 \
+ --rw=read \
+ --blocksize=128k \
+ --cpus_allowed=0 \
+ --filename=test