QEMU main repository: Please see https://www.qemu.org/docs/master/devel/submitting-a-patch.html for how to submit changes to QEMU. Pull Requests are ignored. Please only use release tarballs from the QEMU website. http://www.qemu.org
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
32 lines
587 B
32 lines
587 B
/*
|
|
* s390 vfio-pci stubs
|
|
*
|
|
* SPDX-License-Identifier: GPL-2.0-or-later
|
|
*/
|
|
|
|
#include "qemu/osdep.h"
|
|
#include "hw/s390x/s390-pci-vfio.h"
|
|
|
|
bool s390_pci_update_dma_avail(int fd, unsigned int *avail)
|
|
{
|
|
return false;
|
|
}
|
|
|
|
S390PCIDMACount *s390_pci_start_dma_count(S390pciState *s,
|
|
S390PCIBusDevice *pbdev)
|
|
{
|
|
return NULL;
|
|
}
|
|
|
|
void s390_pci_end_dma_count(S390pciState *s, S390PCIDMACount *cnt)
|
|
{
|
|
}
|
|
|
|
bool s390_pci_get_host_fh(S390PCIBusDevice *pbdev, uint32_t *fh)
|
|
{
|
|
return false;
|
|
}
|
|
|
|
void s390_pci_get_clp_info(S390PCIBusDevice *pbdev)
|
|
{
|
|
}
|
|
|