qemu-devel
[Top][All Lists]
Advanced

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

[Qemu-devel] Re: [PATCH 6/6] pci/aer: factor out common code


From: Isaku Yamahata
Subject: [Qemu-devel] Re: [PATCH 6/6] pci/aer: factor out common code
Date: Tue, 7 Dec 2010 16:24:01 +0900
User-agent: Mutt/1.5.19 (2009-01-05)

Looks good.
Maybe assert(0) should be replaced by abort().
Anyway this patch removes it, though.

On Fri, Dec 03, 2010 at 12:54:47AM +0200, Michael S. Tsirkin wrote:
> Same logic is used to assert interrupts
> and send msix messages, so add a static functin for this.
> 
> Signed-off-by: Michael S. Tsirkin <address@hidden>
> ---
>  hw/pcie_aer.c |   27 +++++++++++++--------------
>  1 files changed, 13 insertions(+), 14 deletions(-)
> 
> diff --git a/hw/pcie_aer.c b/hw/pcie_aer.c
> index 1c513a7..ca4f517 100644
> --- a/hw/pcie_aer.c
> +++ b/hw/pcie_aer.c
> @@ -273,6 +273,17 @@ static uint32_t pcie_aer_status_to_cmd(uint32_t status)
>      return cmd;
>  }
>  
> +static void pcie_aer_root_notify(PCIDevice *dev)
> +{
> +    if (msix_enabled(dev)) {
> +        msix_notify(dev, pcie_aer_root_get_vector(dev));
> +    } else if (msi_enabled(dev)) {
> +        msi_notify(dev, pcie_aer_root_get_vector(dev));
> +    } else {
> +        qemu_set_irq(dev->irq[dev->exp.aer_intx], 1);
> +    }
> +}
> +
>  /*
>   * 6.2.6 Error Message Control
>   * Figure 6-3
> @@ -352,13 +363,7 @@ static void pcie_aer_msg_root_port(PCIDevice *dev, const 
> PCIEAERMsg *msg)
>          return;
>      }
>  
> -    if (msix_enabled(dev)) {
> -        msix_notify(dev, pcie_aer_root_get_vector(dev));
> -    } else if (msi_enabled(dev)) {
> -        msi_notify(dev, pcie_aer_root_get_vector(dev));
> -    } else {
> -        qemu_set_irq(dev->irq[dev->exp.aer_intx], 1);
> -    }
> +    pcie_aer_root_notify(dev);
>  }
>  
>  /*
> @@ -768,13 +773,7 @@ void pcie_aer_root_write_config(PCIDevice *dev,
>          return;
>      }
>  
> -    if (msix_enabled(dev)) {
> -        msix_notify(dev, pcie_aer_root_get_vector(dev));
> -    } else if (msi_enabled(dev)) {
> -        msi_notify(dev, pcie_aer_root_get_vector(dev));
> -    } else {
> -        assert(0);
> -    }
> +    pcie_aer_root_notify(dev);
>  }
>  
>  static const VMStateDescription vmstate_pcie_aer_err = {
> -- 
> 1.7.3.2.91.g446ac
> 

-- 
yamahata



reply via email to

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