2017-04-04 16:22:31 +00: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 16:12:37 +00:00
|
|
|
#pragma once
|
2017-04-04 16:22:31 +00:00
|
|
|
|
2019-06-18 16:12:37 +00:00
|
|
|
#include "qemu_conf.h"
|
|
|
|
#include "qemu_domain.h"
|
2017-04-04 16:22:31 +00:00
|
|
|
|
2021-03-11 07:16:13 +00:00
|
|
|
int qemuExtDeviceLogCommand(virQEMUDriver *driver,
|
|
|
|
virDomainObj *vm,
|
|
|
|
virCommand *cmd,
|
2017-04-04 16:22:31 +00:00
|
|
|
const char *info)
|
2019-08-08 14:54:55 +00:00
|
|
|
ATTRIBUTE_NONNULL(1) ATTRIBUTE_NONNULL(2) ATTRIBUTE_NONNULL(3) ATTRIBUTE_NONNULL(4)
|
2019-10-14 12:25:14 +00:00
|
|
|
G_GNUC_WARN_UNUSED_RESULT;
|
2017-04-04 16:22:31 +00:00
|
|
|
|
2021-03-11 07:16:13 +00:00
|
|
|
int qemuExtDevicesPrepareDomain(virQEMUDriver *driver,
|
|
|
|
virDomainObj *vm)
|
2019-09-23 10:44:40 +00:00
|
|
|
ATTRIBUTE_NONNULL(1) ATTRIBUTE_NONNULL(2)
|
2019-10-14 12:25:14 +00:00
|
|
|
G_GNUC_WARN_UNUSED_RESULT;
|
2019-09-23 10:44:40 +00:00
|
|
|
|
2021-03-11 07:16:13 +00:00
|
|
|
int qemuExtDevicesPrepareHost(virQEMUDriver *driver,
|
|
|
|
virDomainObj *vm)
|
2017-04-04 16:22:31 +00:00
|
|
|
ATTRIBUTE_NONNULL(1) ATTRIBUTE_NONNULL(2)
|
2019-10-14 12:25:14 +00:00
|
|
|
G_GNUC_WARN_UNUSED_RESULT;
|
2017-04-04 16:22:31 +00:00
|
|
|
|
2021-03-11 07:16:13 +00:00
|
|
|
void qemuExtDevicesCleanupHost(virQEMUDriver *driver,
|
|
|
|
virDomainDef *def)
|
2017-04-04 16:22:31 +00:00
|
|
|
ATTRIBUTE_NONNULL(1) ATTRIBUTE_NONNULL(2);
|
|
|
|
|
2021-03-11 07:16:13 +00:00
|
|
|
int qemuExtDevicesStart(virQEMUDriver *driver,
|
|
|
|
virDomainObj *vm,
|
2019-07-26 20:41:10 +00:00
|
|
|
bool incomingMigration)
|
2019-08-08 14:54:55 +00:00
|
|
|
ATTRIBUTE_NONNULL(1) ATTRIBUTE_NONNULL(2)
|
2019-10-14 12:25:14 +00:00
|
|
|
G_GNUC_WARN_UNUSED_RESULT;
|
2017-04-04 16:22:31 +00:00
|
|
|
|
2021-03-11 07:16:13 +00:00
|
|
|
void qemuExtDevicesStop(virQEMUDriver *driver,
|
|
|
|
virDomainObj *vm)
|
2017-04-04 16:22:31 +00:00
|
|
|
ATTRIBUTE_NONNULL(1) ATTRIBUTE_NONNULL(2);
|
|
|
|
|
2021-03-11 07:16:13 +00:00
|
|
|
bool qemuExtDevicesHasDevice(virDomainDef *def);
|
2018-04-05 19:06:55 +00:00
|
|
|
|
2021-03-11 07:16:13 +00:00
|
|
|
int qemuExtDevicesSetupCgroup(virQEMUDriver *driver,
|
|
|
|
virDomainObj *vm,
|
|
|
|
virCgroup *cgroup);
|