Lines Matching +full:wo +full:- +full:data
2 * SPDX-License-Identifier: BSD-3-Clause
10 * contract N66001-01-C-8035 ("CBOSS"), as part of the DARPA CHATS
34 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
67 * + Add in per-op stats - time and offset - so one could start mapping out
69 * + Add in different distributions - random, normal, left/right skewed normal,
70 * zipf, etc - and perhaps add the ability to run concurrent distributions
108 a->aio_fildes = fd; in set_aio()
109 a->aio_nbytes = size; in set_aio()
110 a->aio_offset = offset; in set_aio()
111 a->aio_buf = buf; in set_aio()
139 printf("Usage: %s <file> <io size> <number of runs> <concurrency> <ro|wo|rw>\n", in main()
158 else if (strcmp(argv[5], "wo") == 0) in main()
161 errx(1, "the I/O type needs to be \"ro\", \"rw\", or \"wo\"!\n"); in main()
164 * Random returns values between 0 and (2^32)-1; only good for 4 gig. in main()
205 n = a - aio; in main()