2013-10-23 13:44:40 +00:00
|
|
|
/*
|
2014-03-17 09:38:38 +00:00
|
|
|
* Copyright (C) 2013, 2014 Red Hat, Inc.
|
2013-10-23 13:44:40 +00:00
|
|
|
*
|
|
|
|
* This library is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU Lesser General Public
|
|
|
|
* License as published by the Free Software Foundation; either
|
|
|
|
* version 2.1 of the License, or (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This library is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
* Lesser General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Lesser General Public
|
|
|
|
* License along with this library. If not, see
|
|
|
|
* <http://www.gnu.org/licenses/>.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <config.h>
|
|
|
|
|
|
|
|
#include "testutils.h"
|
|
|
|
|
|
|
|
#ifdef __linux__
|
|
|
|
|
|
|
|
# include <sys/types.h>
|
|
|
|
# include <sys/stat.h>
|
|
|
|
# include <fcntl.h>
|
|
|
|
# include <virpci.h>
|
|
|
|
|
|
|
|
# define VIR_FROM_THIS VIR_FROM_NONE
|
|
|
|
|
2014-01-15 09:20:55 +00:00
|
|
|
static int
|
|
|
|
testVirPCIDeviceCheckDriver(virPCIDevicePtr dev, const char *expected)
|
|
|
|
{
|
|
|
|
char *path = NULL;
|
|
|
|
char *driver = NULL;
|
|
|
|
int ret = -1;
|
|
|
|
|
|
|
|
if (virPCIDeviceGetDriverPathAndName(dev, &path, &driver) < 0)
|
|
|
|
goto cleanup;
|
|
|
|
|
|
|
|
if (STRNEQ_NULLABLE(driver, expected)) {
|
|
|
|
virReportError(VIR_ERR_INTERNAL_ERROR,
|
|
|
|
"PCI device %s driver mismatch: %s, expecting %s",
|
|
|
|
virPCIDeviceGetName(dev), NULLSTR(driver),
|
|
|
|
NULLSTR(expected));
|
|
|
|
goto cleanup;
|
|
|
|
}
|
|
|
|
|
|
|
|
ret = 0;
|
2014-03-25 06:53:44 +00:00
|
|
|
cleanup:
|
2014-01-15 09:20:55 +00:00
|
|
|
VIR_FREE(path);
|
|
|
|
VIR_FREE(driver);
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
2013-10-23 13:44:40 +00:00
|
|
|
static int
|
2019-10-14 12:45:03 +00:00
|
|
|
testVirPCIDeviceNew(const void *opaque G_GNUC_UNUSED)
|
2013-10-23 13:44:40 +00:00
|
|
|
{
|
|
|
|
int ret = -1;
|
|
|
|
virPCIDevicePtr dev;
|
|
|
|
const char *devName;
|
|
|
|
|
|
|
|
if (!(dev = virPCIDeviceNew(0, 0, 0, 0)))
|
|
|
|
goto cleanup;
|
|
|
|
|
|
|
|
devName = virPCIDeviceGetName(dev);
|
|
|
|
if (STRNEQ(devName, "0000:00:00.0")) {
|
|
|
|
virReportError(VIR_ERR_INTERNAL_ERROR,
|
|
|
|
"PCI device name mismatch: %s, expecting %s",
|
|
|
|
devName, "0000:00:00.0");
|
|
|
|
goto cleanup;
|
|
|
|
}
|
|
|
|
|
|
|
|
ret = 0;
|
2014-03-25 06:53:44 +00:00
|
|
|
cleanup:
|
2013-10-23 13:44:40 +00:00
|
|
|
virPCIDeviceFree(dev);
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
2017-11-03 12:09:47 +00:00
|
|
|
# define CHECK_LIST_COUNT(list, cnt) \
|
|
|
|
if ((count = virPCIDeviceListCount(list)) != cnt) { \
|
|
|
|
virReportError(VIR_ERR_INTERNAL_ERROR, \
|
|
|
|
"Unexpected count of items in " #list ": %d, " \
|
|
|
|
"expecting %zu", count, (size_t) cnt); \
|
|
|
|
goto cleanup; \
|
2013-10-23 15:55:02 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static int
|
2019-10-14 12:45:03 +00:00
|
|
|
testVirPCIDeviceDetach(const void *opaque G_GNUC_UNUSED)
|
2013-10-23 15:55:02 +00:00
|
|
|
{
|
|
|
|
int ret = -1;
|
2013-11-05 14:07:49 +00:00
|
|
|
virPCIDevicePtr dev[] = {NULL, NULL, NULL};
|
2019-10-15 11:55:26 +00:00
|
|
|
size_t i, nDev = G_N_ELEMENTS(dev);
|
2013-10-23 15:55:02 +00:00
|
|
|
virPCIDeviceListPtr activeDevs = NULL, inactiveDevs = NULL;
|
|
|
|
int count;
|
|
|
|
|
2013-11-05 14:07:49 +00:00
|
|
|
if (!(activeDevs = virPCIDeviceListNew()) ||
|
2013-10-23 15:55:02 +00:00
|
|
|
!(inactiveDevs = virPCIDeviceListNew()))
|
|
|
|
goto cleanup;
|
|
|
|
|
|
|
|
CHECK_LIST_COUNT(activeDevs, 0);
|
|
|
|
CHECK_LIST_COUNT(inactiveDevs, 0);
|
|
|
|
|
2013-11-05 14:07:49 +00:00
|
|
|
for (i = 0; i < nDev; i++) {
|
2015-10-23 09:54:07 +00:00
|
|
|
if (!(dev[i] = virPCIDeviceNew(0, 0, i + 1, 0)))
|
2013-11-05 14:07:49 +00:00
|
|
|
goto cleanup;
|
2013-10-23 15:55:02 +00:00
|
|
|
|
2019-08-14 10:09:47 +00:00
|
|
|
virPCIDeviceSetStubDriver(dev[i], VIR_PCI_STUB_DRIVER_VFIO);
|
2015-10-23 09:54:07 +00:00
|
|
|
|
2013-11-05 14:07:49 +00:00
|
|
|
if (virPCIDeviceDetach(dev[i], activeDevs, inactiveDevs) < 0)
|
|
|
|
goto cleanup;
|
2013-10-23 15:55:02 +00:00
|
|
|
|
2019-08-14 10:09:47 +00:00
|
|
|
if (testVirPCIDeviceCheckDriver(dev[i], "vfio-pci") < 0)
|
2014-01-15 09:20:55 +00:00
|
|
|
goto cleanup;
|
|
|
|
|
2013-11-05 14:07:49 +00:00
|
|
|
CHECK_LIST_COUNT(activeDevs, 0);
|
|
|
|
CHECK_LIST_COUNT(inactiveDevs, i + 1);
|
|
|
|
}
|
|
|
|
|
|
|
|
ret = 0;
|
2014-03-25 06:53:44 +00:00
|
|
|
cleanup:
|
2013-11-05 14:07:49 +00:00
|
|
|
for (i = 0; i < nDev; i++)
|
|
|
|
virPCIDeviceFree(dev[i]);
|
|
|
|
virObjectUnref(activeDevs);
|
|
|
|
virObjectUnref(inactiveDevs);
|
|
|
|
return ret;
|
|
|
|
}
|
2013-10-23 15:55:02 +00:00
|
|
|
|
2013-11-05 14:07:49 +00:00
|
|
|
static int
|
2019-10-14 12:45:03 +00:00
|
|
|
testVirPCIDeviceReset(const void *opaque G_GNUC_UNUSED)
|
2013-11-05 14:07:49 +00:00
|
|
|
{
|
|
|
|
int ret = -1;
|
|
|
|
virPCIDevicePtr dev[] = {NULL, NULL, NULL};
|
2019-10-15 11:55:26 +00:00
|
|
|
size_t i, nDev = G_N_ELEMENTS(dev);
|
2013-11-05 14:07:49 +00:00
|
|
|
virPCIDeviceListPtr activeDevs = NULL, inactiveDevs = NULL;
|
|
|
|
int count;
|
|
|
|
|
|
|
|
if (!(activeDevs = virPCIDeviceListNew()) ||
|
|
|
|
!(inactiveDevs = virPCIDeviceListNew()))
|
2013-10-31 11:05:20 +00:00
|
|
|
goto cleanup;
|
|
|
|
|
|
|
|
CHECK_LIST_COUNT(activeDevs, 0);
|
2013-11-05 14:07:49 +00:00
|
|
|
CHECK_LIST_COUNT(inactiveDevs, 0);
|
|
|
|
|
|
|
|
for (i = 0; i < nDev; i++) {
|
2015-10-23 09:54:07 +00:00
|
|
|
if (!(dev[i] = virPCIDeviceNew(0, 0, i + 1, 0)))
|
2013-11-05 14:07:49 +00:00
|
|
|
goto cleanup;
|
|
|
|
|
2019-08-14 10:09:47 +00:00
|
|
|
virPCIDeviceSetStubDriver(dev[i], VIR_PCI_STUB_DRIVER_VFIO);
|
2015-10-23 09:54:07 +00:00
|
|
|
|
2013-11-05 14:07:49 +00:00
|
|
|
if (virPCIDeviceReset(dev[i], activeDevs, inactiveDevs) < 0)
|
|
|
|
goto cleanup;
|
|
|
|
}
|
2013-10-31 11:05:20 +00:00
|
|
|
|
2013-10-23 15:55:02 +00:00
|
|
|
ret = 0;
|
2014-03-25 06:53:44 +00:00
|
|
|
cleanup:
|
2013-11-05 14:07:49 +00:00
|
|
|
for (i = 0; i < nDev; i++)
|
|
|
|
virPCIDeviceFree(dev[i]);
|
2013-10-23 15:55:02 +00:00
|
|
|
virObjectUnref(activeDevs);
|
|
|
|
virObjectUnref(inactiveDevs);
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
2013-10-31 10:57:56 +00:00
|
|
|
static int
|
2019-10-14 12:45:03 +00:00
|
|
|
testVirPCIDeviceReattach(const void *opaque G_GNUC_UNUSED)
|
2013-10-31 10:57:56 +00:00
|
|
|
{
|
|
|
|
int ret = -1;
|
2013-11-05 14:07:49 +00:00
|
|
|
virPCIDevicePtr dev[] = {NULL, NULL, NULL};
|
2019-10-15 11:55:26 +00:00
|
|
|
size_t i, nDev = G_N_ELEMENTS(dev);
|
2013-10-31 10:57:56 +00:00
|
|
|
virPCIDeviceListPtr activeDevs = NULL, inactiveDevs = NULL;
|
|
|
|
int count;
|
|
|
|
|
2013-11-05 14:07:49 +00:00
|
|
|
if (!(activeDevs = virPCIDeviceListNew()) ||
|
2013-10-31 10:57:56 +00:00
|
|
|
!(inactiveDevs = virPCIDeviceListNew()))
|
|
|
|
goto cleanup;
|
|
|
|
|
2013-11-05 14:07:49 +00:00
|
|
|
for (i = 0; i < nDev; i++) {
|
|
|
|
if (!(dev[i] = virPCIDeviceNew(0, 0, i + 1, 0)))
|
|
|
|
goto cleanup;
|
2013-10-31 10:57:56 +00:00
|
|
|
|
2013-11-05 14:07:49 +00:00
|
|
|
if (virPCIDeviceListAdd(inactiveDevs, dev[i]) < 0) {
|
|
|
|
virPCIDeviceFree(dev[i]);
|
|
|
|
goto cleanup;
|
|
|
|
}
|
2013-10-31 10:57:56 +00:00
|
|
|
|
2013-11-05 14:07:49 +00:00
|
|
|
CHECK_LIST_COUNT(activeDevs, 0);
|
|
|
|
CHECK_LIST_COUNT(inactiveDevs, i + 1);
|
2013-10-31 10:57:56 +00:00
|
|
|
|
2019-08-14 10:09:47 +00:00
|
|
|
virPCIDeviceSetStubDriver(dev[i], VIR_PCI_STUB_DRIVER_VFIO);
|
2013-11-05 14:07:49 +00:00
|
|
|
}
|
2013-10-31 10:57:56 +00:00
|
|
|
|
2013-10-31 11:05:20 +00:00
|
|
|
CHECK_LIST_COUNT(activeDevs, 0);
|
2013-11-05 14:07:49 +00:00
|
|
|
CHECK_LIST_COUNT(inactiveDevs, nDev);
|
2013-10-31 11:05:20 +00:00
|
|
|
|
2013-11-05 14:07:49 +00:00
|
|
|
for (i = 0; i < nDev; i++) {
|
|
|
|
if (virPCIDeviceReattach(dev[i], activeDevs, inactiveDevs) < 0)
|
|
|
|
goto cleanup;
|
2013-10-31 11:05:20 +00:00
|
|
|
|
2013-11-05 14:07:49 +00:00
|
|
|
CHECK_LIST_COUNT(activeDevs, 0);
|
|
|
|
CHECK_LIST_COUNT(inactiveDevs, nDev - i - 1);
|
|
|
|
}
|
2013-10-31 10:57:56 +00:00
|
|
|
|
|
|
|
ret = 0;
|
2014-03-25 06:53:44 +00:00
|
|
|
cleanup:
|
2013-10-31 10:57:56 +00:00
|
|
|
virObjectUnref(activeDevs);
|
|
|
|
virObjectUnref(inactiveDevs);
|
|
|
|
return ret;
|
|
|
|
}
|
2013-11-05 14:07:49 +00:00
|
|
|
|
2013-12-24 18:07:27 +00:00
|
|
|
struct testPCIDevData {
|
|
|
|
unsigned int domain;
|
|
|
|
unsigned int bus;
|
|
|
|
unsigned int slot;
|
|
|
|
unsigned int function;
|
2014-01-15 09:20:55 +00:00
|
|
|
const char *driver;
|
2013-12-24 18:07:27 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
static int
|
|
|
|
testVirPCIDeviceIsAssignable(const void *opaque)
|
|
|
|
{
|
|
|
|
const struct testPCIDevData *data = opaque;
|
|
|
|
int ret = -1;
|
|
|
|
virPCIDevicePtr dev;
|
|
|
|
|
|
|
|
if (!(dev = virPCIDeviceNew(data->domain, data->bus, data->slot, data->function)))
|
2019-11-12 20:46:29 +00:00
|
|
|
return -1;
|
2013-12-24 18:07:27 +00:00
|
|
|
|
|
|
|
if (virPCIDeviceIsAssignable(dev, true))
|
|
|
|
ret = 0;
|
|
|
|
|
|
|
|
virPCIDeviceFree(dev);
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
2014-01-15 09:20:55 +00:00
|
|
|
static int
|
|
|
|
testVirPCIDeviceDetachSingle(const void *opaque)
|
|
|
|
{
|
|
|
|
const struct testPCIDevData *data = opaque;
|
|
|
|
int ret = -1;
|
|
|
|
virPCIDevicePtr dev;
|
|
|
|
|
|
|
|
dev = virPCIDeviceNew(data->domain, data->bus, data->slot, data->function);
|
|
|
|
if (!dev)
|
|
|
|
goto cleanup;
|
|
|
|
|
2019-08-14 10:09:47 +00:00
|
|
|
virPCIDeviceSetStubDriver(dev, VIR_PCI_STUB_DRIVER_VFIO);
|
2015-10-23 09:54:07 +00:00
|
|
|
|
|
|
|
if (virPCIDeviceDetach(dev, NULL, NULL) < 0)
|
2014-01-15 09:20:55 +00:00
|
|
|
goto cleanup;
|
|
|
|
|
|
|
|
ret = 0;
|
2014-03-25 06:53:44 +00:00
|
|
|
cleanup:
|
2014-01-15 09:20:55 +00:00
|
|
|
virPCIDeviceFree(dev);
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int
|
|
|
|
testVirPCIDeviceReattachSingle(const void *opaque)
|
|
|
|
{
|
|
|
|
const struct testPCIDevData *data = opaque;
|
|
|
|
int ret = -1;
|
|
|
|
virPCIDevicePtr dev;
|
|
|
|
|
|
|
|
dev = virPCIDeviceNew(data->domain, data->bus, data->slot, data->function);
|
|
|
|
if (!dev)
|
|
|
|
goto cleanup;
|
|
|
|
|
2016-01-19 14:58:31 +00:00
|
|
|
virPCIDeviceSetUnbindFromStub(dev, true);
|
|
|
|
virPCIDeviceSetRemoveSlot(dev, true);
|
|
|
|
virPCIDeviceSetReprobe(dev, true);
|
|
|
|
|
2014-01-15 09:20:55 +00:00
|
|
|
if (virPCIDeviceReattach(dev, NULL, NULL) < 0)
|
|
|
|
goto cleanup;
|
|
|
|
|
|
|
|
ret = 0;
|
2014-03-25 06:53:44 +00:00
|
|
|
cleanup:
|
2014-01-15 09:20:55 +00:00
|
|
|
virPCIDeviceFree(dev);
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int
|
|
|
|
testVirPCIDeviceCheckDriverTest(const void *opaque)
|
|
|
|
{
|
|
|
|
const struct testPCIDevData *data = opaque;
|
|
|
|
int ret = -1;
|
|
|
|
virPCIDevicePtr dev;
|
|
|
|
|
|
|
|
dev = virPCIDeviceNew(data->domain, data->bus, data->slot, data->function);
|
|
|
|
if (!dev)
|
|
|
|
goto cleanup;
|
|
|
|
|
|
|
|
if (testVirPCIDeviceCheckDriver(dev, data->driver) < 0)
|
|
|
|
goto cleanup;
|
|
|
|
|
|
|
|
ret = 0;
|
2014-03-25 06:53:44 +00:00
|
|
|
cleanup:
|
2014-01-15 09:20:55 +00:00
|
|
|
virPCIDeviceFree(dev);
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int
|
|
|
|
testVirPCIDeviceUnbind(const void *opaque)
|
|
|
|
{
|
|
|
|
const struct testPCIDevData *data = opaque;
|
|
|
|
int ret = -1;
|
|
|
|
virPCIDevicePtr dev;
|
|
|
|
|
|
|
|
dev = virPCIDeviceNew(data->domain, data->bus, data->slot, data->function);
|
|
|
|
if (!dev)
|
|
|
|
goto cleanup;
|
|
|
|
|
2015-10-29 15:09:54 +00:00
|
|
|
if (virPCIDeviceUnbind(dev) < 0)
|
2014-01-15 09:20:55 +00:00
|
|
|
goto cleanup;
|
|
|
|
|
|
|
|
ret = 0;
|
2014-03-25 06:53:44 +00:00
|
|
|
cleanup:
|
2014-01-15 09:20:55 +00:00
|
|
|
virPCIDeviceFree(dev);
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
2015-12-04 12:38:16 +00:00
|
|
|
# define FAKEROOTDIRTEMPLATE abs_builddir "/fakerootdir-XXXXXX"
|
2013-11-05 14:07:49 +00:00
|
|
|
|
2013-10-23 13:44:40 +00:00
|
|
|
static int
|
|
|
|
mymain(void)
|
|
|
|
{
|
|
|
|
int ret = 0;
|
2015-12-04 12:38:16 +00:00
|
|
|
char *fakerootdir;
|
2013-10-23 13:44:40 +00:00
|
|
|
|
2019-10-20 11:49:46 +00:00
|
|
|
fakerootdir = g_strdup(FAKEROOTDIRTEMPLATE);
|
2013-10-23 13:44:40 +00:00
|
|
|
|
2019-11-13 21:35:47 +00:00
|
|
|
if (!g_mkdtemp(fakerootdir)) {
|
2015-12-04 12:38:16 +00:00
|
|
|
VIR_TEST_DEBUG("Cannot create fakerootdir");
|
2013-10-23 13:44:40 +00:00
|
|
|
abort();
|
|
|
|
}
|
|
|
|
|
2019-12-18 17:16:19 +00:00
|
|
|
g_setenv("LIBVIRT_FAKE_ROOT_DIR", fakerootdir, TRUE);
|
2013-10-23 13:44:40 +00:00
|
|
|
|
2017-11-03 12:09:47 +00:00
|
|
|
# define DO_TEST(fnc) \
|
|
|
|
do { \
|
|
|
|
if (virTestRun(#fnc, fnc, NULL) < 0) \
|
|
|
|
ret = -1; \
|
2013-10-23 13:44:40 +00:00
|
|
|
} while (0)
|
|
|
|
|
2017-11-03 12:09:47 +00:00
|
|
|
# define DO_TEST_PCI(fnc, domain, bus, slot, function) \
|
|
|
|
do { \
|
|
|
|
struct testPCIDevData data = { \
|
|
|
|
domain, bus, slot, function, NULL \
|
|
|
|
}; \
|
|
|
|
char *label = NULL; \
|
2019-10-22 13:26:14 +00:00
|
|
|
label = g_strdup_printf("%s(%04x:%02x:%02x.%x)", \
|
|
|
|
#fnc, domain, bus, slot, function); \
|
2017-11-03 12:09:47 +00:00
|
|
|
if (virTestRun(label, fnc, &data) < 0) \
|
|
|
|
ret = -1; \
|
|
|
|
VIR_FREE(label); \
|
2013-12-24 18:07:27 +00:00
|
|
|
} while (0)
|
|
|
|
|
2017-11-03 12:09:47 +00:00
|
|
|
# define DO_TEST_PCI_DRIVER(domain, bus, slot, function, driver) \
|
|
|
|
do { \
|
|
|
|
struct testPCIDevData data = { \
|
|
|
|
domain, bus, slot, function, driver \
|
|
|
|
}; \
|
|
|
|
char *label = NULL; \
|
2019-10-22 13:26:14 +00:00
|
|
|
label = g_strdup_printf("PCI driver %04x:%02x:%02x.%x is %s", \
|
|
|
|
domain, bus, slot, function, \
|
|
|
|
NULLSTR(driver)); \
|
2017-11-03 12:09:47 +00:00
|
|
|
if (virTestRun(label, testVirPCIDeviceCheckDriverTest, \
|
|
|
|
&data) < 0) \
|
|
|
|
ret = -1; \
|
|
|
|
VIR_FREE(label); \
|
2014-01-15 09:20:55 +00:00
|
|
|
} while (0)
|
|
|
|
|
|
|
|
/* Changes made to individual devices are persistent and the
|
|
|
|
* tests often rely on the state set by previous tests.
|
|
|
|
*/
|
|
|
|
|
2013-10-23 13:44:40 +00:00
|
|
|
DO_TEST(testVirPCIDeviceNew);
|
2013-10-23 15:55:02 +00:00
|
|
|
DO_TEST(testVirPCIDeviceDetach);
|
2013-11-05 14:07:49 +00:00
|
|
|
DO_TEST(testVirPCIDeviceReset);
|
2013-10-31 10:57:56 +00:00
|
|
|
DO_TEST(testVirPCIDeviceReattach);
|
2013-12-24 18:07:27 +00:00
|
|
|
DO_TEST_PCI(testVirPCIDeviceIsAssignable, 5, 0x90, 1, 0);
|
|
|
|
DO_TEST_PCI(testVirPCIDeviceIsAssignable, 1, 1, 0, 0);
|
2013-10-23 13:44:40 +00:00
|
|
|
|
2014-01-15 09:20:55 +00:00
|
|
|
/* Reattach a device already bound to non-stub a driver */
|
|
|
|
DO_TEST_PCI_DRIVER(0, 0x0a, 1, 0, "i915");
|
|
|
|
DO_TEST_PCI(testVirPCIDeviceReattachSingle, 0, 0x0a, 1, 0);
|
|
|
|
DO_TEST_PCI_DRIVER(0, 0x0a, 1, 0, "i915");
|
|
|
|
|
|
|
|
/* Reattach an unbound device */
|
|
|
|
DO_TEST_PCI(testVirPCIDeviceUnbind, 0, 0x0a, 1, 0);
|
|
|
|
DO_TEST_PCI_DRIVER(0, 0x0a, 1, 0, NULL);
|
|
|
|
DO_TEST_PCI(testVirPCIDeviceReattachSingle, 0, 0x0a, 1, 0);
|
|
|
|
DO_TEST_PCI_DRIVER(0, 0x0a, 1, 0, "i915");
|
|
|
|
|
|
|
|
/* Detach an unbound device */
|
|
|
|
DO_TEST_PCI_DRIVER(0, 0x0a, 2, 0, NULL);
|
|
|
|
DO_TEST_PCI(testVirPCIDeviceDetachSingle, 0, 0x0a, 2, 0);
|
2019-08-14 10:09:47 +00:00
|
|
|
DO_TEST_PCI_DRIVER(0, 0x0a, 2, 0, "vfio-pci");
|
2014-01-15 09:20:55 +00:00
|
|
|
|
|
|
|
/* Reattach an unknown unbound device */
|
|
|
|
DO_TEST_PCI_DRIVER(0, 0x0a, 3, 0, NULL);
|
|
|
|
DO_TEST_PCI(testVirPCIDeviceReattachSingle, 0, 0x0a, 3, 0);
|
|
|
|
DO_TEST_PCI_DRIVER(0, 0x0a, 3, 0, NULL);
|
|
|
|
|
2013-10-23 13:44:40 +00:00
|
|
|
if (getenv("LIBVIRT_SKIP_CLEANUP") == NULL)
|
2015-12-04 12:38:16 +00:00
|
|
|
virFileDeleteTree(fakerootdir);
|
2013-10-23 13:44:40 +00:00
|
|
|
|
2015-12-04 12:38:16 +00:00
|
|
|
VIR_FREE(fakerootdir);
|
2013-10-23 13:44:40 +00:00
|
|
|
|
2014-03-17 09:38:38 +00:00
|
|
|
return ret == 0 ? EXIT_SUCCESS : EXIT_FAILURE;
|
2013-10-23 13:44:40 +00:00
|
|
|
}
|
|
|
|
|
2019-08-21 16:13:16 +00:00
|
|
|
VIR_TEST_MAIN_PRELOAD(mymain, VIR_TEST_MOCK("virpci"))
|
2013-10-23 13:44:40 +00:00
|
|
|
#else
|
|
|
|
int
|
|
|
|
main(void)
|
|
|
|
{
|
|
|
|
return EXIT_AM_SKIP;
|
|
|
|
}
|
|
|
|
#endif
|