2012-11-23 14:46:18 +00:00
|
|
|
/*
|
2014-03-07 13:38:51 +00:00
|
|
|
* lxc_hostdev.h: VIRLXC hostdev management
|
2012-11-23 14:46:18 +00:00
|
|
|
*
|
|
|
|
* Copyright (C) 2006-2007, 2009-2010 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/>.
|
|
|
|
*/
|
|
|
|
|
2019-06-18 16:12:32 +00:00
|
|
|
#pragma once
|
2012-11-23 14:46:18 +00:00
|
|
|
|
2019-06-18 16:12:32 +00:00
|
|
|
#include "lxc_conf.h"
|
|
|
|
#include "domain_conf.h"
|
2012-11-23 14:46:18 +00:00
|
|
|
|
2021-03-11 07:16:13 +00:00
|
|
|
int virLXCUpdateActiveUSBHostdevs(virLXCDriver *driver,
|
|
|
|
virDomainDef *def);
|
|
|
|
int virLXCFindHostdevUSBDevice(virDomainHostdevDef *hostdev,
|
2012-11-23 14:46:18 +00:00
|
|
|
bool mandatory,
|
2021-03-11 07:16:13 +00:00
|
|
|
virUSBDevice **usb);
|
|
|
|
int virLXCPrepareHostdevUSBDevices(virLXCDriver *driver,
|
2012-11-23 14:46:18 +00:00
|
|
|
const char *name,
|
2021-03-11 07:16:13 +00:00
|
|
|
virUSBDeviceList *list);
|
|
|
|
int virLXCPrepareHostDevices(virLXCDriver *driver,
|
|
|
|
virDomainDef *def);
|
|
|
|
void virLXCDomainReAttachHostDevices(virLXCDriver *driver,
|
|
|
|
virDomainDef *def);
|