From 8969cd1f19409b110c761ed5dda1d6cb57399a64 Mon Sep 17 00:00:00 2001 From: Dimitri Staessens Date: Sat, 26 Feb 2022 18:20:08 +0100 Subject: lib: Flag all flows down as the IRMd exits On exit of the IRMd all flows will now be flagged as down, so external applications will not hang anymore. Note: reads keep work from flows that are down until there are no more remaining packets in the buffer, but no more packets can be written. When the RIB is used, the external application may exit a bit later than the IRMd, so I added a brief sleep before the IRMd tries to remove the fuse main directory. Signed-off-by: Dimitri Staessens Signed-off-by: Sander Vrijders --- src/irmd/main.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'src/irmd/main.c') diff --git a/src/irmd/main.c b/src/irmd/main.c index 5923286b..4b70c88b 100644 --- a/src/irmd/main.c +++ b/src/irmd/main.c @@ -1846,8 +1846,9 @@ static void irm_fini(void) pthread_rwlock_destroy(&irmd.state_lock); #ifdef HAVE_FUSE + sleep(1); if (rmdir(FUSE_PREFIX)) - log_dbg("Failed to remove " FUSE_PREFIX); + log_warn("Failed to remove " FUSE_PREFIX); #endif } -- cgit v1.2.3