forked from axboe/fio
-
Notifications
You must be signed in to change notification settings - Fork 1
/
backend.c
2711 lines (2260 loc) · 59.3 KB
/
backend.c
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
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
/*
* fio - the flexible io tester
*
* Copyright (C) 2005 Jens Axboe <[email protected]>
* Copyright (C) 2006-2012 Jens Axboe <[email protected]>
*
* The license below covers all files distributed with fio unless otherwise
* noted in the file itself.
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License version 2 as
* published by the Free Software Foundation.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
*
*/
#include <unistd.h>
#include <string.h>
#include <signal.h>
#include <assert.h>
#include <inttypes.h>
#include <sys/stat.h>
#include <sys/wait.h>
#include <math.h>
#include <pthread.h>
#include "fio.h"
#include "smalloc.h"
#include "verify.h"
#include "diskutil.h"
#include "cgroup.h"
#include "profile.h"
#include "lib/rand.h"
#include "lib/memalign.h"
#include "server.h"
#include "lib/getrusage.h"
#include "idletime.h"
#include "err.h"
#include "workqueue.h"
#include "lib/mountcheck.h"
#include "rate-submit.h"
#include "helper_thread.h"
#include "pshared.h"
#include "zone-dist.h"
#include "fio_time.h"
static struct fio_sem *startup_sem;
static struct flist_head *cgroup_list;
static struct cgroup_mnt *cgroup_mnt;
static int exit_value;
static volatile bool fio_abort;
static unsigned int nr_process = 0;
static unsigned int nr_thread = 0;
struct io_log *agg_io_log[DDIR_RWDIR_CNT];
int groupid = 0;
unsigned int thread_number = 0;
unsigned int nr_segments = 0;
unsigned int cur_segment = 0;
unsigned int stat_number = 0;
int temp_stall_ts;
unsigned long done_secs = 0;
#ifdef PTHREAD_ERRORCHECK_MUTEX_INITIALIZER_NP
pthread_mutex_t overlap_check = PTHREAD_ERRORCHECK_MUTEX_INITIALIZER_NP;
#else
pthread_mutex_t overlap_check = PTHREAD_MUTEX_INITIALIZER;
#endif
#define JOB_START_TIMEOUT (5 * 1000)
static void sig_int(int sig)
{
if (nr_segments) {
if (is_backend)
fio_server_got_signal(sig);
else {
log_info("\nfio: terminating on signal %d\n", sig);
log_info_flush();
exit_value = 128;
}
fio_terminate_threads(TERMINATE_ALL, TERMINATE_ALL);
}
}
#ifdef WIN32
static void sig_break(int sig)
{
sig_int(sig);
/**
* Windows terminates all job processes on SIGBREAK after the handler
* returns, so give them time to wrap-up and give stats
*/
for_each_td(td) {
while (td->runstate < TD_EXITED)
sleep(1);
} end_for_each();
}
#endif
void sig_show_status(int sig)
{
show_running_run_stats();
}
static void set_sig_handlers(void)
{
struct sigaction act;
memset(&act, 0, sizeof(act));
act.sa_handler = sig_int;
act.sa_flags = SA_RESTART;
sigaction(SIGINT, &act, NULL);
memset(&act, 0, sizeof(act));
act.sa_handler = sig_int;
act.sa_flags = SA_RESTART;
sigaction(SIGTERM, &act, NULL);
/* Windows uses SIGBREAK as a quit signal from other applications */
#ifdef WIN32
memset(&act, 0, sizeof(act));
act.sa_handler = sig_break;
act.sa_flags = SA_RESTART;
sigaction(SIGBREAK, &act, NULL);
#endif
memset(&act, 0, sizeof(act));
act.sa_handler = sig_show_status;
act.sa_flags = SA_RESTART;
sigaction(SIGUSR1, &act, NULL);
if (is_backend) {
memset(&act, 0, sizeof(act));
act.sa_handler = sig_int;
act.sa_flags = SA_RESTART;
sigaction(SIGPIPE, &act, NULL);
}
}
/*
* Check if we are above the minimum rate given.
*/
static bool __check_min_rate(struct thread_data *td, struct timespec *now,
enum fio_ddir ddir)
{
unsigned long long current_rate_check_bytes = td->this_io_bytes[ddir];
unsigned long current_rate_check_blocks = td->this_io_blocks[ddir];
unsigned long long option_rate_bytes_min = td->o.ratemin[ddir];
unsigned int option_rate_iops_min = td->o.rate_iops_min[ddir];
assert(ddir_rw(ddir));
if (!td->o.ratemin[ddir] && !td->o.rate_iops_min[ddir])
return false;
/*
* allow a 2 second settle period in the beginning
*/
if (mtime_since(&td->start, now) < 2000)
return false;
/*
* if last_rate_check_blocks or last_rate_check_bytes is set,
* we can compute a rate per ratecycle
*/
if (td->last_rate_check_bytes[ddir] || td->last_rate_check_blocks[ddir]) {
unsigned long spent = mtime_since(&td->last_rate_check_time[ddir], now);
if (spent < td->o.ratecycle || spent==0)
return false;
if (td->o.ratemin[ddir]) {
/*
* check bandwidth specified rate
*/
unsigned long long current_rate_bytes =
((current_rate_check_bytes - td->last_rate_check_bytes[ddir]) * 1000) / spent;
if (current_rate_bytes < option_rate_bytes_min) {
log_err("%s: rate_min=%lluB/s not met, got %lluB/s\n",
td->o.name, option_rate_bytes_min, current_rate_bytes);
return true;
}
} else {
/*
* checks iops specified rate
*/
unsigned long long current_rate_iops =
((current_rate_check_blocks - td->last_rate_check_blocks[ddir]) * 1000) / spent;
if (current_rate_iops < option_rate_iops_min) {
log_err("%s: rate_iops_min=%u not met, got %llu IOPS\n",
td->o.name, option_rate_iops_min, current_rate_iops);
return true;
}
}
}
td->last_rate_check_bytes[ddir] = current_rate_check_bytes;
td->last_rate_check_blocks[ddir] = current_rate_check_blocks;
memcpy(&td->last_rate_check_time[ddir], now, sizeof(*now));
return false;
}
static bool check_min_rate(struct thread_data *td, struct timespec *now)
{
bool ret = false;
for_each_rw_ddir(ddir) {
if (td->bytes_done[ddir])
ret |= __check_min_rate(td, now, ddir);
}
return ret;
}
/*
* When job exits, we can cancel the in-flight IO if we are using async
* io. Attempt to do so.
*/
static void cleanup_pending_aio(struct thread_data *td)
{
int r;
/*
* get immediately available events, if any
*/
r = io_u_queued_complete(td, 0);
/*
* now cancel remaining active events
*/
if (td->io_ops->cancel) {
struct io_u *io_u;
int i;
io_u_qiter(&td->io_u_all, io_u, i) {
if (io_u->flags & IO_U_F_FLIGHT) {
r = td->io_ops->cancel(td, io_u);
if (!r)
put_io_u(td, io_u);
}
}
}
if (td->cur_depth)
r = io_u_queued_complete(td, td->cur_depth);
}
/*
* Helper to handle the final sync of a file. Works just like the normal
* io path, just does everything sync.
*/
static bool fio_io_sync(struct thread_data *td, struct fio_file *f)
{
struct io_u *io_u = __get_io_u(td);
enum fio_q_status ret;
if (!io_u)
return true;
io_u->ddir = DDIR_SYNC;
io_u->file = f;
io_u_set(td, io_u, IO_U_F_NO_FILE_PUT);
if (td_io_prep(td, io_u)) {
put_io_u(td, io_u);
return true;
}
requeue:
ret = td_io_queue(td, io_u);
switch (ret) {
case FIO_Q_QUEUED:
td_io_commit(td);
if (io_u_queued_complete(td, 1) < 0)
return true;
break;
case FIO_Q_COMPLETED:
if (io_u->error) {
td_verror(td, io_u->error, "td_io_queue");
return true;
}
if (io_u_sync_complete(td, io_u) < 0)
return true;
break;
case FIO_Q_BUSY:
td_io_commit(td);
goto requeue;
}
return false;
}
static int fio_file_fsync(struct thread_data *td, struct fio_file *f)
{
int ret, ret2;
if (fio_file_open(f))
return fio_io_sync(td, f);
if (td_io_open_file(td, f))
return 1;
ret = fio_io_sync(td, f);
ret2 = 0;
if (fio_file_open(f))
ret2 = td_io_close_file(td, f);
return (ret || ret2);
}
static inline void __update_ts_cache(struct thread_data *td)
{
fio_gettime(&td->ts_cache, NULL);
}
static inline void update_ts_cache(struct thread_data *td)
{
if ((++td->ts_cache_nr & td->ts_cache_mask) == td->ts_cache_mask)
__update_ts_cache(td);
}
static inline bool runtime_exceeded(struct thread_data *td, struct timespec *t)
{
if (in_ramp_time(td))
return false;
if (!td->o.timeout)
return false;
if (utime_since(&td->epoch, t) >= td->o.timeout)
return true;
return false;
}
/*
* We need to update the runtime consistently in ms, but keep a running
* tally of the current elapsed time in microseconds for sub millisecond
* updates.
*/
static inline void update_runtime(struct thread_data *td,
unsigned long long *elapsed_us,
const enum fio_ddir ddir)
{
if (ddir == DDIR_WRITE && td_write(td) && td->o.verify_only)
return;
td->ts.runtime[ddir] -= (elapsed_us[ddir] + 999) / 1000;
elapsed_us[ddir] += utime_since_now(&td->start);
td->ts.runtime[ddir] += (elapsed_us[ddir] + 999) / 1000;
}
static bool break_on_this_error(struct thread_data *td, enum fio_ddir ddir,
int *retptr)
{
int ret = *retptr;
if (ret < 0 || td->error) {
int err = td->error;
enum error_type_bit eb;
if (ret < 0)
err = -ret;
eb = td_error_type(ddir, err);
if (!(td->o.continue_on_error & (1 << eb)))
return true;
if (td_non_fatal_error(td, eb, err)) {
/*
* Continue with the I/Os in case of
* a non fatal error.
*/
update_error_count(td, err);
td_clear_error(td);
*retptr = 0;
return false;
} else if (td->o.fill_device && (err == ENOSPC || err == EDQUOT)) {
/*
* We expect to hit this error if
* fill_device option is set.
*/
td_clear_error(td);
fio_mark_td_terminate(td);
return true;
} else {
/*
* Stop the I/O in case of a fatal
* error.
*/
update_error_count(td, err);
return true;
}
}
return false;
}
static void check_update_rusage(struct thread_data *td)
{
if (td->update_rusage) {
td->update_rusage = 0;
update_rusage_stat(td);
fio_sem_up(td->rusage_sem);
}
}
static int wait_for_completions(struct thread_data *td, struct timespec *time)
{
const int full = queue_full(td);
int min_evts = 0;
int ret;
if (td->flags & TD_F_REGROW_LOGS)
return io_u_quiesce(td);
/*
* if the queue is full, we MUST reap at least 1 event
*/
min_evts = min(td->o.iodepth_batch_complete_min, td->cur_depth);
if ((full && !min_evts) || !td->o.iodepth_batch_complete_min)
min_evts = 1;
if (time && should_check_rate(td))
fio_gettime(time, NULL);
do {
ret = io_u_queued_complete(td, min_evts);
if (ret < 0)
break;
} while (full && (td->cur_depth > td->o.iodepth_low));
return ret;
}
int io_queue_event(struct thread_data *td, struct io_u *io_u, int *ret,
enum fio_ddir ddir, uint64_t *bytes_issued, int from_verify,
struct timespec *comp_time)
{
switch (*ret) {
case FIO_Q_COMPLETED:
if (io_u->error) {
*ret = -io_u->error;
clear_io_u(td, io_u);
} else if (io_u->resid) {
long long bytes = io_u->xfer_buflen - io_u->resid;
struct fio_file *f = io_u->file;
if (bytes_issued)
*bytes_issued += bytes;
if (!from_verify)
trim_io_piece(io_u);
/*
* zero read, fail
*/
if (!bytes) {
if (!from_verify)
unlog_io_piece(td, io_u);
td_verror(td, EIO, "full resid");
clear_io_u(td, io_u);
break;
}
io_u->xfer_buflen = io_u->resid;
io_u->xfer_buf += bytes;
io_u->offset += bytes;
if (ddir_rw(io_u->ddir))
td->ts.short_io_u[io_u->ddir]++;
if (io_u->offset == f->real_file_size)
goto sync_done;
requeue_io_u(td, &io_u);
} else {
sync_done:
if (comp_time && should_check_rate(td))
fio_gettime(comp_time, NULL);
*ret = io_u_sync_complete(td, io_u);
if (*ret < 0)
break;
}
if (td->flags & TD_F_REGROW_LOGS)
regrow_logs(td);
/*
* when doing I/O (not when verifying),
* check for any errors that are to be ignored
*/
if (!from_verify)
break;
return 0;
case FIO_Q_QUEUED:
/*
* if the engine doesn't have a commit hook,
* the io_u is really queued. if it does have such
* a hook, it has to call io_u_queued() itself.
*/
if (td->io_ops->commit == NULL)
io_u_queued(td, io_u);
if (bytes_issued)
*bytes_issued += io_u->xfer_buflen;
break;
case FIO_Q_BUSY:
if (!from_verify)
unlog_io_piece(td, io_u);
requeue_io_u(td, &io_u);
td_io_commit(td);
break;
default:
assert(*ret < 0);
td_verror(td, -(*ret), "td_io_queue");
break;
}
if (break_on_this_error(td, ddir, ret))
return 1;
return 0;
}
static inline bool io_in_polling(struct thread_data *td)
{
return !td->o.iodepth_batch_complete_min &&
!td->o.iodepth_batch_complete_max;
}
/*
* Unlinks files from thread data fio_file structure
*/
static int unlink_all_files(struct thread_data *td)
{
struct fio_file *f;
unsigned int i;
int ret = 0;
for_each_file(td, f, i) {
if (f->filetype != FIO_TYPE_FILE)
continue;
ret = td_io_unlink_file(td, f);
if (ret)
break;
}
if (ret)
td_verror(td, ret, "unlink_all_files");
return ret;
}
/*
* Check if io_u will overlap an in-flight IO in the queue
*/
bool in_flight_overlap(struct io_u_queue *q, struct io_u *io_u)
{
bool overlap;
struct io_u *check_io_u;
unsigned long long x1, x2, y1, y2;
int i;
x1 = io_u->offset;
x2 = io_u->offset + io_u->buflen;
overlap = false;
io_u_qiter(q, check_io_u, i) {
if (check_io_u->flags & IO_U_F_FLIGHT) {
y1 = check_io_u->offset;
y2 = check_io_u->offset + check_io_u->buflen;
if (x1 < y2 && y1 < x2) {
overlap = true;
dprint(FD_IO, "in-flight overlap: %llu/%llu, %llu/%llu\n",
x1, io_u->buflen,
y1, check_io_u->buflen);
break;
}
}
}
return overlap;
}
static enum fio_q_status io_u_submit(struct thread_data *td, struct io_u *io_u)
{
/*
* Check for overlap if the user asked us to, and we have
* at least one IO in flight besides this one.
*/
if (td->o.serialize_overlap && td->cur_depth > 1 &&
in_flight_overlap(&td->io_u_all, io_u))
return FIO_Q_BUSY;
return td_io_queue(td, io_u);
}
/*
* The main verify engine. Runs over the writes we previously submitted,
* reads the blocks back in, and checks the crc/md5 of the data.
*/
static void do_verify(struct thread_data *td, uint64_t verify_bytes)
{
struct fio_file *f;
struct io_u *io_u;
int ret, min_events;
unsigned int i;
dprint(FD_VERIFY, "starting loop\n");
/*
* sync io first and invalidate cache, to make sure we really
* read from disk.
*/
for_each_file(td, f, i) {
if (!fio_file_open(f))
continue;
if (fio_io_sync(td, f))
break;
if (file_invalidate_cache(td, f))
break;
}
check_update_rusage(td);
if (td->error)
return;
td_set_runstate(td, TD_VERIFYING);
io_u = NULL;
while (!td->terminate) {
enum fio_ddir ddir;
int full;
update_ts_cache(td);
check_update_rusage(td);
if (runtime_exceeded(td, &td->ts_cache)) {
__update_ts_cache(td);
if (runtime_exceeded(td, &td->ts_cache)) {
fio_mark_td_terminate(td);
break;
}
}
if (flow_threshold_exceeded(td))
continue;
if (!td->o.experimental_verify) {
io_u = __get_io_u(td);
if (!io_u)
break;
if (get_next_verify(td, io_u)) {
put_io_u(td, io_u);
break;
}
if (td_io_prep(td, io_u)) {
put_io_u(td, io_u);
break;
}
} else {
if (td->bytes_verified + td->o.rw_min_bs > verify_bytes)
break;
while ((io_u = get_io_u(td)) != NULL) {
if (IS_ERR_OR_NULL(io_u)) {
io_u = NULL;
ret = FIO_Q_BUSY;
goto reap;
}
/*
* We are only interested in the places where
* we wrote or trimmed IOs. Turn those into
* reads for verification purposes.
*/
if (io_u->ddir == DDIR_READ) {
/*
* Pretend we issued it for rwmix
* accounting
*/
td->io_issues[DDIR_READ]++;
put_io_u(td, io_u);
continue;
} else if (io_u->ddir == DDIR_TRIM) {
io_u->ddir = DDIR_READ;
io_u_set(td, io_u, IO_U_F_TRIMMED);
break;
} else if (io_u->ddir == DDIR_WRITE) {
io_u->ddir = DDIR_READ;
io_u->numberio = td->verify_read_issues;
td->verify_read_issues++;
populate_verify_io_u(td, io_u);
break;
} else {
put_io_u(td, io_u);
continue;
}
}
if (!io_u)
break;
}
if (verify_state_should_stop(td, io_u)) {
put_io_u(td, io_u);
break;
}
if (td->o.verify_async)
io_u->end_io = verify_io_u_async;
else
io_u->end_io = verify_io_u;
ddir = io_u->ddir;
if (!td->o.disable_slat)
fio_gettime(&io_u->start_time, NULL);
ret = io_u_submit(td, io_u);
if (io_queue_event(td, io_u, &ret, ddir, NULL, 1, NULL))
break;
/*
* if we can queue more, do so. but check if there are
* completed io_u's first. Note that we can get BUSY even
* without IO queued, if the system is resource starved.
*/
reap:
full = queue_full(td) || (ret == FIO_Q_BUSY && td->cur_depth);
if (full || io_in_polling(td))
ret = wait_for_completions(td, NULL);
if (ret < 0)
break;
}
check_update_rusage(td);
if (!td->error) {
min_events = td->cur_depth;
if (min_events)
ret = io_u_queued_complete(td, min_events);
} else
cleanup_pending_aio(td);
td_set_runstate(td, TD_RUNNING);
dprint(FD_VERIFY, "exiting loop\n");
}
static bool exceeds_number_ios(struct thread_data *td)
{
unsigned long long number_ios;
if (!td->o.number_ios)
return false;
number_ios = ddir_rw_sum(td->io_blocks);
number_ios += td->io_u_queued + td->io_u_in_flight;
return number_ios >= (td->o.number_ios * td->loops);
}
static bool io_bytes_exceeded(struct thread_data *td, uint64_t *this_bytes)
{
unsigned long long bytes, limit;
if (td_rw(td))
bytes = this_bytes[DDIR_READ] + this_bytes[DDIR_WRITE];
else if (td_write(td))
bytes = this_bytes[DDIR_WRITE];
else if (td_read(td))
bytes = this_bytes[DDIR_READ];
else
bytes = this_bytes[DDIR_TRIM];
if (td->o.io_size)
limit = td->o.io_size;
else
limit = td->o.size;
limit *= td->loops;
return bytes >= limit || exceeds_number_ios(td);
}
static bool io_issue_bytes_exceeded(struct thread_data *td)
{
return io_bytes_exceeded(td, td->io_issue_bytes);
}
static bool io_complete_bytes_exceeded(struct thread_data *td)
{
return io_bytes_exceeded(td, td->this_io_bytes);
}
/*
* used to calculate the next io time for rate control
*
*/
static long long usec_for_io(struct thread_data *td, enum fio_ddir ddir)
{
uint64_t bps = td->rate_bps[ddir];
assert(!(td->flags & TD_F_CHILD));
if (td->o.rate_process == RATE_PROCESS_POISSON) {
uint64_t val, iops;
iops = bps / td->o.min_bs[ddir];
val = (int64_t) (1000000 / iops) *
-logf(__rand_0_1(&td->poisson_state[ddir]));
if (val) {
dprint(FD_RATE, "poisson rate iops=%llu, ddir=%d\n",
(unsigned long long) 1000000 / val,
ddir);
}
td->last_usec[ddir] += val;
return td->last_usec[ddir];
} else if (bps) {
uint64_t bytes = td->rate_io_issue_bytes[ddir];
uint64_t secs = bytes / bps;
uint64_t remainder = bytes % bps;
return remainder * 1000000 / bps + secs * 1000000;
}
return 0;
}
static void init_thinktime(struct thread_data *td)
{
if (td->o.thinktime_blocks_type == THINKTIME_BLOCKS_TYPE_COMPLETE)
td->thinktime_blocks_counter = td->io_blocks;
else
td->thinktime_blocks_counter = td->io_issues;
td->last_thinktime = td->epoch;
td->last_thinktime_blocks = 0;
}
static void handle_thinktime(struct thread_data *td, enum fio_ddir ddir,
struct timespec *time)
{
unsigned long long b;
unsigned long long runtime_left;
uint64_t total;
int left;
struct timespec now;
bool stall = false;
if (td->o.thinktime_iotime) {
fio_gettime(&now, NULL);
if (utime_since(&td->last_thinktime, &now)
>= td->o.thinktime_iotime) {
stall = true;
} else if (!fio_option_is_set(&td->o, thinktime_blocks)) {
/*
* When thinktime_iotime is set and thinktime_blocks is
* not set, skip the thinktime_blocks check, since
* thinktime_blocks default value 1 does not work
* together with thinktime_iotime.
*/
return;
}
}
b = ddir_rw_sum(td->thinktime_blocks_counter);
if (b >= td->last_thinktime_blocks + td->o.thinktime_blocks)
stall = true;
if (!stall)
return;
io_u_quiesce(td);
left = td->o.thinktime_spin;
if (td->o.timeout) {
runtime_left = td->o.timeout - utime_since_now(&td->epoch);
if (runtime_left < (unsigned long long)left)
left = runtime_left;
}
total = 0;
if (left)
total = usec_spin(left);
/*
* usec_spin() might run for slightly longer than intended in a VM
* where the vCPU could get descheduled or the hypervisor could steal
* CPU time. Ensure "left" doesn't become negative.
*/
if (total < td->o.thinktime)
left = td->o.thinktime - total;
else
left = 0;
if (td->o.timeout) {
runtime_left = td->o.timeout - utime_since_now(&td->epoch);
if (runtime_left < (unsigned long long)left)
left = runtime_left;
}
if (left)
total += usec_sleep(td, left);
/*
* If we're ignoring thinktime for the rate, add the number of bytes
* we would have done while sleeping, minus one block to ensure we
* start issuing immediately after the sleep.
*/
if (total && td->rate_bps[ddir] && td->o.rate_ign_think) {
uint64_t missed = (td->rate_bps[ddir] * total) / 1000000ULL;
uint64_t bs = td->o.min_bs[ddir];
uint64_t usperop = bs * 1000000ULL / td->rate_bps[ddir];
uint64_t over;
if (usperop <= total)
over = bs;
else
over = (usperop - total) / usperop * -bs;
td->rate_io_issue_bytes[ddir] += (missed - over);
/* adjust for rate_process=poisson */
td->last_usec[ddir] += total;
}
if (time && should_check_rate(td))
fio_gettime(time, NULL);
td->last_thinktime_blocks = b;
if (td->o.thinktime_iotime) {
fio_gettime(&now, NULL);
td->last_thinktime = now;
}
}
/*
* Main IO worker function. It retrieves io_u's to process and queues
* and reaps them, checking for rate and errors along the way.
*
* Returns number of bytes written and trimmed.
*/
static void do_io(struct thread_data *td, uint64_t *bytes_done)
{
unsigned int i;
int ret = 0;
uint64_t total_bytes, bytes_issued = 0;
for (i = 0; i < DDIR_RWDIR_CNT; i++)
bytes_done[i] = td->bytes_done[i];
if (in_ramp_time(td))
td_set_runstate(td, TD_RAMP);
else
td_set_runstate(td, TD_RUNNING);
lat_target_init(td);
total_bytes = td->o.size;
/*
* Allow random overwrite workloads to write up to io_size
* before starting verification phase as 'size' doesn't apply.
*/
if (td_write(td) && td_random(td) && td->o.norandommap)
total_bytes = max(total_bytes, (uint64_t) td->o.io_size);
/* Don't break too early if io_size > size */
if (td_rw(td) && !td_random(td))
total_bytes = max(total_bytes, (uint64_t)td->o.io_size);
/*
* If verify_backlog is enabled, we'll run the verify in this
* handler as well. For that case, we may need up to twice the
* amount of bytes.
*/
if (td->o.verify != VERIFY_NONE &&
(td_write(td) && td->o.verify_backlog))
total_bytes += td->o.size;
/* In trimwrite mode, each byte is trimmed and then written, so
* allow total_bytes or number of ios to be twice as big */
if (td_trimwrite(td)) {
total_bytes += td->total_io_size;
td->o.number_ios *= 2;
}