mirror of
https://gitlab.com/libvirt/libvirt.git
synced 2024-10-31 18:33:11 +00:00
f774ea1a96
virDomainDefCheckDuplicateDiskInfo() and virDomainDefCheckDuplicateDriveAddresses() are static functions used by virDomainDefValidateInternal(). Let's move them to domain_validate.c to start clearing up the path to move virDomainDefValidateInternal(). Change the functions name slightly to be more on par with their new home. Reviewed-by: Michal Privoznik <mprivozn@redhat.com> Signed-off-by: Daniel Henrique Barboza <danielhb413@gmail.com>
50 lines
2.2 KiB
C
50 lines
2.2 KiB
C
/*
|
|
* domain_validate.h: domain general validation functions
|
|
*
|
|
* Copyright IBM Corp, 2020
|
|
*
|
|
* 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 <glib-object.h>
|
|
|
|
#include "domain_conf.h"
|
|
|
|
int virDomainDefBootValidate(const virDomainDef *def);
|
|
int virDomainDefVideoValidate(const virDomainDef *def);
|
|
int virDomainVideoDefValidate(const virDomainVideoDef *video,
|
|
const virDomainDef *def);
|
|
int virSecurityDeviceLabelDefValidate(virSecurityDeviceLabelDefPtr *seclabels,
|
|
size_t nseclabels,
|
|
virSecurityLabelDefPtr *vmSeclabels,
|
|
size_t nvmSeclabels);
|
|
int virDomainDiskDefValidate(const virDomainDef *def,
|
|
const virDomainDiskDef *disk);
|
|
int virDomainRedirdevDefValidate(const virDomainDef *def,
|
|
const virDomainRedirdevDef *redirdev);
|
|
int virDomainChrDefValidate(const virDomainChrDef *chr,
|
|
const virDomainDef *def);
|
|
int virDomainRNGDefValidate(const virDomainRNGDef *rng,
|
|
const virDomainDef *def);
|
|
int virDomainSmartcardDefValidate(const virDomainSmartcardDef *smartcard,
|
|
const virDomainDef *def);
|
|
int virDomainDefTunablesValidate(const virDomainDef *def);
|
|
int virDomainControllerDefValidate(const virDomainControllerDef *controller);
|
|
int virDomainDefIdMapValidate(const virDomainDef *def);
|
|
int virDomainDefDuplicateDiskInfoValidate(const virDomainDef *def);
|
|
int virDomainDefDuplicateDriveAddressesValidate(const virDomainDef *def);
|