blob: 6c7c4d6b2680546663eeac7d179b2e11917b7997 [file] [log] [blame]
Jens Axboe3c39a372006-06-06 20:56:12 +02001#include <stdio.h>
2#include <stdlib.h>
3#include "list.h"
4#include "fio.h"
5
6void write_iolog_put(struct thread_data *td, struct io_u *io_u)
7{
Jens Axboea4f4fdd2007-02-14 01:16:39 +01008 fprintf(td->iolog_f, "%u,%llu,%lu\n", io_u->ddir, io_u->offset, io_u->buflen);
Jens Axboe3c39a372006-06-06 20:56:12 +02009}
10
11int read_iolog_get(struct thread_data *td, struct io_u *io_u)
12{
13 struct io_piece *ipo;
14
15 if (!list_empty(&td->io_log_list)) {
16 ipo = list_entry(td->io_log_list.next, struct io_piece, list);
17 list_del(&ipo->list);
18 io_u->offset = ipo->offset;
19 io_u->buflen = ipo->len;
20 io_u->ddir = ipo->ddir;
Jens Axboe53cdc682006-10-18 11:50:58 +020021 io_u->file = ipo->file;
Jens Axboe3c39a372006-06-06 20:56:12 +020022 free(ipo);
23 return 0;
24 }
25
26 return 1;
27}
28
29void prune_io_piece_log(struct thread_data *td)
30{
31 struct io_piece *ipo;
Jens Axboe4b878982007-03-26 09:32:22 +020032 struct rb_node *n;
Jens Axboe3c39a372006-06-06 20:56:12 +020033
Jens Axboe4b878982007-03-26 09:32:22 +020034 while ((n = rb_first(&td->io_hist_tree)) != NULL) {
35 ipo = rb_entry(n, struct io_piece, rb_node);
36 rb_erase(n, &td->io_hist_tree);
Jens Axboe3c39a372006-06-06 20:56:12 +020037 free(ipo);
38 }
39}
40
41/*
Jens Axboe34403fb2007-03-02 21:43:25 +010042 * log a successful write, so we can unwind the log for verify
Jens Axboe3c39a372006-06-06 20:56:12 +020043 */
44void log_io_piece(struct thread_data *td, struct io_u *io_u)
45{
Jens Axboe8de8f042007-03-27 10:36:12 +020046 struct rb_node **p, *parent;
Jens Axboe4b878982007-03-26 09:32:22 +020047 struct io_piece *ipo, *__ipo;
Jens Axboe3c39a372006-06-06 20:56:12 +020048
Jens Axboe4b878982007-03-26 09:32:22 +020049 ipo = malloc(sizeof(struct io_piece));
Jens Axboe53cdc682006-10-18 11:50:58 +020050 ipo->file = io_u->file;
Jens Axboe3c39a372006-06-06 20:56:12 +020051 ipo->offset = io_u->offset;
52 ipo->len = io_u->buflen;
53
54 /*
Jens Axboe8de8f042007-03-27 10:36:12 +020055 * We don't need to sort the entries, if:
56 *
57 * Sequential writes, or
58 * Random writes that lay out the file as it goes along
59 *
60 * For both these cases, just reading back data in the order we
61 * wrote it out is the fastest.
62 */
63 if (!td_random(td) || !td->o.overwrite) {
64 INIT_LIST_HEAD(&ipo->list);
65 list_add_tail(&ipo->list, &td->io_hist_list);
66 return;
67 }
68
69 RB_CLEAR_NODE(&ipo->rb_node);
70 p = &td->io_hist_tree.rb_node;
71 parent = NULL;
72
73 /*
Jens Axboe4b878982007-03-26 09:32:22 +020074 * Sort the entry into the verification list
Jens Axboe3c39a372006-06-06 20:56:12 +020075 */
Jens Axboe4b878982007-03-26 09:32:22 +020076 while (*p) {
77 parent = *p;
Jens Axboe3c39a372006-06-06 20:56:12 +020078
Jens Axboe4b878982007-03-26 09:32:22 +020079 __ipo = rb_entry(parent, struct io_piece, rb_node);
Jens Axboebb5d7d02007-03-27 10:21:25 +020080 if (ipo->offset <= __ipo->offset)
Jens Axboe4b878982007-03-26 09:32:22 +020081 p = &(*p)->rb_left;
Jens Axboe4b878982007-03-26 09:32:22 +020082 else
Jens Axboebb5d7d02007-03-27 10:21:25 +020083 p = &(*p)->rb_right;
Jens Axboe3c39a372006-06-06 20:56:12 +020084 }
85
Jens Axboe4b878982007-03-26 09:32:22 +020086 rb_link_node(&ipo->rb_node, parent, p);
87 rb_insert_color(&ipo->rb_node, &td->io_hist_tree);
Jens Axboe3c39a372006-06-06 20:56:12 +020088}
89
90void write_iolog_close(struct thread_data *td)
91{
92 fflush(td->iolog_f);
93 fclose(td->iolog_f);
94 free(td->iolog_buf);
95}
96
Jens Axboefb71fbd2006-10-20 09:15:46 +020097/*
98 * Open a stored log and read in the entries.
99 */
100static int init_iolog_read(struct thread_data *td)
Jens Axboe3c39a372006-06-06 20:56:12 +0200101{
102 unsigned long long offset;
103 unsigned int bytes;
104 char *str, *p;
105 FILE *f;
Jens Axboefb71fbd2006-10-20 09:15:46 +0200106 int rw, reads, writes;
Jens Axboe3c39a372006-06-06 20:56:12 +0200107
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100108 f = fopen(td->o.read_iolog_file, "r");
Jens Axboe3c39a372006-06-06 20:56:12 +0200109 if (!f) {
Jens Axboefb71fbd2006-10-20 09:15:46 +0200110 perror("fopen read iolog");
Jens Axboe3c39a372006-06-06 20:56:12 +0200111 return 1;
112 }
113
114 /*
Jens Axboe3c39a372006-06-06 20:56:12 +0200115 * Read in the read iolog and store it, reuse the infrastructure
116 * for doing verifications.
117 */
118 str = malloc(4096);
Jens Axboefb71fbd2006-10-20 09:15:46 +0200119 reads = writes = 0;
Jens Axboe3c39a372006-06-06 20:56:12 +0200120 while ((p = fgets(str, 4096, f)) != NULL) {
121 struct io_piece *ipo;
122
123 if (sscanf(p, "%d,%llu,%u", &rw, &offset, &bytes) != 3) {
Jens Axboe3b70d7e2006-06-08 21:48:46 +0200124 log_err("bad iolog: %s\n", p);
Jens Axboe3c39a372006-06-06 20:56:12 +0200125 continue;
126 }
127 if (rw == DDIR_READ)
128 reads++;
129 else if (rw == DDIR_WRITE)
130 writes++;
Jens Axboec38e9462007-03-27 08:48:48 +0200131 else if (rw != DDIR_SYNC) {
Jens Axboe3b70d7e2006-06-08 21:48:46 +0200132 log_err("bad ddir: %d\n", rw);
Jens Axboe3c39a372006-06-06 20:56:12 +0200133 continue;
134 }
135
136 ipo = malloc(sizeof(*ipo));
137 INIT_LIST_HEAD(&ipo->list);
138 ipo->offset = offset;
139 ipo->len = bytes;
Jens Axboe1e97cce2006-12-05 11:44:16 +0100140 ipo->ddir = (enum fio_ddir) rw;
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100141 if (bytes > td->o.max_bs[rw])
142 td->o.max_bs[rw] = bytes;
Jens Axboe3c39a372006-06-06 20:56:12 +0200143 list_add_tail(&ipo->list, &td->io_log_list);
Jens Axboe3c39a372006-06-06 20:56:12 +0200144 }
145
146 free(str);
147 fclose(f);
148
Jens Axboefb71fbd2006-10-20 09:15:46 +0200149 if (!reads && !writes)
Jens Axboe3c39a372006-06-06 20:56:12 +0200150 return 1;
Jens Axboefb71fbd2006-10-20 09:15:46 +0200151 else if (reads && !writes)
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100152 td->o.td_ddir = TD_DDIR_READ;
Jens Axboe3c39a372006-06-06 20:56:12 +0200153 else if (!reads && writes)
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100154 td->o.td_ddir = TD_DDIR_READ;
Jens Axboe3c39a372006-06-06 20:56:12 +0200155 else
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100156 td->o.td_ddir = TD_DDIR_RW;
Jens Axboe3c39a372006-06-06 20:56:12 +0200157
158 return 0;
159}
Jens Axboe8914a9d2006-06-07 11:14:56 +0200160
Jens Axboefb71fbd2006-10-20 09:15:46 +0200161/*
162 * Setup a log for storing io patterns.
163 */
164static int init_iolog_write(struct thread_data *td)
165{
Jens Axboe076efc72006-10-27 11:24:25 +0200166 FILE *f;
Jens Axboefb71fbd2006-10-20 09:15:46 +0200167
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100168 f = fopen(td->o.write_iolog_file, "w+");
Jens Axboefb71fbd2006-10-20 09:15:46 +0200169 if (!f) {
170 perror("fopen write iolog");
171 return 1;
172 }
173
174 /*
175 * That's it for writing, setup a log buffer and we're done.
176 */
177 td->iolog_f = f;
178 td->iolog_buf = malloc(8192);
179 setvbuf(f, td->iolog_buf, _IOFBF, 8192);
180 return 0;
181}
182
183int init_iolog(struct thread_data *td)
184{
Jens Axboeb4a6a592006-10-20 13:54:47 +0200185 int ret = 0;
Jens Axboefb71fbd2006-10-20 09:15:46 +0200186
Jens Axboeba0fbe12007-03-09 14:34:23 +0100187 if (td->io_ops->flags & FIO_DISKLESSIO)
Jens Axboef48b4672006-10-27 11:30:07 +0200188 return 0;
189
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100190 if (td->o.read_iolog_file)
Jens Axboeb4a6a592006-10-20 13:54:47 +0200191 ret = init_iolog_read(td);
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100192 else if (td->o.write_iolog_file)
Jens Axboeb4a6a592006-10-20 13:54:47 +0200193 ret = init_iolog_write(td);
194
Jens Axboe1e97cce2006-12-05 11:44:16 +0100195 return ret;
Jens Axboefb71fbd2006-10-20 09:15:46 +0200196}
197
Jens Axboe8914a9d2006-06-07 11:14:56 +0200198void setup_log(struct io_log **log)
199{
200 struct io_log *l = malloc(sizeof(*l));
201
202 l->nr_samples = 0;
203 l->max_samples = 1024;
204 l->log = malloc(l->max_samples * sizeof(struct io_sample));
205 *log = l;
206}
207
Jens Axboebb3884d2007-01-17 17:23:11 +1100208void __finish_log(struct io_log *log, const char *name)
Jens Axboe8914a9d2006-06-07 11:14:56 +0200209{
Jens Axboe8914a9d2006-06-07 11:14:56 +0200210 unsigned int i;
Jens Axboebb3884d2007-01-17 17:23:11 +1100211 FILE *f;
Jens Axboe8914a9d2006-06-07 11:14:56 +0200212
Jens Axboebb3884d2007-01-17 17:23:11 +1100213 f = fopen(name, "w");
Jens Axboe8914a9d2006-06-07 11:14:56 +0200214 if (!f) {
215 perror("fopen log");
216 return;
217 }
218
219 for (i = 0; i < log->nr_samples; i++)
220 fprintf(f, "%lu, %lu, %u\n", log->log[i].time, log->log[i].val, log->log[i].ddir);
221
222 fclose(f);
223 free(log->log);
224 free(log);
225}
Jens Axboebb3884d2007-01-17 17:23:11 +1100226
227void finish_log(struct thread_data *td, struct io_log *log, const char *name)
228{
229 char file_name[256];
230
231 snprintf(file_name, 200, "client%d_%s.log", td->thread_number, name);
232 __finish_log(log, file_name);
233}