From: Wake Liu via ltp <ltp@lists.linux.it>
To: ltp@lists.linux.it
Cc: wakel@google.com
Subject: [LTP] [PATCH v7 2/2] lib: Use backoff polling to wait for loop device nodes
Date: Mon, 10 Aug 2026 02:58:17 +0000 [thread overview]
Message-ID: <20260810025817.1665141-3-wakel@google.com> (raw)
In-Reply-To: <20260810025817.1665141-1-wakel@google.com>
On systems where loop device node creation is asynchronous (such as
Android containers or systems with slow udev startup), calling stat()
or open() immediately after LOOP_CTL_GET_FREE can transiently fail
because the device file (e.g. /dev/loopX) has not been fully populated
in time.
Introduce an exponential-backoff retry loop in both
tst_find_free_loopdev() and tst_attach_device() by reusing the LTP
native TST_RETRY_FN_EXP_BACKOFF() macro (starting at 1us delay,
doubling each try, with a base timeout limit of 1 second that scales
automatically with LTP_TIMEOUT_MUL) to wait for the device node to be
successfully populated.
This improves the robustness of loop device allocations on asynchronous
virtualized environments while minimizing unnecessary delays on responsive
systems.
Signed-off-by: Wake Liu <wakel@google.com>
---
lib/tst_device.c | 13 +++++++++----
1 file changed, 9 insertions(+), 4 deletions(-)
diff --git a/lib/tst_device.c b/lib/tst_device.c
index 744173ffe..00304711b 100644
--- a/lib/tst_device.c
+++ b/lib/tst_device.c
@@ -82,7 +82,7 @@ static int set_dev_path(char *dev, char *path, size_t path_len)
int tst_find_free_loopdev(char *path, size_t path_len)
{
- int ctl_fd, dev_fd, rc, i;
+ int ctl_fd, dev_fd, rc, i, path_set;
struct loop_info loopinfo;
char buf[PATH_MAX];
@@ -93,8 +93,13 @@ int tst_find_free_loopdev(char *path, size_t path_len)
rc = ioctl(ctl_fd, LOOP_CTL_GET_FREE);
close(ctl_fd);
if (rc >= 0) {
- if (path && set_dev_loop_path(rc, path, path_len))
- tst_brkm(TBROK, NULL, "Could not stat loop device %i", rc);
+ if (path) {
+ path_set = TST_RETRY_FN_EXP_BACKOFF(
+ set_dev_loop_path(rc, path, path_len),
+ TST_RETVAL_EQ0, 1);
+ if (path_set)
+ tst_brkm(TBROK, NULL, "Could not stat loop device %i", rc);
+ }
tst_resm(TINFO, "Found free device %d '%s'",
rc, path ?: "");
return rc;
@@ -161,7 +166,7 @@ int tst_attach_device(const char *dev, const char *file)
LO_NAME_SIZE);
}
- dev_fd = open(dev, O_RDWR);
+ dev_fd = TST_RETRY_FN_EXP_BACKOFF(open(dev, O_RDWR), TST_RETVAL_GE0, 1);
if (dev_fd < 0) {
tst_resm(TWARN | TERRNO, "open('%s', O_RDWR) failed", dev);
return 1;
--
2.55.0.654.g21b8a5bc05-goog
--
Mailing list info: https://lists.linux.it/listinfo/ltp
next prev parent reply other threads:[~2026-08-10 2:59 UTC|newest]
Thread overview: 28+ messages / expand[flat|nested] mbox.gz Atom feed top
2026-08-03 15:27 [LTP] [PATCH] lib: Use exponential-backoff polling to wait for loop device nodes Wake Liu via ltp
2026-08-03 16:28 ` [LTP] " linuxtestproject.agent
2026-08-04 1:59 ` [LTP] [PATCH v2] lib: Use backoff " Wake Liu via ltp
2026-08-04 3:58 ` Li Wang
2026-08-04 15:24 ` [LTP] [PATCH v3] " Wake Liu via ltp
2026-08-05 2:24 ` Li Wang
2026-08-05 2:54 ` [LTP] [PATCH v4] " Wake Liu via ltp
2026-08-05 4:09 ` [LTP] " linuxtestproject.agent
2026-08-05 6:53 ` Li Wang
2026-08-05 6:35 ` [LTP] [PATCH v4] " Li Wang
2026-08-05 6:52 ` Andrea Cervesato via ltp
2026-08-05 6:55 ` Andrea Cervesato via ltp
2026-08-05 7:10 ` Li Wang
2026-08-07 10:04 ` [LTP] [PATCH v5] " Wake Liu via ltp
2026-08-07 11:05 ` [LTP] " linuxtestproject.agent
2026-08-07 23:49 ` [LTP] [PATCH v6] " Wake Liu via ltp
2026-08-08 1:32 ` [LTP] " linuxtestproject.agent
2026-08-10 3:55 ` Li Wang
2026-08-10 4:16 ` Wake Liu via ltp
2026-08-10 2:58 ` [LTP] [PATCH v7 0/2] Fix overflow and use backoff polling for loop devices Wake Liu via ltp
2026-08-10 2:58 ` [LTP] [PATCH v7 1/2] lib: Fix overflow in backoff polling and timeout multiplication Wake Liu via ltp
2026-08-10 3:56 ` [LTP] " linuxtestproject.agent
2026-08-10 9:17 ` [LTP] [PATCH v7 1/2] " Andrea Cervesato via ltp
2026-08-10 10:02 ` Li Wang
2026-08-10 2:58 ` Wake Liu via ltp [this message]
2026-08-10 9:17 ` [LTP] [PATCH v7 2/2] lib: Use backoff polling to wait for loop device nodes Andrea Cervesato via ltp
2026-08-10 10:10 ` [LTP] [PATCH v6] " Li Wang
2026-08-10 12:30 ` Wake Liu via ltp
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=20260810025817.1665141-3-wakel@google.com \
--to=ltp@lists.linux.it \
--cc=wakel@google.com \
/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 a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox