1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338
|
v1.3 / 2022-08-24
==================
* Workaround for glibc 2.36 sys/mount.h
* ioping: add RWF_HIPRI
* ioping: add "make static"
* ioping: print notice "slow"/"fast" when twice slower/faster than average
* ioping: cleanup timing notice
* ioping: fix mingw build
* ioping: add option -burst
* ioping: include stdbool
* ioping: restore CPPFLAGS in makefile
* ioping: use 64-bit printf format
* ioping: switch mingw build to 64-bit and ucrt
* ioping: retrive device size and name for windows
* ioping: use F_FULLFSYNC for OSX
* ioping: move fdatasync after write out of make_request()
* ioping: implement O_SYNC for windows by FILE_FLAG_WRITE_THROUGH
* ioping: fallback from non-cached to direct only for reads
* ioping: rename global target fd variable
* ioping: add option -e, -entropy for deterministic randomization
* ioping: add support nowait I/O (RWF_NOWAIT)
* ioping: print help and version into stdout
* ioping: add option -I|-time to print current time
* ioping: describe json format in manpage
* ioping: add human-readable localtime into json output
v1.2 / 2020-02-02
==================
* makefile: merge compiling and linking
* ioping: add -r, -rate-limit
* ioping: reformat usage
* Merge pull request #42 from kohju/patch-Solaris
* Support for Solaris.
* ioping: option -J|-json for printing JSON
* ioping: add option -a|-warmup <count>
* ioping: add long options
* ioping: print filesystem size for file or directory target
* Merge pull request #39 from justinpitts/patch-1
* Fix grammar mistake.
v1.1 / 2018-09-11
==================
* ioping: release 1.1
* ioping.1: raw statisitics in nanoseconds
* Merge pull request #37 from standby24x7/fix-man
* Fix a typo in ioping.1
* Merge pull request #36 from lewellyn/solaris
* Correct Solaris predefined macro
* ioping.1: add more references
* Merge pull request #32 from kolyshkin/makefile
* Makefile: only use vN tags for EXTRA_VERSION
* ioping.c: set VERSION to 1.0
* Makefile: make sure git tag == src ver
* Makefile: make all phony targets as such
* Makefile: move -D to CPPFLAGS
* ioping(1): fix aio description
v1.0 / 2016-12-11
=================
* ioping: update changelog
* ioping: cleanup statistics
* ioping: allow fractional values in arguments
* ioping: print total requests count in raw statistics
* ioping: ignore first and classify other requests
* ioping: add read-write mode
* ioping: add option for speed limit
* ioping: print total time, speed and count of requests
* ioping: add mkostemp
* ioping: add O_SYNC and O_DSYNC modes
* ioping: call fadvise(RANDOM) for random I/O
* ioping: remove fdatasync test before oprations
* Merge pull request #29 from vapier/master
* Makefile: do not strip while installing
* Makefile: make it easier to override default optimization settings
* Makefile: respect CPPFLAGS when compiling
* ignore generated files
* ioping: include sys/sysmacros.h for makedev
* ioping: use xorshift128+ for randomization
* Makefile: fix mac detection
* Makefile: no -lrt for mac
* ioping: no clock_gettime for mac
* travis-ci: enable osx
* ioping: link mingw without -lrt
* ioping: link with -lrt
* travis-ci: add .travis.yml
* Makefile: add test target
* ioping: switch to nanosecond precision
* Makefile: rename README to README.md
* Merge branch 'patch-1' of https://github.com/davidak/ioping
* README.md: update formatting
* Merge pull request #27 from jgrizou/master
* Rename README to README.md
* Update README
* add link to Nix expression
* ioping: update changelog
* ioping: use long long for count of requests
* ioping: add option -t for detecting cache hits
* ioping: use cached direct I/O by default if non-cached isn't supported
* ioping: add windows "overlapped" aio
* ioping: declare windows have direct I/O
* ioping: open files with CreateFile on windows
* ioping: get more randomness on windows
* ioping: do not override custom interval and deadline by -R
* Makefile: add top directory into binary archives
* ioping: keep VERSION right in ioping.c
* ioping: update help and manpage
* ioping: update README
* ioping: fix several integer overflows
* ioping: handle big requests on linux
* ioping: always respect explicitly set size
* ioping: print amount of data written/read
* ioping: print io run-time instead of real-time
* ioping: expand all symlinks in device path
v0.9 / 2014-10-06
=================
* ioping.1: update manpage
* ioping: rename global count to stop_at_request
* ioping: fix final bps overflow
* ioping: update changelog and dates
* ioping: include LICENSE into tarball
* ioping: fix create_temp for windows
* ioping: fix O_TMPFILE
* Makefile: add strip target
* ioping: randomize data to avoid compression in ssd
* ioping: fix support of character devices
* ioping: print 'to' instead of 'from' for write requests
* ioping: fix mingw port compilation
* ioping: print at least three decimal digits
* ioping: add option for keeping/reusing working file
* ioping: add support for O_TMPFILE
* ioping: make block device support optional
* ioping: add copy of gpl-v3
* ioping: port to solaris os
* ioping: switch stdout into line-buffered mode
* ioping: fix warning messages
v0.8 / 2013-12-30
=================
* ioping: add links to related tools and projects
* ioping: add hints for units into manpage
* iopint: unhardcode units for printing device size
* ioping: warn about unreliable results on poor platforms
* ioping: update dates and changelog
* ioping: use snprintf instead of sprintf
* ioping: use c99 macro from inttypes.h for printing 64-bit values
* ioping: move features macro into source code
* ioping: ignore undefined version
* ioping: pick fix_manpage_hyphen.patch from debian
* ioping: add link to homepage into README
* ioping: use IEEE 1541-2002 units for printing
* ioping: fix OpenBSD port
* ioping: OpenBSD port
* ioping: detect fdatasync availability
v0.7 / 2013-02-02
=================
* ioping: automatically choose best units for human-readable output
* ioping: update makefile
* ioping: rework binary packs
* ioping: add documentation
* ioping: put aio errors into errno
* ioping: ioping.pdf target
* ioping.1: use common groff macroses
* ioping: less weird period-deadline
* ioping: DragonFlyBSD port
* ioping: binary packs
* ioping: mingw windows port
* ioping: batch mode
* ioping: use nanosleep to sleep
* ioping: fix -c limit
* ioping: don't use long long format
* ioping: use gnu99 gcc standard
* ioping: rework version control
* ioping: fix typos
* ioping: write-test
* ioping: time period for statistics
* ioping: extended raw statistics
* ioping: fix 32-bit aio
* ioping: add linux aio support
* ioping: avoid zero usleep
v0.6 / 2011-08-01
=================
* release v0.6
* ioping: enable direct for freebsd
* ioping: fixup freebsd port
* ioping: fix misprint
* ioping.1: document tera suffixes
* ioping: fix help for -L option
* ioping.1: add authors
* ioping.1: add homepage
* ioping: Use consistent names for direct I/O and cached I/O
* ioping.1: Add -v to man page SYNOPSYS and help message
* ioping.1: fix description of -L option
* ioping: port to Debian GNU/Hurd
* ioping: port to Debian GNU/kFreeBSD
* ioping: untwist cached-direct modes
* ioping: fix 32-bit wsize overflow
* ioping: document defaults in man and help
* ioping: show target info in final statictics
* ioping: use git-describe to retrieve version
* ioping: fix help for -R
* ioping: move 64m temp working set size to rate test
* ioping: add builtin version and -v
* bsd,apl: concentrate magic on top
* ioping.1: describe sector-size suffix
* ioping.1: describe suffixes for -p and -c
* Fix a typo in a define
* displaying stats: add comma, obey 80 column width
* ioping, ioping.1: better description of -R
* ioping, ioping.1: -h is an exclusive option
* ioping.1: assorted improvements
v0.5 / 2011-06-16
=================
* release v0.5
* rate test, iops
* show block device size
* include sys/disk.h for freebsd
* don't use getopt() GNU extension
* use F_NOCACHE not only for macos
* inclide sys/uio.h at macos
* add parse_device() for freebsd and macos
* use macos fcntl F_NOCACHE
* more disk size ioctls
* enable direct and cached if there no posix_fadvise()
* add get_block_size()
* stubs for posix_memalign() and posix_fadvice()
* use posix_memalign() instead of memalign()
* show final statistics in quiet mode if period not specified
* show io speed
v0.4 / 2011-06-02
=================
* bump version
* workaround gcc bug, or this is a feature?
* ioping.spec: raise version to 0.3
* make dist: do not rebuild dist if non needed
* Fix i386 RPM build on an x86_64
* Since 'make dist' generates tar.gz this is what we should use.
* oops
* use stat() instead of lstat()
* ioping -h should exit with 0
* man: describe non-zero exit codes
* error codes: 0: success 1: argument error 2: preparation error 3: runtime error
* use errx for fcntl error messages
* fix segfault in parse_device()
* Added support for older kernels lacking /proc/self/mountinfo. Try to use info from /proc/self/mounts if there is no mountinfo.
* Fix misleading error message
* use full working set range by default
* Use random operations by defult, add -L option for sequential.
* fix interrupt
* fix tabs in spec
* Makefile: add 'dist' and similar targets
* Add spec file (RPM packaging)
* Add ioping(1) man page
* fixup
* This tries to address two issues:
* 'ioping -w' was going over the time limit specified. For example, 'ioping -w 7 -i 2' was taking 8 seconds to run, not 7 or less. Fix it by moving the check to before usleep(), and taking the interval (ie usleep argument) into account.
* * ioping -c|-w: do not oversleep
* ioping: use system message for ENOMEM
* ioping: don't print 'unknown option' twice, show usage
* Makefile: add DESTDIR support Needed mostly for distro vendors (.spec writers etc.)
* ioping -h: fit output to 80 col width
* randomization, fixing usage
* working set size, cleanups, fixes, etc...
* initial
* Initial directory structure.
v1.0 / 2016-12-11
=================
* ioping: update changelog
* ioping: cleanup statistics
* ioping: allow fractional values in arguments
* ioping: print total requests count in raw statistics
* ioping: ignore first and classify other requests
* ioping: add read-write mode
* ioping: add option for speed limit
* ioping: print total time, speed and count of requests
* ioping: add mkostemp
* ioping: add O_SYNC and O_DSYNC modes
* ioping: call fadvise(RANDOM) for random I/O
* ioping: remove fdatasync test before oprations
* Merge pull request #29 from vapier/master
* Makefile: do not strip while installing
* Makefile: make it easier to override default optimization settings
* Makefile: respect CPPFLAGS when compiling
* ignore generated files
* ioping: include sys/sysmacros.h for makedev
* ioping: use xorshift128+ for randomization
* Makefile: fix mac detection
* Makefile: no -lrt for mac
* ioping: no clock_gettime for mac
* travis-ci: enable osx
* ioping: link mingw without -lrt
* ioping: link with -lrt
* travis-ci: add .travis.yml
* Makefile: add test target
* ioping: switch to nanosecond precision
* Makefile: rename README to README.md
* Merge branch 'patch-1' of https://github.com/davidak/ioping
* README.md: update formatting
* Merge pull request #27 from jgrizou/master
* Rename README to README.md
* Update README
* add link to Nix expression
* ioping: update changelog
* ioping: use long long for count of requests
* ioping: add option -t for detecting cache hits
* ioping: use cached direct I/O by default if non-cached isn't supported
* ioping: add windows "overlapped" aio
* ioping: declare windows have direct I/O
* ioping: open files with CreateFile on windows
* ioping: get more randomness on windows
* ioping: do not override custom interval and deadline by -R
* Makefile: add top directory into binary archives
* ioping: keep VERSION right in ioping.c
* ioping: update help and manpage
* ioping: update README
* ioping: fix several integer overflows
* ioping: handle big requests on linux
* ioping: always respect explicitly set size
* ioping: print amount of data written/read
* ioping: print io run-time instead of real-time
* ioping: expand all symlinks in device path
|