diff options
author | Tavian Barnes <tavianator@tavianator.com> | 2023-10-31 12:30:07 -0400 |
---|---|---|
committer | Tavian Barnes <tavianator@tavianator.com> | 2023-10-31 12:30:07 -0400 |
commit | 06ee53d5b1fc58073aaa3d57f6073256d13502f2 (patch) | |
tree | 1c5d0f4d51321cc8c0ddef47149a2cd0e54ec668 /src/bftw.c | |
parent | b18f56eaf260761d8b9154e3004587c90f8c67b8 (diff) | |
download | bfs-06ee53d5b1fc58073aaa3d57f6073256d13502f2.tar.xz |
bftw: Leave work for the main thread if profitable
Diffstat (limited to 'src/bftw.c')
-rw-r--r-- | src/bftw.c | 17 |
1 files changed, 13 insertions, 4 deletions
@@ -627,6 +627,13 @@ static int bftw_ioq_pop(struct bftw_state *state, bool block) { return op; } +/** Check if we should block on the I/O queue even if not strictly necessary. */ +static bool bftw_ioq_block(const struct bftw_state *state) { + // With more than two threads, it is faster to wait for an I/O + // operation to complete than it is to do it ourselves + return state->nthreads > 2; +} + /** Try to reserve space in the I/O queue. */ static int bftw_ioq_reserve(struct bftw_state *state) { struct ioq *ioq = state->ioq; @@ -638,10 +645,7 @@ static int bftw_ioq_reserve(struct bftw_state *state) { return 0; } - // With more than two threads, it is faster to wait for an I/O operation - // to complete than it is to do it ourselves - bool block = state->nthreads > 2; - if (bftw_ioq_pop(state, block) < 0) { + if (bftw_ioq_pop(state, bftw_ioq_block(state)) < 0) { return -1; } @@ -895,6 +899,11 @@ static void bftw_ioq_opendirs(struct bftw_state *state, struct bftw_list *queue) break; } SLIST_POP(queue); + + if (!bftw_ioq_block(state)) { + // Leave some work for the main thread + break; + } } } |