zbd: account valid data bytes only for zone_reset_threshold option
[fio.git] / zbd.h
CommitLineData
bfbdd35b
BVA
1/*
2 * Copyright (C) 2018 Western Digital Corporation or its affiliates.
3 *
4 * This file is released under the GPL.
5 */
6
7#ifndef FIO_ZBD_H
8#define FIO_ZBD_H
9
b7694961
DLM
10#include "io_u.h"
11#include "ioengines.h"
12#include "oslib/blkzoned.h"
13#include "zbd_types.h"
bfbdd35b
BVA
14
15struct fio_file;
16
bfbdd35b
BVA
17enum io_u_action {
18 io_u_accept = 0,
19 io_u_eof = 1,
e3be810b 20 io_u_completed = 2,
bfbdd35b
BVA
21};
22
23/**
24 * struct fio_zone_info - information about a single ZBD zone
2c477f4f
DLM
25 * @start: zone start location (bytes)
26 * @wp: zone write pointer location (bytes)
236d23a8 27 * @capacity: maximum size usable from the start of a zone (bytes)
bfbdd35b
BVA
28 * @mutex: protects the modifiable members in this structure
29 * @type: zone type (BLK_ZONE_TYPE_*)
30 * @cond: zone state (BLK_ZONE_COND_*)
be7a6bae 31 * @has_wp: whether or not this zone can have a valid write pointer
bfbdd35b
BVA
32 * @open: whether or not this zone is currently open. Only relevant if
33 * max_open_zones > 0.
34 * @reset_zone: whether or not this zone should be reset before writing to it
35 */
36struct fio_zone_info {
bfbdd35b
BVA
37 pthread_mutex_t mutex;
38 uint64_t start;
39 uint64_t wp;
236d23a8 40 uint64_t capacity;
b7694961
DLM
41 enum zbd_zone_type type:2;
42 enum zbd_zone_cond cond:4;
be7a6bae 43 unsigned int has_wp:1;
bfbdd35b
BVA
44 unsigned int open:1;
45 unsigned int reset_zone:1;
bfbdd35b
BVA
46};
47
48/**
49 * zoned_block_device_info - zoned block device characteristics
50 * @model: Device model.
219c662d 51 * @max_open_zones: global limit on the number of simultaneously opened
b346af90
NC
52 * sequential write zones. A zero value means unlimited open zones,
53 * and that open zones will not be tracked in the open_zones array.
59b07544
BVA
54 * @mutex: Protects the modifiable members in this structure (refcount and
55 * num_open_zones).
d87d9c6c 56 * @zone_size: size of a single zone in bytes.
d56a6df3 57 * @wp_valid_data_bytes: total size of data in zones with write pointers
bfbdd35b
BVA
58 * @zone_size_log2: log2 of the zone size in bytes if it is a power of 2 or 0
59 * if the zone size is not a power of 2.
60 * @nr_zones: number of zones
61 * @refcount: number of fio files that share this structure
59b07544 62 * @num_open_zones: number of open zones
a7c2b6fc
BVA
63 * @write_cnt: Number of writes since the latest zone reset triggered by
64 * the zone_reset_frequency fio job parameter.
59b07544 65 * @open_zones: zone numbers of open zones
bfbdd35b
BVA
66 * @zone_info: description of the individual zones
67 *
68 * Only devices for which all zones have the same size are supported.
69 * Note: if the capacity is not a multiple of the zone size then the last zone
70 * will be smaller than 'zone_size'.
71 */
72struct zoned_block_device_info {
b7694961 73 enum zbd_zoned_model model;
219c662d 74 uint32_t max_open_zones;
bfbdd35b
BVA
75 pthread_mutex_t mutex;
76 uint64_t zone_size;
d56a6df3 77 uint64_t wp_valid_data_bytes;
bfbdd35b
BVA
78 uint32_t zone_size_log2;
79 uint32_t nr_zones;
80 uint32_t refcount;
59b07544 81 uint32_t num_open_zones;
a7c2b6fc 82 uint32_t write_cnt;
b7694961 83 uint32_t open_zones[ZBD_MAX_OPEN_ZONES];
bfbdd35b
BVA
84 struct fio_zone_info zone_info[0];
85};
86
8f39afa7
AD
87int zbd_init_files(struct thread_data *td);
88void zbd_recalc_options_with_zone_granularity(struct thread_data *td);
3c1dc34c 89int zbd_setup_files(struct thread_data *td);
bfbdd35b 90void zbd_free_zone_info(struct fio_file *f);
bfbdd35b
BVA
91void zbd_file_reset(struct thread_data *td, struct fio_file *f);
92bool zbd_unaligned_write(int error_code);
4d37720a 93void setup_zbd_zone_mode(struct thread_data *td, struct io_u *io_u);
c65057f9
SK
94enum fio_ddir zbd_adjust_ddir(struct thread_data *td, struct io_u *io_u,
95 enum fio_ddir ddir);
bfbdd35b 96enum io_u_action zbd_adjust_block(struct thread_data *td, struct io_u *io_u);
fd5d733f 97char *zbd_write_status(const struct thread_stat *ts);
e3be810b 98int zbd_do_io_u_trim(const struct thread_data *td, struct io_u *io_u);
d9ed3e63 99
3c1dc34c
DLM
100static inline void zbd_close_file(struct fio_file *f)
101{
102 if (f->zbd_info)
103 zbd_free_zone_info(f);
104}
105
b2da58c4
SK
106static inline void zbd_queue_io_u(struct thread_data *td, struct io_u *io_u,
107 enum fio_q_status status)
d9ed3e63
DLM
108{
109 if (io_u->zbd_queue_io) {
b2da58c4 110 io_u->zbd_queue_io(td, io_u, status, io_u->error == 0);
d9ed3e63
DLM
111 io_u->zbd_queue_io = NULL;
112 }
113}
114
b2da58c4 115static inline void zbd_put_io_u(struct thread_data *td, struct io_u *io_u)
d9ed3e63
DLM
116{
117 if (io_u->zbd_put_io) {
b2da58c4 118 io_u->zbd_put_io(td, io_u);
d9ed3e63
DLM
119 io_u->zbd_queue_io = NULL;
120 io_u->zbd_put_io = NULL;
121 }
122}
123
bfbdd35b 124#endif /* FIO_ZBD_H */