From 75235304c102ab63035b270d5932c87744d52b3e Mon Sep 17 00:00:00 2001 From: Albert Chu Date: Wed, 25 Sep 2024 15:19:12 -0700 Subject: [PATCH] libsubprocess: increase output watcher priority Problem: If a output buffer is full, we issue an emergency call to the user's output callback to empty the buffer before more data is put in it. This is done because we cannot control the order in which check callbacks are called. Now that check callbacks can have priority set, we can ensure output check callbacks are called first before a check callback that may put more data in the buffer. Set the priority of the output check watcher higher than the default. Remove the now unnecessary emergency callback to the user's output callback. Fixes #6302 --- src/common/libsubprocess/remote.c | 15 +++++++-------- 1 file changed, 7 insertions(+), 8 deletions(-) diff --git a/src/common/libsubprocess/remote.c b/src/common/libsubprocess/remote.c index d7ccaedcecee..e1caaf3c936b 100644 --- a/src/common/libsubprocess/remote.c +++ b/src/common/libsubprocess/remote.c @@ -278,7 +278,13 @@ static int remote_channel_setup (flux_subprocess_t *p, llog_debug (p, "flux_check_watcher_create: %s", strerror (errno)); goto error; } - + /* the output check should be called before other check + * callbacks, to ensure that the output buffer is emptied + * before any check callbacks that may move data into the + * buffer. So we up the priority of the output check + * watcher. + */ + flux_watcher_set_priority (c->out_check_w, 1); /* don't start these watchers until we've reached the running * state */ } @@ -442,13 +448,6 @@ static int remote_output_buffered (flux_subprocess_t *p, if (data && len) { int tmp; - /* In the event the buffer is full, the `fbuf_write()` will - * fail. Call user callback to give them a chance to empty - * buffer. If they don't, we'll hit error below. - */ - if (!fbuf_space (c->read_buffer)) - c->output_cb (c->p, c->name); - tmp = fbuf_write (c->read_buffer, data, len); if (tmp >= 0 && tmp < len) { errno = ENOSPC; // short write is promoted to fatal error