From ec60538c1b3cfe4e3677348f98d2160284162a43 Mon Sep 17 00:00:00 2001 From: Michal Privoznik Date: Tue, 13 Aug 2019 10:51:05 +0200 Subject: [PATCH] virpcimock: Create devices/ and drivers/ under /sys/bus/pci upfront In near future, we will be creating devices under different location and just symlink them under devices/. Just like real kernel does. But for that we need the directories to exist. Signed-off-by: Michal Privoznik Tested-by: Daniel Henrique Barboza Reviewed-by: Daniel Henrique Barboza --- tests/virpcimock.c | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/tests/virpcimock.c b/tests/virpcimock.c index 93275648dc..bc34c0f181 100644 --- a/tests/virpcimock.c +++ b/tests/virpcimock.c @@ -188,6 +188,19 @@ make_file(const char *path, VIR_FORCE_CLOSE(fd); } +static void +make_dir(const char *path, + const char *name) +{ + VIR_AUTOFREE(char *) dirpath = NULL; + + if (virAsprintfQuiet(&dirpath, "%s/%s", path, name) < 0) + ABORT_OOM(); + + if (virFileMakePath(dirpath) < 0) + ABORT("Unable to create: %s", dirpath); +} + static void make_symlink(const char *path, const char *name, @@ -848,6 +861,8 @@ init_env(void) if (virFileMakePath(tmp) < 0) ABORT("Unable to create: %s", tmp); + make_dir(tmp, "devices"); + make_dir(tmp, "drivers"); make_file(tmp, "drivers_probe", NULL, -1); # define MAKE_PCI_DRIVER(name, ...) \ -- GitLab