qemu_hostdev.h 3.3 KB
Newer Older
1 2 3
/*
 * qemu_hostdev.h: QEMU hostdev management
 *
4
 * Copyright (C) 2006-2007, 2009-2013 Red Hat, Inc.
5 6 7 8 9 10 11 12 13 14 15 16 17
 * 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
18
 * License along with this library.  If not, see
O
Osier Yang 已提交
19
 * <http://www.gnu.org/licenses/>.
20 21 22 23 24 25 26 27 28 29
 *
 * Author: Daniel P. Berrange <berrange@redhat.com>
 */

#ifndef __QEMU_HOSTDEV_H__
# define __QEMU_HOSTDEV_H__

# include "qemu_conf.h"
# include "domain_conf.h"

30
int qemuUpdateActivePCIHostdevs(virQEMUDriverPtr driver,
31
                                virDomainDefPtr def);
32
int qemuUpdateActiveUSBHostdevs(virQEMUDriverPtr driver,
33
                                virDomainDefPtr def);
34
int qemuUpdateActiveSCSIHostdevs(virQEMUDriverPtr driver,
35
                                 virDomainDefPtr def);
36 37
bool qemuHostdevHostSupportsPassthroughLegacy(void);
bool qemuHostdevHostSupportsPassthroughVFIO(void);
38
int qemuPrepareHostdevPCIDevices(virQEMUDriverPtr driver,
39
                                 const char *name,
40
                                 const unsigned char *uuid,
41
                                 virDomainHostdevDefPtr *hostdevs,
42
                                 int nhostdevs,
43 44
                                 virQEMUCapsPtr qemuCaps,
                                 unsigned int flags);
45 46 47 48 49
int
qemuPrepareHostUSBDevices(virQEMUDriverPtr driver,
                          const char *name,
                          virDomainHostdevDefPtr *hostdevs,
                          int nhostdevs,
50
                          unsigned int flags);
51 52 53 54
int qemuPrepareHostdevSCSIDevices(virQEMUDriverPtr driver,
                                  const char *name,
                                  virDomainHostdevDefPtr *hostdevs,
                                  int nhostdevs);
55
int qemuPrepareHostDevices(virQEMUDriverPtr driver,
56
                           virDomainDefPtr def,
57
                           virQEMUCapsPtr qemuCaps,
58
                           unsigned int flags);
59
void
60
qemuDomainReAttachHostUSBDevices(virQEMUDriverPtr driver,
61 62 63
                                 const char *name,
                                 virDomainHostdevDefPtr *hostdevs,
                                 int nhostdevs);
64
void qemuDomainReAttachHostSCSIDevices(virQEMUDriverPtr driver,
65 66 67
                                       const char *name,
                                       virDomainHostdevDefPtr *hostdevs,
                                       int nhostdevs);
68
void qemuDomainReAttachHostdevDevices(virQEMUDriverPtr driver,
69
                                      const char *name,
70 71
                                      virDomainHostdevDefPtr *hostdevs,
                                      int nhostdevs);
72
void qemuDomainReAttachHostDevices(virQEMUDriverPtr driver,
73 74 75
                                   virDomainDefPtr def);

#endif /* __QEMU_HOSTDEV_H__ */