mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-09-03 15:32:26 -06:00

vfio_container_ioctl() was a bad interface that bypassed abstraction boundaries, had semantics that sat uneasily with its name, and was unsafe in many realistic circumstances. Now that spapr-pci-vfio-host-bridge has been folded into spapr-pci-host-bridge, there are no more users, so remove it. Signed-off-by: David Gibson <david@gibson.dropbear.id.au> Reviewed-by: Alexey Kardashevskiy <aik@ozlabs.ru> Acked-by: Alex Williamson <alex.williamson@redhat.com>
9 lines
165 B
C
9 lines
165 B
C
#ifndef VFIO_API_H
|
|
#define VFIO_API_H
|
|
|
|
#include "qemu/typedefs.h"
|
|
|
|
bool vfio_eeh_as_ok(AddressSpace *as);
|
|
int vfio_eeh_as_op(AddressSpace *as, uint32_t op);
|
|
|
|
#endif
|