mirror of
https://gitlab.com/libvirt/libvirt.git
synced 2025-01-09 06:25:19 +00:00
8336932667
Signed-off-by: Peter Krempa <pkrempa@redhat.com> Reviewed-by: Ján Tomko <jtomko@redhat.com> Reviewed-by: Pavel Hrdina <phrdina@redhat.com> Reviewed-by: Neal Gompa <ngompa13@gmail.com> Reviewed-by: Pavel Hrdina <phrdina@redhat.com>
101 lines
3.3 KiB
C
101 lines
3.3 KiB
C
/*
|
|
* qemu_alias.h: QEMU alias manipulation
|
|
*
|
|
* Copyright (C) 2006-2016 Red Hat, Inc.
|
|
* Copyright (C) 2006 Daniel P. Berrange
|
|
*
|
|
* 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/>.
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include "domain_conf.h"
|
|
|
|
#include "qemu_capabilities.h"
|
|
#include "qemu_domain.h"
|
|
#include "qemu_domain_address.h"
|
|
|
|
int qemuAssignDeviceChrAlias(virDomainDef *def,
|
|
virDomainChrDef *chr,
|
|
ssize_t idx);
|
|
|
|
int qemuAssignDeviceControllerAlias(virDomainDef *domainDef,
|
|
virDomainControllerDef *controller);
|
|
|
|
int qemuAssignDeviceDiskAlias(virDomainDef *def,
|
|
virDomainDiskDef *disk,
|
|
virQEMUCaps *qemuCaps);
|
|
|
|
int qemuAssignDeviceHostdevAlias(virDomainDef *def,
|
|
char **alias,
|
|
int idx);
|
|
|
|
int qemuAssignDeviceNetAlias(virDomainDef *def,
|
|
virDomainNetDef *net,
|
|
int idx);
|
|
|
|
int qemuAssignDeviceRedirdevAlias(virDomainDef *def,
|
|
virDomainRedirdevDef *redirdev,
|
|
int idx);
|
|
|
|
int qemuAssignDeviceRNGAlias(virDomainDef *def,
|
|
virDomainRNGDef *rng);
|
|
|
|
int qemuAssignDeviceMemoryAlias(virDomainDef *def,
|
|
virDomainMemoryDef *mems,
|
|
bool oldAlias);
|
|
|
|
int qemuAssignDeviceShmemAlias(virDomainDef *def,
|
|
virDomainShmemDef *shmem,
|
|
int idx);
|
|
|
|
int qemuAssignDeviceWatchdogAlias(virDomainWatchdogDef *watchdog);
|
|
|
|
int qemuAssignDeviceInputAlias(virDomainDef *def,
|
|
virDomainInputDef *input,
|
|
int idx);
|
|
|
|
int qemuAssignDeviceVsockAlias(virDomainVsockDef *vsock);
|
|
|
|
int qemuAssignDeviceAliases(virDomainDef *def, virQEMUCaps *qemuCaps);
|
|
|
|
int qemuDomainDeviceAliasIndex(const virDomainDeviceInfo *info,
|
|
const char *prefix);
|
|
|
|
char *qemuAliasDiskDriveFromDisk(const virDomainDiskDef *disk);
|
|
|
|
const char *qemuAliasDiskDriveSkipPrefix(const char *dev_name);
|
|
|
|
char *qemuAliasFromHostdev(const virDomainHostdevDef *hostdev);
|
|
|
|
char *qemuDomainGetMasterKeyAlias(void);
|
|
|
|
char *qemuAliasForSecret(const char *parentalias,
|
|
const char *obj);
|
|
|
|
char *qemuAliasTLSObjFromSrcAlias(const char *srcAlias)
|
|
ATTRIBUTE_NONNULL(1);
|
|
|
|
char *qemuAliasChardevFromDevAlias(const char *devAlias)
|
|
ATTRIBUTE_NONNULL(1);
|
|
|
|
const char *qemuDomainGetManagedPRAlias(void);
|
|
|
|
char *qemuDomainGetUnmanagedPRAlias(const char *parentalias);
|
|
|
|
const char *qemuDomainGetDBusVMStateAlias(void);
|
|
|
|
char *qemuDomainGetVhostUserChrAlias(const char *devalias);
|