From 1a128a8d8c5cc4313fa301db5381af9963940383 Mon Sep 17 00:00:00 2001 From: Ilya Dryomov Date: Tue, 7 Jan 2025 17:29:03 +0100 Subject: [PATCH] test/librbd/fsx: switch to netlink interface for rbd-nbd The default was flipped in commit fcbf7367d285 ("rbd-nbd: map using netlink interface by default") in squid. This is a reef-only fixup for fsx to counter failures like "Size error: expected 0xa5cac00 stat 0x0" which seem to be quite persistent on CentOS Stream 9. Signed-off-by: Ilya Dryomov --- src/test/librbd/fsx.cc | 1 + 1 file changed, 1 insertion(+) diff --git a/src/test/librbd/fsx.cc b/src/test/librbd/fsx.cc index a59db783cadfc..74ece99fdeb53 100644 --- a/src/test/librbd/fsx.cc +++ b/src/test/librbd/fsx.cc @@ -1254,6 +1254,7 @@ nbd_open(const char *name, struct rbd_ctx *ctx) SubProcess::KEEP); process.add_cmd_arg("map"); process.add_cmd_arg("--io-timeout=600"); + process.add_cmd_arg("--try-netlink"); std::string img; img.append(pool); img.append("/"); -- 2.39.5