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.
44 lines
796 B
44 lines
796 B
/*
|
|
* QEMU MSHV stub
|
|
*
|
|
* Copyright Red Hat, Inc. 2025
|
|
*
|
|
* Author: Paolo Bonzini <pbonzini@redhat.com>
|
|
*
|
|
* SPDX-License-Identifier: GPL-2.0-or-later
|
|
*/
|
|
|
|
#include "qemu/osdep.h"
|
|
#include "hw/pci/msi.h"
|
|
#include "system/mshv.h"
|
|
|
|
bool mshv_allowed;
|
|
|
|
int mshv_irqchip_add_msi_route(int vector, PCIDevice *dev)
|
|
{
|
|
return -ENOSYS;
|
|
}
|
|
|
|
void mshv_irqchip_release_virq(int virq)
|
|
{
|
|
}
|
|
|
|
int mshv_irqchip_update_msi_route(int virq, MSIMessage msg, PCIDevice *dev)
|
|
{
|
|
return -ENOSYS;
|
|
}
|
|
|
|
void mshv_irqchip_commit_routes(void)
|
|
{
|
|
}
|
|
|
|
int mshv_irqchip_add_irqfd_notifier_gsi(const EventNotifier *n,
|
|
const EventNotifier *rn, int virq)
|
|
{
|
|
return -ENOSYS;
|
|
}
|
|
|
|
int mshv_irqchip_remove_irqfd_notifier_gsi(const EventNotifier *n, int virq)
|
|
{
|
|
return -ENOSYS;
|
|
}
|
|
|