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
|
|
|
|
2019-08-08 14:54:55 +00:00
|
|
|
int qemuExtDeviceLogCommand(virQEMUDriverPtr driver,
|
|
|
|
virDomainObjPtr vm,
|
2017-04-04 16:22:31 +00:00
|
|
|
virCommandPtr cmd,
|
|
|
|
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
|
|
|
|
2019-09-23 10:44:40 +00:00
|
|
|
int qemuExtDevicesPrepareDomain(virQEMUDriverPtr driver,
|
|
|
|
virDomainObjPtr vm)
|
|
|
|
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
|
|
|
|
2017-04-04 16:22:31 +00:00
|
|
|
int qemuExtDevicesPrepareHost(virQEMUDriverPtr driver,
|
2019-08-08 14:55:10 +00:00
|
|
|
virDomainObjPtr 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
|
|
|
|
|
|
|
void qemuExtDevicesCleanupHost(virQEMUDriverPtr driver,
|
|
|
|
virDomainDefPtr def)
|
|
|
|
ATTRIBUTE_NONNULL(1) ATTRIBUTE_NONNULL(2);
|
|
|
|
|
|
|
|
int qemuExtDevicesStart(virQEMUDriverPtr driver,
|
2018-11-13 14:14:43 +00:00
|
|
|
virDomainObjPtr vm,
|
2020-01-25 17:35:13 +00:00
|
|
|
virLogManagerPtr logManager,
|
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
|
|
|
|
|
|
|
void qemuExtDevicesStop(virQEMUDriverPtr driver,
|
2018-11-13 14:14:43 +00:00
|
|
|
virDomainObjPtr vm)
|
2017-04-04 16:22:31 +00:00
|
|
|
ATTRIBUTE_NONNULL(1) ATTRIBUTE_NONNULL(2);
|
|
|
|
|
2018-04-05 19:06:55 +00:00
|
|
|
bool qemuExtDevicesHasDevice(virDomainDefPtr def);
|
|
|
|
|
|
|
|
int qemuExtDevicesSetupCgroup(virQEMUDriverPtr driver,
|
2020-02-26 11:45:02 +00:00
|
|
|
virDomainObjPtr vm,
|
2018-04-05 19:06:55 +00:00
|
|
|
virCgroupPtr cgroup);
|