Merge branch 'epoch-time-hist-logs' of https://github.com/parallel-fs-utils/fio
[fio.git] / zbd.c
1 /*
2  * Copyright (C) 2018 Western Digital Corporation or its affiliates.
3  *
4  * This file is released under the GPL.
5  */
6
7 #include <errno.h>
8 #include <string.h>
9 #include <stdlib.h>
10 #include <dirent.h>
11 #include <fcntl.h>
12 #include <sys/ioctl.h>
13 #include <sys/stat.h>
14 #include <unistd.h>
15 #include <linux/blkzoned.h>
16 #include "file.h"
17 #include "fio.h"
18 #include "lib/pow2.h"
19 #include "log.h"
20 #include "smalloc.h"
21 #include "verify.h"
22 #include "zbd.h"
23
24 /**
25  * zbd_zone_idx - convert an offset into a zone number
26  * @f: file pointer.
27  * @offset: offset in bytes. If this offset is in the first zone_size bytes
28  *          past the disk size then the index of the sentinel is returned.
29  */
30 static uint32_t zbd_zone_idx(const struct fio_file *f, uint64_t offset)
31 {
32         uint32_t zone_idx;
33
34         if (f->zbd_info->zone_size_log2 > 0)
35                 zone_idx = offset >> f->zbd_info->zone_size_log2;
36         else
37                 zone_idx = offset / f->zbd_info->zone_size;
38
39         return min(zone_idx, f->zbd_info->nr_zones);
40 }
41
42 /**
43  * zbd_zone_full - verify whether a minimum number of bytes remain in a zone
44  * @f: file pointer.
45  * @z: zone info pointer.
46  * @required: minimum number of bytes that must remain in a zone.
47  *
48  * The caller must hold z->mutex.
49  */
50 static bool zbd_zone_full(const struct fio_file *f, struct fio_zone_info *z,
51                           uint64_t required)
52 {
53         assert((required & 511) == 0);
54
55         return z->type == BLK_ZONE_TYPE_SEQWRITE_REQ &&
56                 z->wp + required > z->start + f->zbd_info->zone_size;
57 }
58
59 static bool is_valid_offset(const struct fio_file *f, uint64_t offset)
60 {
61         return (uint64_t)(offset - f->file_offset) < f->io_size;
62 }
63
64 /* Verify whether direct I/O is used for all host-managed zoned drives. */
65 static bool zbd_using_direct_io(void)
66 {
67         struct thread_data *td;
68         struct fio_file *f;
69         int i, j;
70
71         for_each_td(td, i) {
72                 if (td->o.odirect || !(td->o.td_ddir & TD_DDIR_WRITE))
73                         continue;
74                 for_each_file(td, f, j) {
75                         if (f->zbd_info &&
76                             f->zbd_info->model == ZBD_DM_HOST_MANAGED)
77                                 return false;
78                 }
79         }
80
81         return true;
82 }
83
84 /* Whether or not the I/O range for f includes one or more sequential zones */
85 static bool zbd_is_seq_job(struct fio_file *f)
86 {
87         uint32_t zone_idx, zone_idx_b, zone_idx_e;
88
89         assert(f->zbd_info);
90         if (f->io_size == 0)
91                 return false;
92         zone_idx_b = zbd_zone_idx(f, f->file_offset);
93         zone_idx_e = zbd_zone_idx(f, f->file_offset + f->io_size - 1);
94         for (zone_idx = zone_idx_b; zone_idx <= zone_idx_e; zone_idx++)
95                 if (f->zbd_info->zone_info[zone_idx].type ==
96                     BLK_ZONE_TYPE_SEQWRITE_REQ)
97                         return true;
98
99         return false;
100 }
101
102 /*
103  * Verify whether offset and size parameters are aligned with zone boundaries.
104  */
105 static bool zbd_verify_sizes(void)
106 {
107         const struct fio_zone_info *z;
108         struct thread_data *td;
109         struct fio_file *f;
110         uint64_t new_offset, new_end;
111         uint32_t zone_idx;
112         int i, j;
113
114         for_each_td(td, i) {
115                 for_each_file(td, f, j) {
116                         if (!f->zbd_info)
117                                 continue;
118                         if (f->file_offset >= f->real_file_size)
119                                 continue;
120                         if (!zbd_is_seq_job(f))
121                                 continue;
122                         zone_idx = zbd_zone_idx(f, f->file_offset);
123                         z = &f->zbd_info->zone_info[zone_idx];
124                         if (f->file_offset != z->start) {
125                                 new_offset = (z+1)->start;
126                                 if (new_offset >= f->file_offset + f->io_size) {
127                                         log_info("%s: io_size must be at least one zone\n",
128                                                  f->file_name);
129                                         return false;
130                                 }
131                                 log_info("%s: rounded up offset from %llu to %llu\n",
132                                          f->file_name, (unsigned long long) f->file_offset,
133                                          (unsigned long long) new_offset);
134                                 f->io_size -= (new_offset - f->file_offset);
135                                 f->file_offset = new_offset;
136                         }
137                         zone_idx = zbd_zone_idx(f, f->file_offset + f->io_size);
138                         z = &f->zbd_info->zone_info[zone_idx];
139                         new_end = z->start;
140                         if (f->file_offset + f->io_size != new_end) {
141                                 if (new_end <= f->file_offset) {
142                                         log_info("%s: io_size must be at least one zone\n",
143                                                  f->file_name);
144                                         return false;
145                                 }
146                                 log_info("%s: rounded down io_size from %llu to %llu\n",
147                                          f->file_name, (unsigned long long) f->io_size,
148                                          (unsigned long long) new_end - f->file_offset);
149                                 f->io_size = new_end - f->file_offset;
150                         }
151                 }
152         }
153
154         return true;
155 }
156
157 static bool zbd_verify_bs(void)
158 {
159         struct thread_data *td;
160         struct fio_file *f;
161         uint32_t zone_size;
162         int i, j, k;
163
164         for_each_td(td, i) {
165                 for_each_file(td, f, j) {
166                         if (!f->zbd_info)
167                                 continue;
168                         zone_size = f->zbd_info->zone_size;
169                         for (k = 0; k < ARRAY_SIZE(td->o.bs); k++) {
170                                 if (td->o.verify != VERIFY_NONE &&
171                                     zone_size % td->o.bs[k] != 0) {
172                                         log_info("%s: block size %llu is not a divisor of the zone size %d\n",
173                                                  f->file_name, td->o.bs[k],
174                                                  zone_size);
175                                         return false;
176                                 }
177                         }
178                 }
179         }
180         return true;
181 }
182
183 /*
184  * Read zone information into @buf starting from sector @start_sector.
185  * @fd is a file descriptor that refers to a block device and @bufsz is the
186  * size of @buf.
187  *
188  * Returns 0 upon success and a negative error code upon failure.
189  */
190 static int read_zone_info(int fd, uint64_t start_sector,
191                           void *buf, unsigned int bufsz)
192 {
193         struct blk_zone_report *hdr = buf;
194
195         if (bufsz < sizeof(*hdr))
196                 return -EINVAL;
197
198         memset(hdr, 0, sizeof(*hdr));
199
200         hdr->nr_zones = (bufsz - sizeof(*hdr)) / sizeof(struct blk_zone);
201         hdr->sector = start_sector;
202         return ioctl(fd, BLKREPORTZONE, hdr) >= 0 ? 0 : -errno;
203 }
204
205 /*
206  * Read up to 255 characters from the first line of a file. Strip the trailing
207  * newline.
208  */
209 static char *read_file(const char *path)
210 {
211         char line[256], *p = line;
212         FILE *f;
213
214         f = fopen(path, "rb");
215         if (!f)
216                 return NULL;
217         if (!fgets(line, sizeof(line), f))
218                 line[0] = '\0';
219         strsep(&p, "\n");
220         fclose(f);
221
222         return strdup(line);
223 }
224
225 static enum blk_zoned_model get_zbd_model(const char *file_name)
226 {
227         enum blk_zoned_model model = ZBD_DM_NONE;
228         char *zoned_attr_path = NULL;
229         char *model_str = NULL;
230         struct stat statbuf;
231
232         if (stat(file_name, &statbuf) < 0)
233                 goto out;
234         if (asprintf(&zoned_attr_path, "/sys/dev/block/%d:%d/queue/zoned",
235                      major(statbuf.st_rdev), minor(statbuf.st_rdev)) < 0)
236                 goto out;
237         model_str = read_file(zoned_attr_path);
238         if (!model_str)
239                 goto out;
240         dprint(FD_ZBD, "%s: zbd model string: %s\n", file_name, model_str);
241         if (strcmp(model_str, "host-aware") == 0)
242                 model = ZBD_DM_HOST_AWARE;
243         else if (strcmp(model_str, "host-managed") == 0)
244                 model = ZBD_DM_HOST_MANAGED;
245
246 out:
247         free(model_str);
248         free(zoned_attr_path);
249         return model;
250 }
251
252 static int ilog2(uint64_t i)
253 {
254         int log = -1;
255
256         while (i) {
257                 i >>= 1;
258                 log++;
259         }
260         return log;
261 }
262
263 /*
264  * Initialize f->zbd_info for devices that are not zoned block devices. This
265  * allows to execute a ZBD workload against a non-ZBD device.
266  */
267 static int init_zone_info(struct thread_data *td, struct fio_file *f)
268 {
269         uint32_t nr_zones;
270         struct fio_zone_info *p;
271         uint64_t zone_size;
272         struct zoned_block_device_info *zbd_info = NULL;
273         pthread_mutexattr_t attr;
274         int i;
275
276         zone_size = td->o.zone_size;
277         assert(zone_size);
278         nr_zones = (f->real_file_size + zone_size - 1) / zone_size;
279         zbd_info = scalloc(1, sizeof(*zbd_info) +
280                            (nr_zones + 1) * sizeof(zbd_info->zone_info[0]));
281         if (!zbd_info)
282                 return -ENOMEM;
283
284         pthread_mutexattr_init(&attr);
285         pthread_mutexattr_settype(&attr, PTHREAD_MUTEX_RECURSIVE);
286         pthread_mutexattr_setpshared(&attr, true);
287         pthread_mutex_init(&zbd_info->mutex, &attr);
288         zbd_info->refcount = 1;
289         p = &zbd_info->zone_info[0];
290         for (i = 0; i < nr_zones; i++, p++) {
291                 pthread_mutex_init(&p->mutex, &attr);
292                 p->start = i * zone_size;
293                 p->wp = p->start + zone_size;
294                 p->type = BLK_ZONE_TYPE_SEQWRITE_REQ;
295                 p->cond = BLK_ZONE_COND_EMPTY;
296         }
297         /* a sentinel */
298         p->start = nr_zones * zone_size;
299
300         f->zbd_info = zbd_info;
301         f->zbd_info->zone_size = zone_size;
302         f->zbd_info->zone_size_log2 = is_power_of_2(zone_size) ?
303                 ilog2(zone_size) : -1;
304         f->zbd_info->nr_zones = nr_zones;
305         pthread_mutexattr_destroy(&attr);
306         return 0;
307 }
308
309 /*
310  * Parse the BLKREPORTZONE output and store it in f->zbd_info. Must be called
311  * only for devices that support this ioctl, namely zoned block devices.
312  */
313 static int parse_zone_info(struct thread_data *td, struct fio_file *f)
314 {
315         const unsigned int bufsz = sizeof(struct blk_zone_report) +
316                 4096 * sizeof(struct blk_zone);
317         uint32_t nr_zones;
318         struct blk_zone_report *hdr;
319         const struct blk_zone *z;
320         struct fio_zone_info *p;
321         uint64_t zone_size, start_sector;
322         struct zoned_block_device_info *zbd_info = NULL;
323         pthread_mutexattr_t attr;
324         void *buf;
325         int fd, i, j, ret = 0;
326
327         pthread_mutexattr_init(&attr);
328         pthread_mutexattr_settype(&attr, PTHREAD_MUTEX_RECURSIVE);
329         pthread_mutexattr_setpshared(&attr, true);
330
331         buf = malloc(bufsz);
332         if (!buf)
333                 goto out;
334
335         fd = open(f->file_name, O_RDONLY | O_LARGEFILE);
336         if (fd < 0) {
337                 ret = -errno;
338                 goto free;
339         }
340
341         ret = read_zone_info(fd, 0, buf, bufsz);
342         if (ret < 0) {
343                 log_info("fio: BLKREPORTZONE(%lu) failed for %s (%d).\n",
344                          0UL, f->file_name, -ret);
345                 goto close;
346         }
347         hdr = buf;
348         if (hdr->nr_zones < 1) {
349                 log_info("fio: %s has invalid zone information.\n",
350                          f->file_name);
351                 goto close;
352         }
353         z = (void *)(hdr + 1);
354         zone_size = z->len << 9;
355         nr_zones = (f->real_file_size + zone_size - 1) / zone_size;
356
357         if (td->o.zone_size == 0) {
358                 td->o.zone_size = zone_size;
359         } else if (td->o.zone_size != zone_size) {
360                 log_info("fio: %s job parameter zonesize %llu does not match disk zone size %llu.\n",
361                          f->file_name, (unsigned long long) td->o.zone_size,
362                         (unsigned long long) zone_size);
363                 ret = -EINVAL;
364                 goto close;
365         }
366
367         dprint(FD_ZBD, "Device %s has %d zones of size %llu KB\n", f->file_name,
368                nr_zones, (unsigned long long) zone_size / 1024);
369
370         zbd_info = scalloc(1, sizeof(*zbd_info) +
371                            (nr_zones + 1) * sizeof(zbd_info->zone_info[0]));
372         ret = -ENOMEM;
373         if (!zbd_info)
374                 goto close;
375         pthread_mutex_init(&zbd_info->mutex, &attr);
376         zbd_info->refcount = 1;
377         p = &zbd_info->zone_info[0];
378         for (start_sector = 0, j = 0; j < nr_zones;) {
379                 z = (void *)(hdr + 1);
380                 for (i = 0; i < hdr->nr_zones; i++, j++, z++, p++) {
381                         pthread_mutex_init(&p->mutex, &attr);
382                         p->start = z->start << 9;
383                         switch (z->cond) {
384                         case BLK_ZONE_COND_NOT_WP:
385                                 p->wp = p->start;
386                                 break;
387                         case BLK_ZONE_COND_FULL:
388                                 p->wp = p->start + zone_size;
389                                 break;
390                         default:
391                                 assert(z->start <= z->wp);
392                                 assert(z->wp <= z->start + (zone_size >> 9));
393                                 p->wp = z->wp << 9;
394                                 break;
395                         }
396                         p->type = z->type;
397                         p->cond = z->cond;
398                         if (j > 0 && p->start != p[-1].start + zone_size) {
399                                 log_info("%s: invalid zone data\n",
400                                          f->file_name);
401                                 ret = -EINVAL;
402                                 goto close;
403                         }
404                 }
405                 z--;
406                 start_sector = z->start + z->len;
407                 if (j >= nr_zones)
408                         break;
409                 ret = read_zone_info(fd, start_sector, buf, bufsz);
410                 if (ret < 0) {
411                         log_info("fio: BLKREPORTZONE(%llu) failed for %s (%d).\n",
412                                  (unsigned long long) start_sector, f->file_name, -ret);
413                         goto close;
414                 }
415         }
416         /* a sentinel */
417         zbd_info->zone_info[nr_zones].start = start_sector << 9;
418
419         f->zbd_info = zbd_info;
420         f->zbd_info->zone_size = zone_size;
421         f->zbd_info->zone_size_log2 = is_power_of_2(zone_size) ?
422                 ilog2(zone_size) : -1;
423         f->zbd_info->nr_zones = nr_zones;
424         zbd_info = NULL;
425         ret = 0;
426
427 close:
428         sfree(zbd_info);
429         close(fd);
430 free:
431         free(buf);
432 out:
433         pthread_mutexattr_destroy(&attr);
434         return ret;
435 }
436
437 /*
438  * Allocate zone information and store it into f->zbd_info if zonemode=zbd.
439  *
440  * Returns 0 upon success and a negative error code upon failure.
441  */
442 int zbd_create_zone_info(struct thread_data *td, struct fio_file *f)
443 {
444         enum blk_zoned_model zbd_model;
445         int ret = 0;
446
447         assert(td->o.zone_mode == ZONE_MODE_ZBD);
448
449         zbd_model = get_zbd_model(f->file_name);
450         switch (zbd_model) {
451         case ZBD_DM_HOST_AWARE:
452         case ZBD_DM_HOST_MANAGED:
453                 ret = parse_zone_info(td, f);
454                 break;
455         case ZBD_DM_NONE:
456                 ret = init_zone_info(td, f);
457                 break;
458         }
459         if (ret == 0)
460                 f->zbd_info->model = zbd_model;
461         return ret;
462 }
463
464 void zbd_free_zone_info(struct fio_file *f)
465 {
466         uint32_t refcount;
467
468         if (!f->zbd_info)
469                 return;
470
471         pthread_mutex_lock(&f->zbd_info->mutex);
472         refcount = --f->zbd_info->refcount;
473         pthread_mutex_unlock(&f->zbd_info->mutex);
474
475         assert((int32_t)refcount >= 0);
476         if (refcount == 0)
477                 sfree(f->zbd_info);
478         f->zbd_info = NULL;
479 }
480
481 /*
482  * Initialize f->zbd_info.
483  *
484  * Returns 0 upon success and a negative error code upon failure.
485  *
486  * Note: this function can only work correctly if it is called before the first
487  * fio fork() call.
488  */
489 static int zbd_init_zone_info(struct thread_data *td, struct fio_file *file)
490 {
491         struct thread_data *td2;
492         struct fio_file *f2;
493         int i, j, ret;
494
495         for_each_td(td2, i) {
496                 for_each_file(td2, f2, j) {
497                         if (td2 == td && f2 == file)
498                                 continue;
499                         if (!f2->zbd_info ||
500                             strcmp(f2->file_name, file->file_name) != 0)
501                                 continue;
502                         file->zbd_info = f2->zbd_info;
503                         file->zbd_info->refcount++;
504                         return 0;
505                 }
506         }
507
508         ret = zbd_create_zone_info(td, file);
509         if (ret < 0)
510                 td_verror(td, -ret, "BLKREPORTZONE failed");
511         return ret;
512 }
513
514 int zbd_init(struct thread_data *td)
515 {
516         struct fio_file *f;
517         int i;
518
519         for_each_file(td, f, i) {
520                 if (f->filetype != FIO_TYPE_BLOCK)
521                         continue;
522                 if (td->o.zone_size && td->o.zone_size < 512) {
523                         log_err("%s: zone size must be at least 512 bytes for --zonemode=zbd\n\n",
524                                 f->file_name);
525                         return 1;
526                 }
527                 if (td->o.zone_size == 0 &&
528                     get_zbd_model(f->file_name) == ZBD_DM_NONE) {
529                         log_err("%s: Specifying the zone size is mandatory for regular block devices with --zonemode=zbd\n\n",
530                                 f->file_name);
531                         return 1;
532                 }
533                 zbd_init_zone_info(td, f);
534         }
535
536         if (!zbd_using_direct_io()) {
537                 log_err("Using direct I/O is mandatory for writing to ZBD drives\n\n");
538                 return 1;
539         }
540
541         if (!zbd_verify_sizes())
542                 return 1;
543
544         if (!zbd_verify_bs())
545                 return 1;
546
547         return 0;
548 }
549
550 /**
551  * zbd_reset_range - reset zones for a range of sectors
552  * @td: FIO thread data.
553  * @f: Fio file for which to reset zones
554  * @sector: Starting sector in units of 512 bytes
555  * @nr_sectors: Number of sectors in units of 512 bytes
556  *
557  * Returns 0 upon success and a negative error code upon failure.
558  */
559 static int zbd_reset_range(struct thread_data *td, const struct fio_file *f,
560                            uint64_t offset, uint64_t length)
561 {
562         struct blk_zone_range zr = {
563                 .sector         = offset >> 9,
564                 .nr_sectors     = length >> 9,
565         };
566         uint32_t zone_idx_b, zone_idx_e;
567         struct fio_zone_info *zb, *ze, *z;
568         int ret = 0;
569
570         assert(f->fd != -1);
571         assert(is_valid_offset(f, offset + length - 1));
572         switch (f->zbd_info->model) {
573         case ZBD_DM_HOST_AWARE:
574         case ZBD_DM_HOST_MANAGED:
575                 ret = ioctl(f->fd, BLKRESETZONE, &zr);
576                 if (ret < 0) {
577                         td_verror(td, errno, "resetting wp failed");
578                         log_err("%s: resetting wp for %llu sectors at sector %llu failed (%d).\n",
579                                 f->file_name, zr.nr_sectors, zr.sector, errno);
580                         return ret;
581                 }
582                 break;
583         case ZBD_DM_NONE:
584                 break;
585         }
586
587         zone_idx_b = zbd_zone_idx(f, offset);
588         zb = &f->zbd_info->zone_info[zone_idx_b];
589         zone_idx_e = zbd_zone_idx(f, offset + length);
590         ze = &f->zbd_info->zone_info[zone_idx_e];
591         for (z = zb; z < ze; z++) {
592                 pthread_mutex_lock(&z->mutex);
593                 pthread_mutex_lock(&f->zbd_info->mutex);
594                 f->zbd_info->sectors_with_data -= z->wp - z->start;
595                 pthread_mutex_unlock(&f->zbd_info->mutex);
596                 z->wp = z->start;
597                 z->verify_block = 0;
598                 pthread_mutex_unlock(&z->mutex);
599         }
600
601         td->ts.nr_zone_resets += ze - zb;
602
603         return ret;
604 }
605
606 static unsigned int zbd_zone_nr(struct zoned_block_device_info *zbd_info,
607                                 struct fio_zone_info *zone)
608 {
609         return (uintptr_t) zone - (uintptr_t) zbd_info->zone_info;
610 }
611
612 /**
613  * zbd_reset_zone - reset the write pointer of a single zone
614  * @td: FIO thread data.
615  * @f: FIO file associated with the disk for which to reset a write pointer.
616  * @z: Zone to reset.
617  *
618  * Returns 0 upon success and a negative error code upon failure.
619  */
620 static int zbd_reset_zone(struct thread_data *td, const struct fio_file *f,
621                           struct fio_zone_info *z)
622 {
623         int ret;
624
625         dprint(FD_ZBD, "%s: resetting wp of zone %u.\n", f->file_name,
626                 zbd_zone_nr(f->zbd_info, z));
627         ret = zbd_reset_range(td, f, z->start, (z+1)->start - z->start);
628         return ret;
629 }
630
631 /*
632  * Reset a range of zones. Returns 0 upon success and 1 upon failure.
633  * @td: fio thread data.
634  * @f: fio file for which to reset zones
635  * @zb: first zone to reset.
636  * @ze: first zone not to reset.
637  * @all_zones: whether to reset all zones or only those zones for which the
638  *      write pointer is not a multiple of td->o.min_bs[DDIR_WRITE].
639  */
640 static int zbd_reset_zones(struct thread_data *td, struct fio_file *f,
641                            struct fio_zone_info *const zb,
642                            struct fio_zone_info *const ze, bool all_zones)
643 {
644         struct fio_zone_info *z, *start_z = ze;
645         const uint32_t min_bs = td->o.min_bs[DDIR_WRITE];
646         bool reset_wp;
647         int res = 0;
648
649         dprint(FD_ZBD, "%s: examining zones %u .. %u\n", f->file_name,
650                 zbd_zone_nr(f->zbd_info, zb), zbd_zone_nr(f->zbd_info, ze));
651         assert(f->fd != -1);
652         for (z = zb; z < ze; z++) {
653                 pthread_mutex_lock(&z->mutex);
654                 switch (z->type) {
655                 case BLK_ZONE_TYPE_SEQWRITE_REQ:
656                         reset_wp = all_zones ? z->wp != z->start :
657                                         (td->o.td_ddir & TD_DDIR_WRITE) &&
658                                         z->wp % min_bs != 0;
659                         if (start_z == ze && reset_wp) {
660                                 start_z = z;
661                         } else if (start_z < ze && !reset_wp) {
662                                 dprint(FD_ZBD,
663                                        "%s: resetting zones %u .. %u\n",
664                                        f->file_name,
665                                         zbd_zone_nr(f->zbd_info, start_z),
666                                         zbd_zone_nr(f->zbd_info, z));
667                                 if (zbd_reset_range(td, f, start_z->start,
668                                                 z->start - start_z->start) < 0)
669                                         res = 1;
670                                 start_z = ze;
671                         }
672                         break;
673                 default:
674                         if (start_z == ze)
675                                 break;
676                         dprint(FD_ZBD, "%s: resetting zones %u .. %u\n",
677                                f->file_name, zbd_zone_nr(f->zbd_info, start_z),
678                                zbd_zone_nr(f->zbd_info, z));
679                         if (zbd_reset_range(td, f, start_z->start,
680                                             z->start - start_z->start) < 0)
681                                 res = 1;
682                         start_z = ze;
683                         break;
684                 }
685         }
686         if (start_z < ze) {
687                 dprint(FD_ZBD, "%s: resetting zones %u .. %u\n", f->file_name,
688                         zbd_zone_nr(f->zbd_info, start_z),
689                         zbd_zone_nr(f->zbd_info, z));
690                 if (zbd_reset_range(td, f, start_z->start,
691                                     z->start - start_z->start) < 0)
692                         res = 1;
693         }
694         for (z = zb; z < ze; z++)
695                 pthread_mutex_unlock(&z->mutex);
696
697         return res;
698 }
699
700 /*
701  * Reset zbd_info.write_cnt, the counter that counts down towards the next
702  * zone reset.
703  */
704 static void zbd_reset_write_cnt(const struct thread_data *td,
705                                 const struct fio_file *f)
706 {
707         assert(0 <= td->o.zrf.u.f && td->o.zrf.u.f <= 1);
708
709         pthread_mutex_lock(&f->zbd_info->mutex);
710         f->zbd_info->write_cnt = td->o.zrf.u.f ?
711                 min(1.0 / td->o.zrf.u.f, 0.0 + UINT_MAX) : UINT_MAX;
712         pthread_mutex_unlock(&f->zbd_info->mutex);
713 }
714
715 static bool zbd_dec_and_reset_write_cnt(const struct thread_data *td,
716                                         const struct fio_file *f)
717 {
718         uint32_t write_cnt = 0;
719
720         pthread_mutex_lock(&f->zbd_info->mutex);
721         assert(f->zbd_info->write_cnt);
722         if (f->zbd_info->write_cnt)
723                 write_cnt = --f->zbd_info->write_cnt;
724         if (write_cnt == 0)
725                 zbd_reset_write_cnt(td, f);
726         pthread_mutex_unlock(&f->zbd_info->mutex);
727
728         return write_cnt == 0;
729 }
730
731 /* Check whether the value of zbd_info.sectors_with_data is correct. */
732 static void check_swd(const struct thread_data *td, const struct fio_file *f)
733 {
734 #if 0
735         struct fio_zone_info *zb, *ze, *z;
736         uint64_t swd;
737
738         zb = &f->zbd_info->zone_info[zbd_zone_idx(f, f->file_offset)];
739         ze = &f->zbd_info->zone_info[zbd_zone_idx(f, f->file_offset +
740                                                   f->io_size)];
741         swd = 0;
742         for (z = zb; z < ze; z++) {
743                 pthread_mutex_lock(&z->mutex);
744                 swd += z->wp - z->start;
745         }
746         pthread_mutex_lock(&f->zbd_info->mutex);
747         assert(f->zbd_info->sectors_with_data == swd);
748         pthread_mutex_unlock(&f->zbd_info->mutex);
749         for (z = zb; z < ze; z++)
750                 pthread_mutex_unlock(&z->mutex);
751 #endif
752 }
753
754 void zbd_file_reset(struct thread_data *td, struct fio_file *f)
755 {
756         struct fio_zone_info *zb, *ze, *z;
757         uint32_t zone_idx_e;
758         uint64_t swd = 0;
759
760         if (!f->zbd_info)
761                 return;
762
763         zb = &f->zbd_info->zone_info[zbd_zone_idx(f, f->file_offset)];
764         zone_idx_e = zbd_zone_idx(f, f->file_offset + f->io_size);
765         ze = &f->zbd_info->zone_info[zone_idx_e];
766         for (z = zb ; z < ze; z++) {
767                 pthread_mutex_lock(&z->mutex);
768                 swd += z->wp - z->start;
769         }
770         pthread_mutex_lock(&f->zbd_info->mutex);
771         f->zbd_info->sectors_with_data = swd;
772         pthread_mutex_unlock(&f->zbd_info->mutex);
773         for (z = zb ; z < ze; z++)
774                 pthread_mutex_unlock(&z->mutex);
775         dprint(FD_ZBD, "%s(%s): swd = %llu\n", __func__, f->file_name,
776                 (unsigned long long) swd);
777         /*
778          * If data verification is enabled reset the affected zones before
779          * writing any data to avoid that a zone reset has to be issued while
780          * writing data, which causes data loss.
781          */
782         zbd_reset_zones(td, f, zb, ze, td->o.verify != VERIFY_NONE &&
783                         (td->o.td_ddir & TD_DDIR_WRITE) &&
784                         td->runstate != TD_VERIFYING);
785         zbd_reset_write_cnt(td, f);
786 }
787
788 /* The caller must hold f->zbd_info->mutex. */
789 static bool is_zone_open(const struct thread_data *td, const struct fio_file *f,
790                          unsigned int zone_idx)
791 {
792         struct zoned_block_device_info *zbdi = f->zbd_info;
793         int i;
794
795         assert(td->o.max_open_zones <= ARRAY_SIZE(zbdi->open_zones));
796         assert(zbdi->num_open_zones <= td->o.max_open_zones);
797
798         for (i = 0; i < zbdi->num_open_zones; i++)
799                 if (zbdi->open_zones[i] == zone_idx)
800                         return true;
801
802         return false;
803 }
804
805 /*
806  * Open a ZBD zone if it was not yet open. Returns true if either the zone was
807  * already open or if opening a new zone is allowed. Returns false if the zone
808  * was not yet open and opening a new zone would cause the zone limit to be
809  * exceeded.
810  */
811 static bool zbd_open_zone(struct thread_data *td, const struct io_u *io_u,
812                           uint32_t zone_idx)
813 {
814         const uint32_t min_bs = td->o.min_bs[DDIR_WRITE];
815         const struct fio_file *f = io_u->file;
816         struct fio_zone_info *z = &f->zbd_info->zone_info[zone_idx];
817         bool res = true;
818
819         if (z->cond == BLK_ZONE_COND_OFFLINE)
820                 return false;
821
822         /*
823          * Skip full zones with data verification enabled because resetting a
824          * zone causes data loss and hence causes verification to fail.
825          */
826         if (td->o.verify != VERIFY_NONE && zbd_zone_full(f, z, min_bs))
827                 return false;
828
829         /* Zero means no limit */
830         if (!td->o.max_open_zones)
831                 return true;
832
833         pthread_mutex_lock(&f->zbd_info->mutex);
834         if (is_zone_open(td, f, zone_idx))
835                 goto out;
836         res = false;
837         if (f->zbd_info->num_open_zones >= td->o.max_open_zones)
838                 goto out;
839         dprint(FD_ZBD, "%s: opening zone %d\n", f->file_name, zone_idx);
840         f->zbd_info->open_zones[f->zbd_info->num_open_zones++] = zone_idx;
841         z->open = 1;
842         res = true;
843
844 out:
845         pthread_mutex_unlock(&f->zbd_info->mutex);
846         return res;
847 }
848
849 /* The caller must hold f->zbd_info->mutex */
850 static void zbd_close_zone(struct thread_data *td, const struct fio_file *f,
851                            unsigned int open_zone_idx)
852 {
853         uint32_t zone_idx;
854
855         assert(open_zone_idx < f->zbd_info->num_open_zones);
856         zone_idx = f->zbd_info->open_zones[open_zone_idx];
857         memmove(f->zbd_info->open_zones + open_zone_idx,
858                 f->zbd_info->open_zones + open_zone_idx + 1,
859                 (FIO_MAX_OPEN_ZBD_ZONES - (open_zone_idx + 1)) *
860                 sizeof(f->zbd_info->open_zones[0]));
861         f->zbd_info->num_open_zones--;
862         f->zbd_info->zone_info[zone_idx].open = 0;
863 }
864
865 /*
866  * Modify the offset of an I/O unit that does not refer to an open zone such
867  * that it refers to an open zone. Close an open zone and open a new zone if
868  * necessary. This algorithm can only work correctly if all write pointers are
869  * a multiple of the fio block size. The caller must neither hold z->mutex
870  * nor f->zbd_info->mutex. Returns with z->mutex held upon success.
871  */
872 struct fio_zone_info *zbd_convert_to_open_zone(struct thread_data *td,
873                                                struct io_u *io_u)
874 {
875         const uint32_t min_bs = td->o.min_bs[io_u->ddir];
876         const struct fio_file *f = io_u->file;
877         struct fio_zone_info *z;
878         unsigned int open_zone_idx = -1;
879         uint32_t zone_idx, new_zone_idx;
880         int i;
881
882         assert(is_valid_offset(f, io_u->offset));
883
884         if (td->o.max_open_zones) {
885                 /*
886                  * This statement accesses f->zbd_info->open_zones[] on purpose
887                  * without locking.
888                  */
889                 zone_idx = f->zbd_info->open_zones[(io_u->offset -
890                                                     f->file_offset) *
891                                 f->zbd_info->num_open_zones / f->io_size];
892         } else {
893                 zone_idx = zbd_zone_idx(f, io_u->offset);
894         }
895         dprint(FD_ZBD, "%s(%s): starting from zone %d (offset %lld, buflen %lld)\n",
896                __func__, f->file_name, zone_idx, io_u->offset, io_u->buflen);
897
898         /*
899          * Since z->mutex is the outer lock and f->zbd_info->mutex the inner
900          * lock it can happen that the state of the zone with index zone_idx
901          * has changed after 'z' has been assigned and before f->zbd_info->mutex
902          * has been obtained. Hence the loop.
903          */
904         for (;;) {
905                 z = &f->zbd_info->zone_info[zone_idx];
906
907                 pthread_mutex_lock(&z->mutex);
908                 pthread_mutex_lock(&f->zbd_info->mutex);
909                 if (td->o.max_open_zones == 0)
910                         goto examine_zone;
911                 if (f->zbd_info->num_open_zones == 0) {
912                         pthread_mutex_unlock(&f->zbd_info->mutex);
913                         pthread_mutex_unlock(&z->mutex);
914                         dprint(FD_ZBD, "%s(%s): no zones are open\n",
915                                __func__, f->file_name);
916                         return NULL;
917                 }
918                 open_zone_idx = (io_u->offset - f->file_offset) *
919                         f->zbd_info->num_open_zones / f->io_size;
920                 assert(open_zone_idx < f->zbd_info->num_open_zones);
921                 new_zone_idx = f->zbd_info->open_zones[open_zone_idx];
922                 if (new_zone_idx == zone_idx)
923                         break;
924                 zone_idx = new_zone_idx;
925                 pthread_mutex_unlock(&f->zbd_info->mutex);
926                 pthread_mutex_unlock(&z->mutex);
927         }
928
929         /* Both z->mutex and f->zbd_info->mutex are held. */
930
931 examine_zone:
932         if (z->wp + min_bs <= (z+1)->start) {
933                 pthread_mutex_unlock(&f->zbd_info->mutex);
934                 goto out;
935         }
936         dprint(FD_ZBD, "%s(%s): closing zone %d\n", __func__, f->file_name,
937                zone_idx);
938         if (td->o.max_open_zones)
939                 zbd_close_zone(td, f, open_zone_idx);
940         pthread_mutex_unlock(&f->zbd_info->mutex);
941
942         /* Only z->mutex is held. */
943
944         /* Zone 'z' is full, so try to open a new zone. */
945         for (i = f->io_size / f->zbd_info->zone_size; i > 0; i--) {
946                 zone_idx++;
947                 pthread_mutex_unlock(&z->mutex);
948                 z++;
949                 if (!is_valid_offset(f, z->start)) {
950                         /* Wrap-around. */
951                         zone_idx = zbd_zone_idx(f, f->file_offset);
952                         z = &f->zbd_info->zone_info[zone_idx];
953                 }
954                 assert(is_valid_offset(f, z->start));
955                 pthread_mutex_lock(&z->mutex);
956                 if (z->open)
957                         continue;
958                 if (zbd_open_zone(td, io_u, zone_idx))
959                         goto out;
960         }
961
962         /* Only z->mutex is held. */
963
964         /* Check whether the write fits in any of the already opened zones. */
965         pthread_mutex_lock(&f->zbd_info->mutex);
966         for (i = 0; i < f->zbd_info->num_open_zones; i++) {
967                 zone_idx = f->zbd_info->open_zones[i];
968                 pthread_mutex_unlock(&f->zbd_info->mutex);
969                 pthread_mutex_unlock(&z->mutex);
970
971                 z = &f->zbd_info->zone_info[zone_idx];
972
973                 pthread_mutex_lock(&z->mutex);
974                 if (z->wp + min_bs <= (z+1)->start)
975                         goto out;
976                 pthread_mutex_lock(&f->zbd_info->mutex);
977         }
978         pthread_mutex_unlock(&f->zbd_info->mutex);
979         pthread_mutex_unlock(&z->mutex);
980         dprint(FD_ZBD, "%s(%s): did not open another zone\n", __func__,
981                f->file_name);
982         return NULL;
983
984 out:
985         dprint(FD_ZBD, "%s(%s): returning zone %d\n", __func__, f->file_name,
986                zone_idx);
987         io_u->offset = z->start;
988         return z;
989 }
990
991 /* The caller must hold z->mutex. */
992 static struct fio_zone_info *zbd_replay_write_order(struct thread_data *td,
993                                                     struct io_u *io_u,
994                                                     struct fio_zone_info *z)
995 {
996         const struct fio_file *f = io_u->file;
997         const uint32_t min_bs = td->o.min_bs[DDIR_WRITE];
998
999         if (!zbd_open_zone(td, io_u, z - f->zbd_info->zone_info)) {
1000                 pthread_mutex_unlock(&z->mutex);
1001                 z = zbd_convert_to_open_zone(td, io_u);
1002                 assert(z);
1003         }
1004
1005         if (z->verify_block * min_bs >= f->zbd_info->zone_size)
1006                 log_err("%s: %d * %d >= %llu\n", f->file_name, z->verify_block,
1007                         min_bs, (unsigned long long) f->zbd_info->zone_size);
1008         io_u->offset = z->start + z->verify_block++ * min_bs;
1009         return z;
1010 }
1011
1012 /*
1013  * Find another zone for which @io_u fits below the write pointer. Start
1014  * searching in zones @zb + 1 .. @zl and continue searching in zones
1015  * @zf .. @zb - 1.
1016  *
1017  * Either returns NULL or returns a zone pointer and holds the mutex for that
1018  * zone.
1019  */
1020 static struct fio_zone_info *
1021 zbd_find_zone(struct thread_data *td, struct io_u *io_u,
1022               struct fio_zone_info *zb, struct fio_zone_info *zl)
1023 {
1024         const uint32_t min_bs = td->o.min_bs[io_u->ddir];
1025         const struct fio_file *f = io_u->file;
1026         struct fio_zone_info *z1, *z2;
1027         const struct fio_zone_info *const zf =
1028                 &f->zbd_info->zone_info[zbd_zone_idx(f, f->file_offset)];
1029
1030         /*
1031          * Skip to the next non-empty zone in case of sequential I/O and to
1032          * the nearest non-empty zone in case of random I/O.
1033          */
1034         for (z1 = zb + 1, z2 = zb - 1; z1 < zl || z2 >= zf; z1++, z2--) {
1035                 if (z1 < zl && z1->cond != BLK_ZONE_COND_OFFLINE) {
1036                         pthread_mutex_lock(&z1->mutex);
1037                         if (z1->start + min_bs <= z1->wp)
1038                                 return z1;
1039                         pthread_mutex_unlock(&z1->mutex);
1040                 } else if (!td_random(td)) {
1041                         break;
1042                 }
1043                 if (td_random(td) && z2 >= zf &&
1044                     z2->cond != BLK_ZONE_COND_OFFLINE) {
1045                         pthread_mutex_lock(&z2->mutex);
1046                         if (z2->start + min_bs <= z2->wp)
1047                                 return z2;
1048                         pthread_mutex_unlock(&z2->mutex);
1049                 }
1050         }
1051         dprint(FD_ZBD, "%s: adjusting random read offset failed\n",
1052                f->file_name);
1053         return NULL;
1054 }
1055
1056
1057 /**
1058  * zbd_post_submit - update the write pointer and unlock the zone lock
1059  * @io_u: I/O unit
1060  * @success: Whether or not the I/O unit has been executed successfully
1061  *
1062  * For write and trim operations, update the write pointer of all affected
1063  * zones.
1064  */
1065 static void zbd_post_submit(const struct io_u *io_u, bool success)
1066 {
1067         struct zoned_block_device_info *zbd_info;
1068         struct fio_zone_info *z;
1069         uint32_t zone_idx;
1070         uint64_t end, zone_end;
1071
1072         zbd_info = io_u->file->zbd_info;
1073         if (!zbd_info)
1074                 return;
1075
1076         zone_idx = zbd_zone_idx(io_u->file, io_u->offset);
1077         end = io_u->offset + io_u->buflen;
1078         z = &zbd_info->zone_info[zone_idx];
1079         assert(zone_idx < zbd_info->nr_zones);
1080         if (z->type != BLK_ZONE_TYPE_SEQWRITE_REQ)
1081                 return;
1082         if (!success)
1083                 goto unlock;
1084         switch (io_u->ddir) {
1085         case DDIR_WRITE:
1086                 zone_end = min(end, (z + 1)->start);
1087                 pthread_mutex_lock(&zbd_info->mutex);
1088                 /*
1089                  * z->wp > zone_end means that one or more I/O errors
1090                  * have occurred.
1091                  */
1092                 if (z->wp <= zone_end)
1093                         zbd_info->sectors_with_data += zone_end - z->wp;
1094                 pthread_mutex_unlock(&zbd_info->mutex);
1095                 z->wp = zone_end;
1096                 break;
1097         case DDIR_TRIM:
1098                 assert(z->wp == z->start);
1099                 break;
1100         default:
1101                 break;
1102         }
1103 unlock:
1104         pthread_mutex_unlock(&z->mutex);
1105 }
1106
1107 bool zbd_unaligned_write(int error_code)
1108 {
1109         switch (error_code) {
1110         case EIO:
1111         case EREMOTEIO:
1112                 return true;
1113         }
1114         return false;
1115 }
1116
1117 /**
1118  * zbd_adjust_block - adjust the offset and length as necessary for ZBD drives
1119  * @td: FIO thread data.
1120  * @io_u: FIO I/O unit.
1121  *
1122  * Locking strategy: returns with z->mutex locked if and only if z refers
1123  * to a sequential zone and if io_u_accept is returned. z is the zone that
1124  * corresponds to io_u->offset at the end of this function.
1125  */
1126 enum io_u_action zbd_adjust_block(struct thread_data *td, struct io_u *io_u)
1127 {
1128         const struct fio_file *f = io_u->file;
1129         uint32_t zone_idx_b;
1130         struct fio_zone_info *zb, *zl, *orig_zb;
1131         uint32_t orig_len = io_u->buflen;
1132         uint32_t min_bs = td->o.min_bs[io_u->ddir];
1133         uint64_t new_len;
1134         int64_t range;
1135
1136         if (!f->zbd_info)
1137                 return io_u_accept;
1138
1139         assert(is_valid_offset(f, io_u->offset));
1140         assert(io_u->buflen);
1141         zone_idx_b = zbd_zone_idx(f, io_u->offset);
1142         zb = &f->zbd_info->zone_info[zone_idx_b];
1143         orig_zb = zb;
1144
1145         /* Accept the I/O offset for conventional zones. */
1146         if (zb->type == BLK_ZONE_TYPE_CONVENTIONAL)
1147                 return io_u_accept;
1148
1149         /*
1150          * Accept the I/O offset for reads if reading beyond the write pointer
1151          * is enabled.
1152          */
1153         if (zb->cond != BLK_ZONE_COND_OFFLINE &&
1154             io_u->ddir == DDIR_READ && td->o.read_beyond_wp)
1155                 return io_u_accept;
1156
1157         pthread_mutex_lock(&zb->mutex);
1158         switch (io_u->ddir) {
1159         case DDIR_READ:
1160                 if (td->runstate == TD_VERIFYING) {
1161                         zb = zbd_replay_write_order(td, io_u, zb);
1162                         goto accept;
1163                 }
1164                 /*
1165                  * Check that there is enough written data in the zone to do an
1166                  * I/O of at least min_bs B. If there isn't, find a new zone for
1167                  * the I/O.
1168                  */
1169                 range = zb->cond != BLK_ZONE_COND_OFFLINE ?
1170                         zb->wp - zb->start : 0;
1171                 if (range < min_bs ||
1172                     ((!td_random(td)) && (io_u->offset + min_bs > zb->wp))) {
1173                         pthread_mutex_unlock(&zb->mutex);
1174                         zl = &f->zbd_info->zone_info[zbd_zone_idx(f,
1175                                                 f->file_offset + f->io_size)];
1176                         zb = zbd_find_zone(td, io_u, zb, zl);
1177                         if (!zb) {
1178                                 dprint(FD_ZBD,
1179                                        "%s: zbd_find_zone(%lld, %llu) failed\n",
1180                                        f->file_name, io_u->offset,
1181                                        io_u->buflen);
1182                                 goto eof;
1183                         }
1184                         /*
1185                          * zbd_find_zone() returned a zone with a range of at
1186                          * least min_bs.
1187                          */
1188                         range = zb->wp - zb->start;
1189                         assert(range >= min_bs);
1190
1191                         if (!td_random(td))
1192                                 io_u->offset = zb->start;
1193                 }
1194                 /*
1195                  * Make sure the I/O is within the zone valid data range while
1196                  * maximizing the I/O size and preserving randomness.
1197                  */
1198                 if (range <= io_u->buflen)
1199                         io_u->offset = zb->start;
1200                 else if (td_random(td))
1201                         io_u->offset = zb->start +
1202                                 ((io_u->offset - orig_zb->start) %
1203                                  (range - io_u->buflen)) / min_bs * min_bs;
1204                 /*
1205                  * Make sure the I/O does not cross over the zone wp position.
1206                  */
1207                 new_len = min((unsigned long long)io_u->buflen,
1208                               (unsigned long long)(zb->wp - io_u->offset));
1209                 new_len = new_len / min_bs * min_bs;
1210                 if (new_len < io_u->buflen) {
1211                         io_u->buflen = new_len;
1212                         dprint(FD_IO, "Changed length from %u into %llu\n",
1213                                orig_len, io_u->buflen);
1214                 }
1215                 assert(zb->start <= io_u->offset);
1216                 assert(io_u->offset + io_u->buflen <= zb->wp);
1217                 goto accept;
1218         case DDIR_WRITE:
1219                 if (io_u->buflen > f->zbd_info->zone_size)
1220                         goto eof;
1221                 if (!zbd_open_zone(td, io_u, zone_idx_b)) {
1222                         pthread_mutex_unlock(&zb->mutex);
1223                         zb = zbd_convert_to_open_zone(td, io_u);
1224                         if (!zb)
1225                                 goto eof;
1226                         zone_idx_b = zb - f->zbd_info->zone_info;
1227                 }
1228                 /* Check whether the zone reset threshold has been exceeded */
1229                 if (td->o.zrf.u.f) {
1230                         check_swd(td, f);
1231                         if (f->zbd_info->sectors_with_data >=
1232                             f->io_size * td->o.zrt.u.f &&
1233                             zbd_dec_and_reset_write_cnt(td, f)) {
1234                                 zb->reset_zone = 1;
1235                         }
1236                 }
1237                 /* Reset the zone pointer if necessary */
1238                 if (zb->reset_zone || zbd_zone_full(f, zb, min_bs)) {
1239                         assert(td->o.verify == VERIFY_NONE);
1240                         /*
1241                          * Since previous write requests may have been submitted
1242                          * asynchronously and since we will submit the zone
1243                          * reset synchronously, wait until previously submitted
1244                          * write requests have completed before issuing a
1245                          * zone reset.
1246                          */
1247                         io_u_quiesce(td);
1248                         zb->reset_zone = 0;
1249                         if (zbd_reset_zone(td, f, zb) < 0)
1250                                 goto eof;
1251                         check_swd(td, f);
1252                 }
1253                 /* Make writes occur at the write pointer */
1254                 assert(!zbd_zone_full(f, zb, min_bs));
1255                 io_u->offset = zb->wp;
1256                 if (!is_valid_offset(f, io_u->offset)) {
1257                         dprint(FD_ZBD, "Dropped request with offset %llu\n",
1258                                io_u->offset);
1259                         goto eof;
1260                 }
1261                 /*
1262                  * Make sure that the buflen is a multiple of the minimal
1263                  * block size. Give up if shrinking would make the request too
1264                  * small.
1265                  */
1266                 new_len = min((unsigned long long)io_u->buflen,
1267                               (zb + 1)->start - io_u->offset);
1268                 new_len = new_len / min_bs * min_bs;
1269                 if (new_len == io_u->buflen)
1270                         goto accept;
1271                 if (new_len >= min_bs) {
1272                         io_u->buflen = new_len;
1273                         dprint(FD_IO, "Changed length from %u into %llu\n",
1274                                orig_len, io_u->buflen);
1275                         goto accept;
1276                 }
1277                 log_err("Zone remainder %lld smaller than minimum block size %d\n",
1278                         ((zb + 1)->start - io_u->offset),
1279                         min_bs);
1280                 goto eof;
1281         case DDIR_TRIM:
1282                 /* fall-through */
1283         case DDIR_SYNC:
1284         case DDIR_DATASYNC:
1285         case DDIR_SYNC_FILE_RANGE:
1286         case DDIR_WAIT:
1287         case DDIR_LAST:
1288         case DDIR_INVAL:
1289                 goto accept;
1290         }
1291
1292         assert(false);
1293
1294 accept:
1295         assert(zb);
1296         assert(zb->cond != BLK_ZONE_COND_OFFLINE);
1297         assert(!io_u->post_submit);
1298         io_u->post_submit = zbd_post_submit;
1299         return io_u_accept;
1300
1301 eof:
1302         if (zb)
1303                 pthread_mutex_unlock(&zb->mutex);
1304         return io_u_eof;
1305 }
1306
1307 /* Return a string with ZBD statistics */
1308 char *zbd_write_status(const struct thread_stat *ts)
1309 {
1310         char *res;
1311
1312         if (asprintf(&res, "; %llu zone resets", (unsigned long long) ts->nr_zone_resets) < 0)
1313                 return NULL;
1314         return res;
1315 }