2016-02-16 15:24:35 +00:00
|
|
|
/*
|
|
|
|
* 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/>.
|
|
|
|
*
|
|
|
|
* Author: Daniel P. Berrange <berrange@redhat.com>
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef __QEMU_ALIAS_H__
|
|
|
|
# define __QEMU_ALIAS_H__
|
|
|
|
|
|
|
|
# include "domain_conf.h"
|
|
|
|
|
|
|
|
# include "qemu_capabilities.h"
|
|
|
|
# include "qemu_domain.h"
|
|
|
|
# include "qemu_domain_address.h"
|
|
|
|
|
|
|
|
int qemuAssignDeviceChrAlias(virDomainDefPtr def,
|
|
|
|
virDomainChrDefPtr chr,
|
|
|
|
ssize_t idx);
|
|
|
|
|
|
|
|
int qemuAssignDeviceControllerAlias(virDomainDefPtr domainDef,
|
|
|
|
virQEMUCapsPtr qemuCaps,
|
|
|
|
virDomainControllerDefPtr controller);
|
|
|
|
|
|
|
|
int qemuAssignDeviceDiskAlias(virDomainDefPtr vmdef,
|
|
|
|
virDomainDiskDefPtr def,
|
|
|
|
virQEMUCapsPtr qemuCaps);
|
|
|
|
|
|
|
|
int qemuAssignDeviceHostdevAlias(virDomainDefPtr def,
|
2016-04-01 14:40:23 +00:00
|
|
|
char **alias,
|
2016-02-16 15:24:35 +00:00
|
|
|
int idx);
|
|
|
|
|
|
|
|
int qemuAssignDeviceNetAlias(virDomainDefPtr def,
|
|
|
|
virDomainNetDefPtr net,
|
|
|
|
int idx);
|
|
|
|
|
|
|
|
int qemuAssignDeviceRedirdevAlias(virDomainDefPtr def,
|
|
|
|
virDomainRedirdevDefPtr redirdev,
|
|
|
|
int idx);
|
|
|
|
|
2016-04-06 15:32:12 +00:00
|
|
|
int qemuAssignDeviceRNGAlias(virDomainDefPtr def,
|
|
|
|
virDomainRNGDefPtr rng);
|
2016-02-16 15:24:35 +00:00
|
|
|
|
2016-04-06 15:32:12 +00:00
|
|
|
int qemuAssignDeviceMemoryAlias(virDomainDefPtr def,
|
|
|
|
virDomainMemoryDefPtr mems);
|
|
|
|
|
2016-02-16 15:24:35 +00:00
|
|
|
int qemuAssignDeviceAliases(virDomainDefPtr def, virQEMUCapsPtr qemuCaps);
|
|
|
|
|
|
|
|
int qemuDomainDeviceAliasIndex(const virDomainDeviceInfo *info,
|
|
|
|
const char *prefix);
|
2016-02-26 15:29:58 +00:00
|
|
|
|
|
|
|
char *qemuAliasFromDisk(const virDomainDiskDef *disk);
|
2016-03-29 22:23:02 +00:00
|
|
|
|
|
|
|
char *qemuDomainGetMasterKeyAlias(void);
|
|
|
|
|
2016-02-16 15:24:35 +00:00
|
|
|
#endif /* __QEMU_ALIAS_H__*/
|