Flexible I/O Tester development
 help / color / mirror / Atom feed
* Problem using --offset: fix call to fadvise64
@ 2012-07-18 17:56 Georg Schönberger
  2012-07-20 10:30 ` Georg Schönberger
  0 siblings, 1 reply; 4+ messages in thread
From: Georg Schönberger @ 2012-07-18 17:56 UTC (permalink / raw)
  To: fio@vger.kernel.org

Hello everybody,

I don't know if it is a bug but my usage of the offset parameter seems
not to work correctly. In detail the offset call works, but at a certain
size the call to "fadvise64" is no longer correct:
Here is the working offset:
# strace -o fio.out.working -f fio --rw=read --name=usb-stick --bs=1024k
--direct=1 --filename=/dev/sdb1 --runtime=10 --time_based --offset=1024
usb-stick: (g=0): rw=read, bs=1M-1M/1M-1M, ioengine=sync, iodepth=1
fio-2.0.8-2-gd3987
Starting 1 process
Jobs: 1 (f=1): [R] [100.0% done] [19320K/0K /s] [18 /0  iops] [eta 00m:00s]
usb-stick: (groupid=0, jobs=1): err= 0: pid=20570
  read : io=195584KB, bw=19492KB/s, iops=19 , runt= 10034msec
[...]
# grep fadvise fio.out.working
20570 fadvise64(3, 1024, 20970496, POSIX_FADV_SEQUENTIAL) = 0

With an offset more than half of the device, the overall device size is
no longer correct (should be 20970496 again):
# strace -o fio.out -f fio --rw=read --name=usb-stick --bs=1024k
--direct=1 --filename=/dev/sdb1 --runtime=10 --time_based --offset=10485760
usb-stick: (g=0): rw=read, bs=1M-1M/1M-1M, ioengine=sync, iodepth=1
fio-2.0.8-2-gd3987
Starting 1 process
Run status group 0 (all jobs):
Disk stats (read/write):
  sdb: ios=0/0, merge=0/0, ticks=0/0, in_queue=0, util=0.00%
# grep fadvise fio.out
20848 fadvise64(3, 10485760, 10485760, POSIX_FADV_SEQUENTIAL) = 0

As the call to fadvise64 is not correct (instead of 10485760 as the 3rd
parameter there should be 20970496) the job does not start.
I am using the latest fio version:
# fio --version
fio-2.0.8-9-gfb9f0

-Georg

^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2012-08-01  5:27 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2012-07-18 17:56 Problem using --offset: fix call to fadvise64 Georg Schönberger
2012-07-20 10:30 ` Georg Schönberger
2012-07-31 18:48   ` Jens Axboe
2012-08-01  5:26     ` Georg Schönberger

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox