Home | History | Annotate | Download | only in fio

Lines Matching refs:eo

356 		td->eo = NULL;
846 * In cases where td->eo is set, clone it for a child thread.
851 void *origeo = td->eo;
855 if (!origeo && td != &def_thread && def_thread.eo &&
857 origeo = def_thread.eo;
860 td->eo = malloc(td->io_ops->option_struct_size);
867 memcpy(td->eo, origeo, td->io_ops->option_struct_size);
868 options_mem_dupe(td->eo, td->io_ops->options);
870 memset(td->eo, 0, td->io_ops->option_struct_size);
871 fill_default_options(td->eo, td->io_ops->options);
873 *(struct thread_data **)td->eo = td;
1090 if (td->eo)
1091 *(struct thread_data **)td->eo = NULL;