fio.git
11 years agoFix bug with rate and read/write mixed workloads at 100% bias
Jens Axboe [Thu, 7 Feb 2013 18:55:24 +0000 (19:55 +0100)]
Fix bug with rate and read/write mixed workloads at 100% bias

The rate_ddir() might sometimes decide to send the other data
direction, even if we have a workload with rw=randrw and
rwmixread=0. Check for this condition.

Signed-off-by: Jens Axboe <axboe@kernel.dk>
11 years agot/log: include minmax.h for min()
Jens Axboe [Thu, 7 Feb 2013 14:40:48 +0000 (15:40 +0100)]
t/log: include minmax.h for min()

Signed-off-by: Jens Axboe <axboe@kernel.dk>
11 years agoMakfile: use LINK for the link phase
Jens Axboe [Thu, 7 Feb 2013 14:40:37 +0000 (15:40 +0100)]
Makfile: use LINK for the link phase

Signed-off-by: Jens Axboe <axboe@kernel.dk>
11 years agoFix zones for numjobs=x, where x > 1
Jens Axboe [Thu, 7 Feb 2013 12:06:18 +0000 (13:06 +0100)]
Fix zones for numjobs=x, where x > 1

In the options fixup, we auto-set open_files to 1 if it hasn't been set.
So any duplicated jobs will clear the zone. Fixup the check to properly
check for > 1 open files.

Signed-off-by: Jens Axboe <axboe@kernel.dk>
11 years agostat: fix wrong type used for 32-bit compiles
Jens Axboe [Thu, 7 Feb 2013 11:56:09 +0000 (12:56 +0100)]
stat: fix wrong type used for 32-bit compiles

Signed-off-by: Jens Axboe <axboe@kernel.dk>
11 years agoFix crash and precision of ETA with zones
Jens Axboe [Thu, 7 Feb 2013 11:54:10 +0000 (12:54 +0100)]
Fix crash and precision of ETA with zones

If zonesize was bigger than zoneskip, we could encounter a divide by
zero when calculating the number of bytes.

Additionally, the math was just wrong for most cases of zone settings.
Improve that.

Signed-off-by: Jens Axboe <axboe@kernel.dk>
11 years agoWindows: fix mlock, remove ftruncate and fix error handling.
Bruce Cran [Wed, 6 Feb 2013 23:55:46 +0000 (23:55 +0000)]
Windows: fix mlock, remove ftruncate and fix error handling.

Functions in posix.c need to use win_to_posix_err to convert errors from
Windows API calls to their equivalent POSIX error code so perror etc.
work: move it into posix.c and add the prototype to posix.h.

Fix error handling so -1 is always returned on error and errno is set.

Fix mlock to work with sizes greater than about 1MB: the working set size
needs to be increased for the new allocation.

Remove ftruncate from posix.c, since MinGW already provides it.

Signed-off-by: Jens Axboe <axboe@kernel.dk>
11 years agoWindows: fix sysconf(_SC_PHYS_PAGES).
Bruce Cran [Wed, 6 Feb 2013 20:27:27 +0000 (20:27 +0000)]
Windows: fix sysconf(_SC_PHYS_PAGES).

sysconf(_SC_PHYS_PAGES) was returning the number of bytes of memory
instead of the number of pages. Also improve some error messages in
sysconf(). Update os_phys_mem() to use sysconf().

Signed-off-by: Jens Axboe <axboe@kernel.dk>
11 years agoGet rid of fallocate on Windows
Jens Axboe [Wed, 6 Feb 2013 12:52:12 +0000 (13:52 +0100)]
Get rid of fallocate on Windows

Fallocate is only useful if it is a fast operation, helping the
file system allocate and setup meta data for the given size.
So don't punt to zero filling the entire thing.

Signed-off-by: Jens Axboe <axboe@kernel.dk>
11 years agoHandle normal output wrapping of the percentile list
Jens Axboe [Wed, 6 Feb 2013 07:51:57 +0000 (08:51 +0100)]
Handle normal output wrapping of the percentile list

Signed-off-by: Jens Axboe <axboe@kernel.dk>
11 years agoCleanup the percentile output formatting
Jens Axboe [Wed, 6 Feb 2013 07:46:55 +0000 (08:46 +0100)]
Cleanup the percentile output formatting

Signed-off-by: Jens Axboe <axboe@kernel.dk>
11 years agoHandle percentile lists with higher precision that 2 digits
Vincent Kang Fu [Wed, 6 Feb 2013 07:43:40 +0000 (08:43 +0100)]
Handle percentile lists with higher precision that 2 digits

We cap the output at %2.2f right now, that's not always enough.
Make the parser check and store the precision required to
output the list correctly.

Signed-off-by: Jens Axboe <axboe@kernel.dk>
11 years agoAdd --build-32bit-win switch to configure --help output.
Bruce Cran [Tue, 5 Feb 2013 17:44:19 +0000 (17:44 +0000)]
Add --build-32bit-win switch to configure --help output.

Signed-off-by: Jens Axboe <axboe@kernel.dk>
11 years agowindowsaio: fix file header format and improve error reporting.
Bruce Cran [Tue, 5 Feb 2013 11:33:04 +0000 (11:33 +0000)]
windowsaio: fix file header format and improve error reporting.

Use the same file header format as other engines.
Remove the copyright line.
Add calls to log_err to improve error reporting.

Signed-off-by: Jens Axboe <axboe@kernel.dk>
11 years agoMakefile: fixup init.c dependency
Jens Axboe [Tue, 5 Feb 2013 10:03:12 +0000 (11:03 +0100)]
Makefile: fixup init.c dependency

Signed-off-by: Jens Axboe <axboe@kernel.dk>
11 years agoEnable forced 32-bit build on Windows
Huadong Liu [Tue, 5 Feb 2013 07:43:14 +0000 (08:43 +0100)]
Enable forced 32-bit build on Windows

Signed-off-by: Jens Axboe <axboe@kernel.dk>
11 years agoFix copy/paste error in windowsaio register/unregister function names.
Bruce Cran [Tue, 5 Feb 2013 00:56:59 +0000 (00:56 +0000)]
Fix copy/paste error in windowsaio register/unregister function names.

Signed-off-by: Jens Axboe <axboe@kernel.dk>
11 years agoUpdate the Windows installer
Bruce Cran [Mon, 4 Feb 2013 12:50:51 +0000 (13:50 +0100)]
Update the Windows installer

Update the EULA copyright year to 2013, auto-generate the product ID,
remove the comment field and allow per-user installs.

Signed-off-by: Jens Axboe <axboe@kernel.dk>
11 years agogettime: fixup AMD constant TSC detection
Jens Axboe [Sun, 3 Feb 2013 19:54:26 +0000 (20:54 +0100)]
gettime: fixup AMD constant TSC detection

Signed-off-by: Jens Axboe <axboe@kernel.dk>
11 years agoFix failure to exit IO loop on some IO sizes
Jens Axboe [Sun, 3 Feb 2013 13:20:44 +0000 (14:20 +0100)]
Fix failure to exit IO loop on some IO sizes

If the size of a file isn't a multiple of the block size being
used, it can cause fio to exit the IO loop, check bytes done,
and then decide to do one more loop since we didn't do quite
as much IO as we wanted to. This happens because the minimum
block size is larger than the remainder. So check for that,
and stop if we need to.

Signed-off-by: Jens Axboe <axboe@kernel.dk>
11 years agoUpdate the Windows section of the README file.
Bruce Cran [Sat, 2 Feb 2013 15:12:41 +0000 (15:12 +0000)]
Update the Windows section of the README file.

The 64-bit Windows build instructions can be simplified since Cygwin
includes all the required MinGW64 packages. Also, the pthread DLL is
available as an individual download.

Update the WiX Toolset version to 3.7 and fix the URL since it's no
longer hosted at Sourceforge.

Signed-off-by: Jens Axboe <axboe@kernel.dk>
11 years agoRemove duplicated Windows configure options.
Bruce Cran [Sat, 2 Feb 2013 20:59:31 +0000 (20:59 +0000)]
Remove duplicated Windows configure options.

Signed-off-by: Jens Axboe <axboe@kernel.dk>
11 years agoDefault to CS_GTOD if CONFIG_CLOCK_GETTIME isn't defined.
Bruce Cran [Sat, 2 Feb 2013 20:54:36 +0000 (20:54 +0000)]
Default to CS_GTOD if CONFIG_CLOCK_GETTIME isn't defined.

Defaulting the clock source to CS_CGETTIME broke on OS X because it
doesn't have clock_gettime. Use CS_GTOD if CONFIG_CLOCK_GETTIME isn't
defined.

Signed-off-by: Jens Axboe <axboe@kernel.dk>
11 years agovalues.h is obsolete: use float.h and DBL_MIN/MAX instead.
Bruce Cran [Sat, 2 Feb 2013 14:31:24 +0000 (14:31 +0000)]
values.h is obsolete: use float.h and DBL_MIN/MAX instead.

Signed-off-by: Jens Axboe <axboe@kernel.dk>
11 years agoclock: hardwire tsc as unreliable on Solaris for now
Jens Axboe [Sat, 2 Feb 2013 09:05:07 +0000 (10:05 +0100)]
clock: hardwire tsc as unreliable on Solaris for now

Need to double check the cpuid test, it probably only is reliable
on Intel. Need to check the CPU vendor and flags appropriately.

Signed-off-by: Jens Axboe <axboe@kernel.dk>
11 years agoparse: use MIN/MAXDOUBLE instead of some representation of NAN
Jens Axboe [Sat, 2 Feb 2013 08:56:23 +0000 (09:56 +0100)]
parse: use MIN/MAXDOUBLE instead of some representation of NAN

Doesn't always work for C99.

Signed-off-by: Jens Axboe <axboe@kernel.dk>
11 years agoFix percentile_list option
Vincent Kang Fu [Sat, 2 Feb 2013 08:28:55 +0000 (09:28 +0100)]
Fix percentile_list option

Commit 802ad4a8 broke the parsing of the percentile list,
by neglecting to change the parser type fo a fio_fp64_t.

Also get rid of the def_percentile_list, just set the
default percentile list as the option default.

Signed-off-by: Jens Axboe <axboe@kernel.dk>
11 years agoMakefile: fixup dependency problem for files in sub dirs
Jens Axboe [Fri, 1 Feb 2013 14:51:23 +0000 (15:51 +0100)]
Makefile: fixup dependency problem for files in sub dirs

Signed-off-by: Jens Axboe <axboe@kernel.dk>
11 years agoREADME: how to compile fio on Windows 64 bits
Neto, Antonio Jose Rodrigues [Fri, 1 Feb 2013 07:30:38 +0000 (08:30 +0100)]
README: how to compile fio on Windows 64 bits

Signed-off-by: Jens Axboe <axboe@kernel.dk>
11 years agoAllow override of CFLAGS
David M. Lee [Thu, 31 Jan 2013 17:37:41 +0000 (18:37 +0100)]
Allow override of CFLAGS

If you attempt to specify your own CFLAGS on the command line (such as
make CFLAGS="--whatever"), this would prevent -DFIO_VERSION from being
added to CFLAGS. This patch uses the override directive to allow the
flag to be appended to CFLAGS.

Signed-off-by: Jens Axboe <axboe@kernel.dk>
11 years agoOnly disable stdout ETA output if results are going to stdout
Jens Axboe [Thu, 31 Jan 2013 14:24:34 +0000 (15:24 +0100)]
Only disable stdout ETA output if results are going to stdout

If they are being redirected to a file with --output, then
we can still use the normal runtime ETA output on stdout.

Signed-off-by: Jens Axboe <axboe@kernel.dk>
11 years agonet: 'nodelay' HOWTO/man page update
Jens Axboe [Thu, 31 Jan 2013 12:33:45 +0000 (13:33 +0100)]
net: 'nodelay' HOWTO/man page update

Signed-off-by: Jens Axboe <axboe@kernel.dk>
11 years agoconfigure: add TCP_NODELAY check
Jens Axboe [Thu, 31 Jan 2013 09:19:51 +0000 (10:19 +0100)]
configure: add TCP_NODELAY check

Signed-off-by: Jens Axboe <axboe@kernel.dk>
11 years agowindows: fix typo in <netinet/tcp.h> header
Jens Axboe [Thu, 31 Jan 2013 08:58:22 +0000 (09:58 +0100)]
windows: fix typo in <netinet/tcp.h> header

Signed-off-by: Jens Axboe <axboe@kernel.dk>
11 years agoFix bugs in [v]snprintf usage
Ken Raeburn [Wed, 30 Jan 2013 21:31:09 +0000 (22:31 +0100)]
Fix bugs in [v]snprintf usage

When calling snprintf, supply the full buffer size instead of
one byte less.

When using the returned length from vsnprintf for logging, don't write
more than the actual buffer size (minus one for the trailing \0), in
case the formatted string was truncated.

Signed-off-by: Jens Axboe <axboe@kernel.dk>
11 years agoAdd empty <netinet/tcp.h> for Windows
Jens Axboe [Wed, 30 Jan 2013 20:54:58 +0000 (21:54 +0100)]
Add empty <netinet/tcp.h> for Windows

Signed-off-by: Jens Axboe <axboe@kernel.dk>
11 years agonet: fix compile warning on Windows (and others)
Jens Axboe [Wed, 30 Jan 2013 20:52:37 +0000 (21:52 +0100)]
net: fix compile warning on Windows (and others)

Signed-off-by: Jens Axboe <axboe@kernel.dk>
11 years agonet engine: implement option "nodelay" for TCP sockets
Steven Noonan [Wed, 28 Nov 2012 22:52:36 +0000 (14:52 -0800)]
net engine: implement option "nodelay" for TCP sockets

With disks, O_DIRECT effectively bypasses all buffering/caching mechanisms and
ensures that the I/O is going directly to the disk. Since TCP is a streaming
protocol (like disk I/O), it also has a buffering mechanism. As with disks, it
is sometimes desirable to bypass buffering. To that end, we can use
TCP_NODELAY, which transmits the packet as soon as data is assembled,
regardless of whether it occupies a full frame.

Signed-off-by: Steven Noonan <snoonan@amazon.com>
Signed-off-by: Jens Axboe <axboe@kernel.dk>
11 years agoidletime: style cleanups
Jens Axboe [Wed, 30 Jan 2013 13:08:00 +0000 (14:08 +0100)]
idletime: style cleanups

Signed-off-by: Jens Axboe <axboe@kernel.dk>
11 years agoconfigure: add SCHED_IDLE check
Jens Axboe [Wed, 30 Jan 2013 12:58:58 +0000 (13:58 +0100)]
configure: add SCHED_IDLE check

We can't consider it always available on Linux. It fails on
Debian 6.x, for instance.

Signed-off-by: Jens Axboe <axboe@kernel.dk>
11 years agoAdd support for idletime profiling
Huadong Liu [Wed, 30 Jan 2013 12:22:24 +0000 (13:22 +0100)]
Add support for idletime profiling

Idletime profiling allows a benchmark to run while filling the
idle cycles on the server, hence giving you some metric of how
much pressure the system is under. This is useful to be able
to profile and compare changes in a setup or driver, for instance.

Signed-off-by: Jens Axboe <axboe@kernel.dk>
11 years agoAdd unified_rw_reporting option
Jens Axboe [Wed, 30 Jan 2013 11:56:23 +0000 (12:56 +0100)]
Add unified_rw_reporting option

If this is set, then fio will sum and display just a single set
of statistics for any IO type. By default, fio accounts and reports
each data direction separately.

Signed-off-by: Jens Axboe <axboe@kernel.dk>
11 years agoHOWTO: indentation fix
Jens Axboe [Wed, 30 Jan 2013 11:53:55 +0000 (12:53 +0100)]
HOWTO: indentation fix

Signed-off-by: Jens Axboe <axboe@kernel.dk>
11 years agosmalloc: alloc failure cleanups
Jens Axboe [Tue, 29 Jan 2013 21:29:09 +0000 (22:29 +0100)]
smalloc: alloc failure cleanups

Signed-off-by: Jens Axboe <axboe@kernel.dk>
11 years agoclient/server: fixup missing TRIM conversions
Jens Axboe [Tue, 29 Jan 2013 19:53:52 +0000 (20:53 +0100)]
client/server: fixup missing TRIM conversions

Signed-off-by: Jens Axboe <axboe@kernel.dk>
11 years agoFix crash with absurdly but not impossibly deeply nested device stacks
Ken Raeburn [Tue, 29 Jan 2013 09:18:13 +0000 (10:18 +0100)]
Fix crash with absurdly but not impossibly deeply nested device stacks

Use the proper PATH_MAX for the max path for disk util, and use
snprintf() to avoid potentially overwriting it.

Modified by Jens to return NULL instead of exiting.

Signed-off-by: Jens Axboe <axboe@kernel.dk>
11 years agoconfigure: enable --extra-cflags for Windows
Jens Axboe [Tue, 29 Jan 2013 09:06:30 +0000 (10:06 +0100)]
configure: enable --extra-cflags for Windows

Add configure help as well.

Signed-off-by: Jens Axboe <axboe@kernel.dk>
11 years agoconfigure: add --extra-cflags
Jens Axboe [Tue, 29 Jan 2013 08:26:07 +0000 (09:26 +0100)]
configure: add --extra-cflags

And ensure that -D_GNU_SOURCE is being set for configure test
programs too.

Signed-off-by: Jens Axboe <axboe@kernel.dk>
11 years agoFix Windows build by defining clock sources and adding include file.
Bruce Cran [Mon, 28 Jan 2013 16:07:15 +0000 (16:07 +0000)]
Fix Windows build by defining clock sources and adding include file.

Signed-off-by: Jens Axboe <axboe@kernel.dk>
11 years agoAlways fsync if asked to
Jens Axboe [Sat, 26 Jan 2013 16:28:23 +0000 (09:28 -0700)]
Always fsync if asked to

Currently we don't fsync() is direct IO is issued. But if the
user asked for fsync(), he should get an fsync. So remove this
restriction.

Reported-by: Stefan Hajnoczi <stefanha@gmail.com>
Signed-off-by: Jens Axboe <axboe@kernel.dk>
11 years agoFix getopt def check
Jens Axboe [Fri, 25 Jan 2013 21:36:46 +0000 (14:36 -0700)]
Fix getopt def check

Signed-off-by: Jens Axboe <axboe@kernel.dk>
11 years agoconfigure: HPUX warning for empty CC
Jens Axboe [Fri, 25 Jan 2013 21:35:27 +0000 (14:35 -0700)]
configure: HPUX warning for empty CC

Signed-off-by: Jens Axboe <axboe@kernel.dk>
11 years agoMakefile: remove config-host.ld
Jens Axboe [Fri, 25 Jan 2013 15:52:43 +0000 (08:52 -0700)]
Makefile: remove config-host.ld

Signed-off-by: Jens Axboe <axboe@kernel.dk>
11 years agoconfigure: add configure header to config-host.h
Jens Axboe [Fri, 25 Jan 2013 15:52:28 +0000 (08:52 -0700)]
configure: add configure header to config-host.h

Signed-off-by: Jens Axboe <axboe@kernel.dk>
11 years agoconfigure: auto-generate a config-host.h
Jens Axboe [Fri, 25 Jan 2013 06:07:55 +0000 (23:07 -0700)]
configure: auto-generate a config-host.h

Don't have all these special cases to convert a .mak to a .h define,
just generate it from the configure script instead.

Signed-off-by: Jens Axboe <axboe@kernel.dk>
11 years agoDrop EXTFLAG and lib references
Jens Axboe [Thu, 24 Jan 2013 22:38:37 +0000 (15:38 -0700)]
Drop EXTFLAG and lib references

They are picked up automatically now.

Signed-off-by: Jens Axboe <axboe@kernel.dk>
11 years agoconfigure: kill windows FIO_HAVE_FDATASYNC
Jens Axboe [Thu, 24 Jan 2013 22:35:17 +0000 (15:35 -0700)]
configure: kill windows FIO_HAVE_FDATASYNC

Signed-off-by: Jens Axboe <axboe@kernel.dk>
11 years agoconfigure: solaris and windowsaio fixups
Jens Axboe [Thu, 24 Jan 2013 22:33:33 +0000 (15:33 -0700)]
configure: solaris and windowsaio fixups

Signed-off-by: Jens Axboe <axboe@kernel.dk>
11 years agooptions: add help to experimental_verify
Jens Axboe [Thu, 24 Jan 2013 22:29:58 +0000 (15:29 -0700)]
options: add help to experimental_verify

Option help is required...

Signed-off-by: Jens Axboe <axboe@kernel.dk>
11 years agoconfigure: fix more old FIO_HAVE_ checks
Jens Axboe [Thu, 24 Jan 2013 22:27:40 +0000 (15:27 -0700)]
configure: fix more old FIO_HAVE_ checks

Signed-off-by: Jens Axboe <axboe@kernel.dk>
11 years agoNAN: use __builtin_nanf() if not available
Jens Axboe [Thu, 24 Jan 2013 22:22:20 +0000 (15:22 -0700)]
NAN: use __builtin_nanf() if not available

Signed-off-by: Jens Axboe <axboe@kernel.dk>
11 years agohash: make 64-bit type ULL
Jens Axboe [Thu, 24 Jan 2013 22:21:04 +0000 (15:21 -0700)]
hash: make 64-bit type ULL

Signed-off-by: Jens Axboe <axboe@kernel.dk>
11 years agoCorrect ifdef checks for posix and linux fallocate
Jens Axboe [Thu, 24 Jan 2013 22:00:25 +0000 (15:00 -0700)]
Correct ifdef checks for posix and linux fallocate

Signed-off-by: Jens Axboe <axboe@kernel.dk>
11 years agoconfigure: add that windows has RUSGE_THREAD
Jens Axboe [Thu, 24 Jan 2013 21:53:47 +0000 (14:53 -0700)]
configure: add that windows has RUSGE_THREAD

Signed-off-by: Jens Axboe <axboe@kernel.dk>
11 years agoAdd lib/getrusage.c
Jens Axboe [Thu, 24 Jan 2013 21:20:09 +0000 (14:20 -0700)]
Add lib/getrusage.c

Abstract out the SELF/THREAD complication.

Signed-off-by: Jens Axboe <axboe@kernel.dk>
11 years agoUse RUSAGE_THREAD, if available
Huadong Liu [Thu, 24 Jan 2013 21:07:20 +0000 (14:07 -0700)]
Use RUSAGE_THREAD, if available

Signed-off-by: Jens Axboe <axboe@kernel.dk>
11 years agoinit: complain on unrecognized option with builtin getopt_long_only()
Jens Axboe [Thu, 24 Jan 2013 01:11:48 +0000 (18:11 -0700)]
init: complain on unrecognized option with builtin getopt_long_only()

It returns '?' for a bad option, whereas the glibc one does
not. Catch that so we behave identically.

Signed-off-by: Jens Axboe <axboe@kernel.dk>
11 years agoFix compile warnings on Windows
Jens Axboe [Thu, 24 Jan 2013 00:21:41 +0000 (17:21 -0700)]
Fix compile warnings on Windows

Signed-off-by: Jens Axboe <axboe@kernel.dk>
11 years agowindows: don't provide strsep(), fio already has one
Jens Axboe [Wed, 23 Jan 2013 23:28:24 +0000 (16:28 -0700)]
windows: don't provide strsep(), fio already has one

Signed-off-by: Jens Axboe <axboe@kernel.dk>
11 years agoconfigure: add default compiler on Windows
Jens Axboe [Wed, 23 Jan 2013 23:26:12 +0000 (16:26 -0700)]
configure: add default compiler on Windows

Signed-off-by: Jens Axboe <axboe@kernel.dk>
11 years agoconfigure: fixup Windows
Jens Axboe [Wed, 23 Jan 2013 23:23:48 +0000 (16:23 -0700)]
configure: fixup Windows

Signed-off-by: Jens Axboe <axboe@kernel.dk>
11 years agoconfigure: add endian check
Jens Axboe [Wed, 23 Jan 2013 22:42:16 +0000 (15:42 -0700)]
configure: add endian check

Will remove guesswork and manual hacking in the OS headers.

Signed-off-by: Jens Axboe <axboe@kernel.dk>
11 years agoKill now unneeded clock definitions
Jens Axboe [Wed, 23 Jan 2013 22:29:59 +0000 (15:29 -0700)]
Kill now unneeded clock definitions

Signed-off-by: Jens Axboe <axboe@kernel.dk>
11 years agoOSX: Fixup warnings and clock_gettime() bug
Jens Axboe [Wed, 23 Jan 2013 21:02:23 +0000 (14:02 -0700)]
OSX: Fixup warnings and clock_gettime() bug

Signed-off-by: Jens Axboe <axboe@kernel.dk>
11 years agoconfigure: remember to output CC for windows
Jens Axboe [Wed, 23 Jan 2013 20:51:39 +0000 (13:51 -0700)]
configure: remember to output CC for windows

Signed-off-by: Jens Axboe <axboe@kernel.dk>
11 years agoconfigure: add --cc= option to script
Jens Axboe [Wed, 23 Jan 2013 20:47:54 +0000 (13:47 -0700)]
configure: add --cc= option to script

Get rid of uname -o usage for Windows, and specifically require
CC=bla ./configure or ./configure --cc=bla to set something else
than gcc.

Signed-off-by: Jens Axboe <axboe@kernel.dk>
11 years agoFix 32-bit compile warning in should_check_rate()
Jens Axboe [Wed, 23 Jan 2013 20:35:14 +0000 (13:35 -0700)]
Fix 32-bit compile warning in should_check_rate()

Introduced with the change from unsigned long -> uint64_T

Signed-off-by: Jens Axboe <axboe@kernel.dk>
11 years agot/axmap: update to catch recent bugs
Jens Axboe [Wed, 23 Jan 2013 18:02:07 +0000 (11:02 -0700)]
t/axmap: update to catch recent bugs

Also properly include axmap.h and don't declare our own prototypes.

Signed-off-by: Jens Axboe <axboe@kernel.dk>
11 years agoaxmap: ensure that we never return a value that is larger than the map size
Jens Axboe [Wed, 23 Jan 2013 18:01:09 +0000 (11:01 -0700)]
axmap: ensure that we never return a value that is larger than the map size

Signed-off-by: Jens Axboe <axboe@kernel.dk>
11 years agoaxmap: improve axmap_find_first_free()
Jens Axboe [Wed, 23 Jan 2013 17:33:20 +0000 (10:33 -0700)]
axmap: improve axmap_find_first_free()

Add a ret variable, saves a branch on return.

Signed-off-by: Jens Axboe <axboe@kernel.dk>
11 years agoverify: stop on actual number of bytes needed to be verified
Jens Axboe [Wed, 23 Jan 2013 17:15:57 +0000 (10:15 -0700)]
verify: stop on actual number of bytes needed to be verified

If we don't use LFSR or a random map, we don't get told when
to stop by the random generator or map. So track it on the
side, using the same mechanism as do_io().

Signed-off-by: Jens Axboe <axboe@kernel.dk>
11 years agoaxmap: fix bug in axmap_find_first_free()
Jens Axboe [Wed, 23 Jan 2013 17:15:05 +0000 (10:15 -0700)]
axmap: fix bug in axmap_find_first_free()

If the map is completely full, we could return an invalid value
for the first free bit. So check if we actually found a match,
return failure if we didn't.

Signed-off-by: Jens Axboe <axboe@kernel.dk>
11 years agoMake experimental_verify=1 handle all cases properly
Jens Axboe [Wed, 23 Jan 2013 16:27:25 +0000 (09:27 -0700)]
Make experimental_verify=1 handle all cases properly

- Don't track written bytes, just replay the workload by resetting
  all the random generators. This should work for any mixture of IO.

- Handle trims for verify.

- Ensure that rwmix is replayed properly for verify.

- Fixup logging for replay.

Signed-off-by: Jens Axboe <axboe@kernel.dk>
11 years agoEnsure all random seeds are repeatable for randrepeat=1
Jens Axboe [Wed, 23 Jan 2013 16:26:53 +0000 (09:26 -0700)]
Ensure all random seeds are repeatable for randrepeat=1

Currently we only do the offset.

Signed-off-by: Jens Axboe <axboe@kernel.dk>
11 years agoeta: improve accuracy for rwmix workloads and verify
Jens Axboe [Wed, 23 Jan 2013 15:40:11 +0000 (08:40 -0700)]
eta: improve accuracy for rwmix workloads and verify

We assume 50/50 for mixed workloads. That's silly, use the actual
number specified instead.

Signed-off-by: Jens Axboe <axboe@kernel.dk>
11 years agoUse unsigned long long for the uint64_t type
Jens Axboe [Mon, 21 Jan 2013 19:30:34 +0000 (12:30 -0700)]
Use unsigned long long for the uint64_t type

Signed-off-by: Jens Axboe <axboe@kernel.dk>
11 years agowindows: use hweight64(), it's a 64-bit type
Jens Axboe [Mon, 21 Jan 2013 19:28:42 +0000 (12:28 -0700)]
windows: use hweight64(), it's a 64-bit type

Courtesy of Bruce.

Signed-off-by: Jens Axboe <axboe@kernel.dk>
11 years agoAdd hweight64()
Jens Axboe [Mon, 21 Jan 2013 19:28:23 +0000 (12:28 -0700)]
Add hweight64()

Signed-off-by: Jens Axboe <axboe@kernel.dk>
11 years agoFix _SC_NPROCESSORS_ONLN on Windows
Bruce Cran [Mon, 21 Jan 2013 17:57:59 +0000 (10:57 -0700)]
Fix _SC_NPROCESSORS_ONLN on Windows

_SC_NPROCESSORS_ONLN was returning the wrong value on Windows because
GetLogicalProcessorInformation() returns data about caches, nodes and
packages in addition to processors.

Modified by Jens to use hweight32()

Signed-off-by: Jens Axboe <axboe@kernel.dk>
11 years agoAdd generic hweight helpers
Jens Axboe [Mon, 21 Jan 2013 17:55:02 +0000 (10:55 -0700)]
Add generic hweight helpers

Signed-off-by: Jens Axboe <axboe@kernel.dk>
11 years agoverify: add new experimental mode that requires no meta data
Jens Axboe [Mon, 21 Jan 2013 16:47:03 +0000 (09:47 -0700)]
verify: add new experimental mode that requires no meta data

Should work fine, but we need to account and track trims to know
which blocks NOT to verify (or verify as zero).

Signed-off-by: Jens Axboe <axboe@kernel.dk>
11 years agoRe-seed random generator when a file is reset
Jens Axboe [Mon, 21 Jan 2013 16:46:06 +0000 (09:46 -0700)]
Re-seed random generator when a file is reset

Signed-off-by: Jens Axboe <axboe@kernel.dk>
11 years agoaxmap: clear map->first_free when we reset it
Jens Axboe [Mon, 21 Jan 2013 16:43:30 +0000 (09:43 -0700)]
axmap: clear map->first_free when we reset it

Otherwise it could be left at an invalid value. When we clear the map,
we know the first free bit is 0.

Signed-off-by: Jens Axboe <axboe@kernel.dk>
11 years agolfsr: add lfsr_reset()
Jens Axboe [Mon, 21 Jan 2013 16:42:49 +0000 (09:42 -0700)]
lfsr: add lfsr_reset()

This enables us to restart a sequence.

Signed-off-by: Jens Axboe <axboe@kernel.dk>
11 years agogettime: use proper uint64_t types where needed
Jens Axboe [Mon, 21 Jan 2013 12:38:22 +0000 (05:38 -0700)]
gettime: use proper uint64_t types where needed

Windows has 32-bit longs even on 64-bit, so we risk overflowing.

Signed-off-by: Jens Axboe <axboe@kernel.dk>
11 years agoAdd info log on whether tsc is reliable or not for --cpuclock-test
Jens Axboe [Fri, 18 Jan 2013 19:13:45 +0000 (20:13 +0100)]
Add info log on whether tsc is reliable or not for --cpuclock-test

Signed-off-by: Jens Axboe <axboe@kernel.dk>
11 years agoWindows: fix off-by-one error in fio_cpu_set and add affinity error messages.
Bruce Cran [Fri, 18 Jan 2013 13:13:13 +0000 (13:13 +0000)]
Windows: fix off-by-one error in fio_cpu_set and add affinity error messages.

Signed-off-by: Jens Axboe <axboe@kernel.dk>
11 years agoMake hugetlbfs maping work
Shaohua Li [Thu, 17 Jan 2013 12:28:15 +0000 (13:28 +0100)]
Make hugetlbfs maping work

If it's a file mapping, flags must be MAP_HARED; If it's an anonymous
mapping, flags must be MAP_PRIVATE|MAP_ANONYMOUS|MAP_HUGETLB (can be
shared, but doesn't matter here).

Signed-off-by: Jens Axboe <axboe@kernel.dk>
11 years agofusion-aw: make configure and compile actually work
Jens Axboe [Mon, 14 Jan 2013 18:33:40 +0000 (19:33 +0100)]
fusion-aw: make configure and compile actually work

Signed-off-by: Jens Axboe <axboe@kernel.dk>
11 years agofusion-aw: fixes
Jens Axboe [Mon, 14 Jan 2013 18:22:15 +0000 (19:22 +0100)]
fusion-aw: fixes

Signed-off-by: Jens Axboe <axboe@kernel.dk>