mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-05 08:43:55 -06:00
qdev-properties: Introduce pci-host-devaddr.
This new property will be used to specify a host pci device address. Signed-off-by: Anthony PERARD <anthony.perard@citrix.com> Acked-by: Michael S. Tsirkin <mst@redhat.com> Acked-by: Stefano Stabellini <stefano.stabellini@eu.citrix.com>
This commit is contained in:
parent
7aa8cbb921
commit
679042f0e1
3 changed files with 117 additions and 0 deletions
|
@ -275,6 +275,13 @@ typedef enum LostTickPolicy {
|
|||
LOST_TICK_MAX
|
||||
} LostTickPolicy;
|
||||
|
||||
typedef struct PCIHostDeviceAddress {
|
||||
unsigned int domain;
|
||||
unsigned int bus;
|
||||
unsigned int slot;
|
||||
unsigned int function;
|
||||
} PCIHostDeviceAddress;
|
||||
|
||||
void tcg_exec_init(unsigned long tb_size);
|
||||
bool tcg_enabled(void);
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue