public inbox for ltp@lists.linux.it
 help / color / mirror / Atom feed
* [LTP] [PATCH v2 1/3] tst_umount: Fail immediately when errno != EBUSY
@ 2020-02-10 12:40 Petr Vorel
  2020-02-10 12:40 ` [LTP] [PATCH v2 2/3] safe_macros: Use tst_umount() in safe_umount() Petr Vorel
  2020-02-16  5:51 ` [LTP] [PATCH v2 1/3] tst_umount: Fail immediately when errno != EBUSY Li Wang
  0 siblings, 2 replies; 4+ messages in thread
From: Petr Vorel @ 2020-02-10 12:40 UTC (permalink / raw)
  To: ltp

Only on EBUSY makes sense to keep trying in a loop.
This helps to use tst_umount() in safe_umount() (next commit).

Suggested-by: Cyril Hrubis <chrubis@suse.cz>
Reported-by: Jan Stancek <jstancek@redhat.com>
Signed-off-by: Petr Vorel <pvorel@suse.cz>
---
 lib/tst_device.c | 7 +++++++
 1 file changed, 7 insertions(+)

diff --git a/lib/tst_device.c b/lib/tst_device.c
index 89b9c96de..6cad9bd4d 100644
--- a/lib/tst_device.c
+++ b/lib/tst_device.c
@@ -363,6 +363,13 @@ int tst_umount(const char *path)
 		if (!ret)
 			return 0;
 
+		if (err != EBUSY) {
+			tst_resm(TWARN, "umount('%s') failed with %s",
+		         path, tst_strerrno(err));
+			errno = err;
+			return ret;
+		}
+
 		tst_resm(TINFO, "umount('%s') failed with %s, try %2i...",
 		         path, tst_strerrno(err), i+1);
 
-- 
2.24.1


^ permalink raw reply related	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2020-02-16 13:23 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2020-02-10 12:40 [LTP] [PATCH v2 1/3] tst_umount: Fail immediately when errno != EBUSY Petr Vorel
2020-02-10 12:40 ` [LTP] [PATCH v2 2/3] safe_macros: Use tst_umount() in safe_umount() Petr Vorel
2020-02-16  5:51 ` [LTP] [PATCH v2 1/3] tst_umount: Fail immediately when errno != EBUSY Li Wang
2020-02-16 13:23   ` Petr Vorel

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox