qemu-devel
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: [PATCH v8 15/17] vfio-user: handle device interrupts


From: Stefan Hajnoczi
Subject: Re: [PATCH v8 15/17] vfio-user: handle device interrupts
Date: Mon, 25 Apr 2022 11:27:40 +0100

On Tue, Apr 19, 2022 at 04:44:20PM -0400, Jagannathan Raman wrote:
> +static MSIMessage vfu_object_msi_prepare_msg(PCIDevice *pci_dev,
> +                                             unsigned int vector)
> +{
> +    MSIMessage msg;
> +
> +    msg.address = 0;
> +    msg.data = vector;
> +
> +    return msg;
> +}
> +
> +static void vfu_object_msi_trigger(PCIDevice *pci_dev, MSIMessage msg)
> +{
> +    vfu_ctx_t *vfu_ctx = pci_dev->irq_opaque;
> +
> +    vfu_irq_trigger(vfu_ctx, msg.data);
> +}

Why did you switch to vfu_object_msi_prepare_msg() +
vfu_object_msi_trigger() in this revision?

Stefan

Attachment: signature.asc
Description: PGP signature


reply via email to

[Prev in Thread] Current Thread [Next in Thread]