From: John Snow Date: Fri, 8 Jul 2022 15:34:52 +0000 (-0400) Subject: qga: treat get-guest-fsinfo as "best effort" X-Git-Tag: v7.1.0-rc0~13^2~13 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=bbb0151cf2e82489120a15df5e2eb9653312b0ec;p=thirdparty%2Fqemu.git qga: treat get-guest-fsinfo as "best effort" In some container environments, there may be references to block devices witnessable from a container through /proc/self/mountinfo that reference devices we simply don't have access to in the container, and cannot provide information about. Instead of failing the entire fsinfo command, return stub information for these failed lookups. This allows test-qga to pass under docker tests, which are in turn used by the CentOS VM tests. Signed-off-by: John Snow Reviewed-by: Marc-André Lureau Message-Id: <20220708153503.18864-2-jsnow@redhat.com> Signed-off-by: Thomas Huth --- diff --git a/qga/commands-posix.c b/qga/commands-posix.c index f18530d85f0..954efed01b2 100644 --- a/qga/commands-posix.c +++ b/qga/commands-posix.c @@ -1207,7 +1207,15 @@ static void build_guest_fsinfo_for_device(char const *devpath, syspath = realpath(devpath, NULL); if (!syspath) { - error_setg_errno(errp, errno, "realpath(\"%s\")", devpath); + if (errno != ENOENT) { + error_setg_errno(errp, errno, "realpath(\"%s\")", devpath); + return; + } + + /* ENOENT: This devpath may not exist because of container config */ + if (!fs->name) { + fs->name = g_path_get_basename(devpath); + } return; }