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
|
|
|
|
2014-03-13 11:58:17 +00:00
|
|
|
int virLXCUpdateActiveUSBHostdevs(virLXCDriverPtr driver,
|
2012-11-23 14:46:18 +00:00
|
|
|
virDomainDefPtr def);
|
|
|
|
int virLXCFindHostdevUSBDevice(virDomainHostdevDefPtr hostdev,
|
|
|
|
bool mandatory,
|
2013-01-14 22:11:44 +00:00
|
|
|
virUSBDevicePtr *usb);
|
2012-11-23 14:46:18 +00:00
|
|
|
int virLXCPrepareHostdevUSBDevices(virLXCDriverPtr driver,
|
|
|
|
const char *name,
|
2013-01-14 22:11:44 +00:00
|
|
|
virUSBDeviceListPtr list);
|
2012-11-23 14:46:18 +00:00
|
|
|
int virLXCPrepareHostDevices(virLXCDriverPtr driver,
|
|
|
|
virDomainDefPtr def);
|
|
|
|
void virLXCDomainReAttachHostDevices(virLXCDriverPtr driver,
|
|
|
|
virDomainDefPtr def);
|