2017-04-04 12:22:31 -04:00
|
|
|
/*
|
|
|
|
* qemu_extdevice.h: QEMU external devices support
|
|
|
|
*
|
|
|
|
* Copyright (C) 2018 IBM Corporation
|
|
|
|
*
|
|
|
|
* 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/>.
|
|
|
|
*/
|
2018-12-13 13:32:06 +00:00
|
|
|
|
2019-06-18 11:12:37 -05:00
|
|
|
#pragma once
|
2017-04-04 12:22:31 -04:00
|
|
|
|
2019-06-18 11:12:37 -05:00
|
|
|
#include "qemu_conf.h"
|
|
|
|
#include "qemu_domain.h"
|
2017-04-04 12:22:31 -04:00
|
|
|
|
2021-03-11 08:16:13 +01:00
|
|
|
int qemuExtDeviceLogCommand(virQEMUDriver *driver,
|
|
|
|
virDomainObj *vm,
|
|
|
|
virCommand *cmd,
|
2017-04-04 12:22:31 -04:00
|
|
|
const char *info)
|
2019-08-08 18:54:55 +04:00
|
|
|
ATTRIBUTE_NONNULL(1) ATTRIBUTE_NONNULL(2) ATTRIBUTE_NONNULL(3) ATTRIBUTE_NONNULL(4)
|
2019-10-14 14:25:14 +02:00
|
|
|
G_GNUC_WARN_UNUSED_RESULT;
|
2017-04-04 12:22:31 -04:00
|
|
|
|
2022-12-05 13:08:25 +01:00
|
|
|
int
|
|
|
|
qemuExtDevicesInitPaths(virQEMUDriver *driver,
|
|
|
|
virDomainDef *def)
|
|
|
|
ATTRIBUTE_NONNULL(1) ATTRIBUTE_NONNULL(2) G_GNUC_WARN_UNUSED_RESULT;
|
|
|
|
|
2021-03-11 08:16:13 +01:00
|
|
|
int qemuExtDevicesPrepareDomain(virQEMUDriver *driver,
|
|
|
|
virDomainObj *vm)
|
2019-09-23 14:44:40 +04:00
|
|
|
ATTRIBUTE_NONNULL(1) ATTRIBUTE_NONNULL(2)
|
2019-10-14 14:25:14 +02:00
|
|
|
G_GNUC_WARN_UNUSED_RESULT;
|
2019-09-23 14:44:40 +04:00
|
|
|
|
2021-03-11 08:16:13 +01:00
|
|
|
int qemuExtDevicesPrepareHost(virQEMUDriver *driver,
|
|
|
|
virDomainObj *vm)
|
2017-04-04 12:22:31 -04:00
|
|
|
ATTRIBUTE_NONNULL(1) ATTRIBUTE_NONNULL(2)
|
2019-10-14 14:25:14 +02:00
|
|
|
G_GNUC_WARN_UNUSED_RESULT;
|
2017-04-04 12:22:31 -04:00
|
|
|
|
2021-03-11 08:16:13 +01:00
|
|
|
void qemuExtDevicesCleanupHost(virQEMUDriver *driver,
|
2022-10-04 09:38:13 -04:00
|
|
|
virDomainDef *def,
|
2022-10-24 06:28:48 -04:00
|
|
|
virDomainUndefineFlagsValues flags,
|
|
|
|
bool outgoingMigration)
|
2017-04-04 12:22:31 -04:00
|
|
|
ATTRIBUTE_NONNULL(1) ATTRIBUTE_NONNULL(2);
|
|
|
|
|
2021-03-11 08:16:13 +01:00
|
|
|
int qemuExtDevicesStart(virQEMUDriver *driver,
|
|
|
|
virDomainObj *vm,
|
2019-07-26 16:41:10 -04:00
|
|
|
bool incomingMigration)
|
2019-08-08 18:54:55 +04:00
|
|
|
ATTRIBUTE_NONNULL(1) ATTRIBUTE_NONNULL(2)
|
2019-10-14 14:25:14 +02:00
|
|
|
G_GNUC_WARN_UNUSED_RESULT;
|
2017-04-04 12:22:31 -04:00
|
|
|
|
2021-03-11 08:16:13 +01:00
|
|
|
void qemuExtDevicesStop(virQEMUDriver *driver,
|
2022-10-24 06:28:48 -04:00
|
|
|
virDomainObj *vm,
|
|
|
|
bool outgoingMigration)
|
2017-04-04 12:22:31 -04:00
|
|
|
ATTRIBUTE_NONNULL(1) ATTRIBUTE_NONNULL(2);
|
|
|
|
|
2021-03-11 08:16:13 +01:00
|
|
|
bool qemuExtDevicesHasDevice(virDomainDef *def);
|
2018-04-05 15:06:55 -04:00
|
|
|
|
2021-03-11 08:16:13 +01:00
|
|
|
int qemuExtDevicesSetupCgroup(virQEMUDriver *driver,
|
|
|
|
virDomainObj *vm,
|
|
|
|
virCgroup *cgroup);
|