The following changes since commit b9ea6e507e8849f01d06aa48c0c59c5cee4820be: doc: btrace: fix wrong format on doc (2024-01-17 16:02:23 -0700) are available in the Git repository at: git://git.kernel.dk/blktrace.git master for you to fetch changes up to 1836be5d99c9362f1e2b39206c95270f19cb7faa: fix hang when BLKTRACESETUP fails and "-o -" is used (2024-06-12 14:45:58 -0600) ---------------------------------------------------------------- Eric Sandeen (1): fix hang when BLKTRACESETUP fails and "-o -" is used blktrace.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) --- Diff of recent changes: diff --git a/blktrace.c b/blktrace.c index 3444fbb..038b2cb 100644 --- a/blktrace.c +++ b/blktrace.c @@ -2684,8 +2684,10 @@ static int run_tracers(void) if (net_mode == Net_client) printf("blktrace: connecting to %s\n", hostname); - if (setup_buts()) + if (setup_buts()) { + done = 1; return 1; + } if (use_tracer_devpaths()) { if (setup_tracer_devpaths())