From: Randy MacLeod <Randy.MacLeod@windriver.com>
To: <yocto@yoctoproject.org>, <anibal.limon@linaro.org>
Subject: [ptest-runner][PATCH v2 3/4] utils: Ensure pipes are read after exit
Date: Fri, 14 Jun 2019 10:48:52 -0400 [thread overview]
Message-ID: <20190614144853.25839-4-Randy.MacLeod@windriver.com> (raw)
In-Reply-To: <20190614144853.25839-1-Randy.MacLeod@windriver.com>
From: Richard Purdie <richard.purdie@linuxfoundation.org>
There was a race in the code where the pipes may not be read after the process has exited
and data may be left behind in them. This change to ordering ensures the pipes are read
after the exit code has been read meaning no data can be left behind and the logs should
be complete.
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Upstream-Status: Pending [code being tested]
---
utils.c | 29 ++++++++++++++++-------------
1 file changed, 16 insertions(+), 13 deletions(-)
diff --git a/utils.c b/utils.c
index 86dcdad..ad737c2 100644
--- a/utils.c
+++ b/utils.c
@@ -285,6 +285,7 @@ wait_child(const char *ptest_dir, const char *run_ptest, pid_t pid,
struct pollfd pfds[2];
struct timespec sentinel;
clockid_t clock = CLOCK_MONOTONIC;
+ int looping = 1;
int r;
int status;
@@ -302,9 +303,23 @@ wait_child(const char *ptest_dir, const char *run_ptest, pid_t pid,
*timeouted = 0;
- while (1) {
+ while (looping) {
waitflags = WNOHANG;
+ if (timeout >= 0) {
+ struct timespec time;
+
+ clock_gettime(clock, &time);
+ if ((time.tv_sec - sentinel.tv_sec) > timeout) {
+ *timeouted = 1;
+ kill(-pid, SIGKILL);
+ waitflags = 0;
+ }
+ }
+
+ if (waitpid(pid, &status, waitflags) == pid)
+ looping = 0;
+
r = poll(pfds, 2, WAIT_CHILD_POLL_TIMEOUT_MS);
if (r > 0) {
char buf[WAIT_CHILD_BUF_MAX_SIZE];
@@ -324,19 +339,7 @@ wait_child(const char *ptest_dir, const char *run_ptest, pid_t pid,
}
clock_gettime(clock, &sentinel);
- } else if (timeout >= 0) {
- struct timespec time;
-
- clock_gettime(clock, &time);
- if ((time.tv_sec - sentinel.tv_sec) > timeout) {
- *timeouted = 1;
- kill(-pid, SIGKILL);
- waitflags = 0;
- }
}
-
- if (waitpid(pid, &status, waitflags) == pid)
- break;
}
fflush(fps[0]);
--
2.17.0
next prev parent reply other threads:[~2019-06-14 14:50 UTC|newest]
Thread overview: 14+ messages / expand[flat|nested] mbox.gz Atom feed top
2019-06-13 22:39 [ptest-runner][PATCH] utils: ensure child can be session leader Randy MacLeod
2019-06-13 23:01 ` Randy MacLeod
2019-06-14 14:48 ` [ptest-runner][PATCH v2] 3 old patches + " Randy MacLeod
2019-06-14 14:48 ` [ptest-runner][PATCH v2 1/4] utils: Ensure stdout/stderr are flushed Randy MacLeod
2019-06-14 14:48 ` [ptest-runner][PATCH v2 2/4] use process groups when spawning Randy MacLeod
2019-06-14 14:48 ` Randy MacLeod [this message]
2019-06-14 14:48 ` [ptest-runner][PATCH v2 4/4] utils: ensure child can be session leader Randy MacLeod
2019-06-19 17:49 ` Randy MacLeod
2019-06-19 19:24 ` richard.purdie
2019-06-19 19:54 ` Randy MacLeod
2019-06-26 1:51 ` Anibal Limon
2019-06-26 6:56 ` richard.purdie
2019-06-26 15:55 ` Randy MacLeod
2019-06-27 15:27 ` Anibal Limon
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20190614144853.25839-4-Randy.MacLeod@windriver.com \
--to=randy.macleod@windriver.com \
--cc=anibal.limon@linaro.org \
--cc=yocto@yoctoproject.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.