X-Git-Url: https://git.kernel.dk/?p=fio.git;a=blobdiff_plain;f=filesetup.c;h=4a2383f1718ab390b9fc7ab4d3a05cb747d0ee7d;hp=06b7d7fc845cb9f041c03b16f983ffb564443896;hb=1e5324e723116a5faf9da686993cc79c14d62d4b;hpb=1ccc6dc75b28ef70cd7a8c39ac8c1cb68c720a65 diff --git a/filesetup.c b/filesetup.c index 06b7d7fc..4a2383f1 100644 --- a/filesetup.c +++ b/filesetup.c @@ -12,6 +12,7 @@ #include "smalloc.h" #include "filehash.h" #include "os/os.h" +#include "hash.h" #ifdef FIO_HAVE_LINUX_FALLOCATE #include @@ -94,9 +95,9 @@ static int extend_file(struct thread_data *td, struct fio_file *f) r = fallocate(f->fd, FALLOC_FL_KEEP_SIZE, 0, f->real_file_size); - if (r != 0) { + if (r != 0) td_verror(td, errno, "fallocate"); - } + break; #endif /* FIO_HAVE_LINUX_FALLOCATE */ default: @@ -766,8 +767,11 @@ int setup_files(struct thread_data *td) if (f->io_size == -1ULL) total_size = -1ULL; - else + else { + if (td->o.size_percent) + f->io_size = (f->io_size * td->o.size_percent) / 100; total_size += f->io_size; + } if (f->filetype == FIO_TYPE_FILE && (f->io_size + f->file_offset) > f->real_file_size && @@ -781,9 +785,6 @@ int setup_files(struct thread_data *td) } } - if (td->o.size_percent) - total_size = (total_size * td->o.size_percent) / 100; - if (!td->o.size || td->o.size > total_size) td->o.size = total_size; @@ -862,12 +863,50 @@ int pre_read_files(struct thread_data *td) return 1; } +static int __init_rand_distribution(struct thread_data *td, struct fio_file *f) +{ + unsigned int range_size, seed; + unsigned long nranges; + + range_size = min(td->o.min_bs[DDIR_READ], td->o.min_bs[DDIR_WRITE]); + + nranges = (f->real_file_size + range_size - 1) / range_size; + + seed = jhash(f->file_name, strlen(f->file_name), 0) * td->thread_number; + if (td->o.random_distribution == FIO_RAND_DIST_ZIPF) + zipf_init(&f->zipf, nranges, td->o.zipf_theta.u.f, seed); + else + pareto_init(&f->zipf, nranges, td->o.pareto_h.u.f, seed); + + return 1; +} + +static int init_rand_distribution(struct thread_data *td) +{ + struct fio_file *f; + unsigned int i; + int state; + + if (td->o.random_distribution == FIO_RAND_DIST_RANDOM) + return 0; + + state = td->runstate; + td_set_runstate(td, TD_SETTING_UP); + for_each_file(td, f, i) + __init_rand_distribution(td, f); + td_set_runstate(td, state); + + return 1; +} + int init_random_map(struct thread_data *td) { unsigned long long blocks, num_maps; struct fio_file *f; unsigned int i; + if (init_rand_distribution(td)) + return 0; if (td->o.norandommap || !td_random(td)) return 0;