X-Git-Url: https://git.kernel.dk/?p=fio.git;a=blobdiff_plain;f=libfio.c;h=5a996f9cbd6e9f35d09709ad70ff78d3a3365c69;hp=3fde492c91af727f6d96abf39c308d3ca4b657c7;hb=bc10c331dad361ea4b5122af1d875d46a6ce427e;hpb=046395d7ab181288d14737c1d0041e98328f473f diff --git a/libfio.c b/libfio.c index 3fde492c..5a996f9c 100644 --- a/libfio.c +++ b/libfio.c @@ -27,6 +27,7 @@ #include #include #include +#include #include "fio.h" #include "smalloc.h" @@ -186,6 +187,13 @@ void td_restore_runstate(struct thread_data *td, int old_state) td_set_runstate(td, old_state); } +void fio_mark_td_terminate(struct thread_data *td) +{ + fio_gettime(&td->terminate_time, NULL); + write_barrier(); + td->terminate = 1; +} + void fio_terminate_threads(int group_id) { struct thread_data *td; @@ -198,7 +206,11 @@ void fio_terminate_threads(int group_id) if (group_id == TERMINATE_ALL || groupid == td->groupid) { dprint(FD_PROCESS, "setting terminate on %s/%d\n", td->o.name, (int) td->pid); - td->terminate = 1; + + if (td->terminate) + continue; + + fio_mark_td_terminate(td); td->o.start_delay = 0; /* @@ -233,6 +245,24 @@ int fio_running_or_pending_io_threads(void) return 0; } +int fio_set_fd_nonblocking(int fd, const char *who) +{ + int flags; + + flags = fcntl(fd, F_GETFL); + if (flags < 0) + log_err("fio: %s failed to get file flags: %s\n", who, strerror(errno)); + else { + int new_flags = flags | O_NONBLOCK; + + new_flags = fcntl(fd, F_SETFL, new_flags); + if (new_flags < 0) + log_err("fio: %s failed to get file flags: %s\n", who, strerror(errno)); + } + + return flags; +} + static int endian_check(void) { union {