X-Git-Url: https://git.kernel.dk/?p=fio.git;a=blobdiff_plain;f=init.c;h=6ae78be1ed3e59dca7e5acfc78ada8e88e4c1bc1;hp=26c7d1def0e4891a06e3ac8630d20a348255d56f;hb=d2a1ed1a110d9c6f76a4a11974652c0bb9307b68;hpb=9ac8a797da61a59c9fa1b59f8574246555403d19 diff --git a/init.c b/init.c index 26c7d1de..6ae78be1 100644 --- a/init.c +++ b/init.c @@ -20,7 +20,7 @@ #include "filehash.h" #include "verify.h" -static char fio_version_string[] = "fio 1.35"; +static char fio_version_string[] = "fio 1.36-rc2"; #define FIO_RANDSEED (0xb1899bedUL) @@ -137,7 +137,7 @@ static struct option l_opts[FIO_NR_OPTIONS] = { }; static const char *tiobench_opts[] = { - "buffered=0", "size=256*$mb_memory", "bs=4k", "timeout=600", + "buffered=0", "size=4*1024*$mb_memory", "bs=4k", "timeout=600", "numjobs=4", "group_reporting", "thread", "overwrite=1", "filename=.fio.tio.1:.fio.tio.2:.fio.tio.3:.fio.tio.4", "name=seqwrite", "rw=write", "end_fsync=1", @@ -181,6 +181,8 @@ static struct thread_data *get_new_job(int global, struct thread_data *parent) td = &threads[thread_number++]; *td = *parent; + td->o.uid = td->o.gid = -1U; + dup_files(td, parent); options_mem_dupe(td);