[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Qemu-devel] [PATCH v2 01/13] msix: make msix_clr_pending() visible for
From: |
Leonid Bloch |
Subject: |
[Qemu-devel] [PATCH v2 01/13] msix: make msix_clr_pending() visible for clients |
Date: |
Mon, 22 Feb 2016 19:37:19 +0200 |
From: Dmitry Fleytman <address@hidden>
This function will be used by e1000e device code.
Signed-off-by: Dmitry Fleytman <address@hidden>
Signed-off-by: Leonid Bloch <address@hidden>
---
hw/pci/msix.c | 2 +-
include/hw/pci/msix.h | 1 +
2 files changed, 2 insertions(+), 1 deletion(-)
diff --git a/hw/pci/msix.c b/hw/pci/msix.c
index eb4ef11..cce89d9 100644
--- a/hw/pci/msix.c
+++ b/hw/pci/msix.c
@@ -72,7 +72,7 @@ void msix_set_pending(PCIDevice *dev, unsigned int vector)
*msix_pending_byte(dev, vector) |= msix_pending_mask(vector);
}
-static void msix_clr_pending(PCIDevice *dev, int vector)
+void msix_clr_pending(PCIDevice *dev, int vector)
{
*msix_pending_byte(dev, vector) &= ~msix_pending_mask(vector);
}
diff --git a/include/hw/pci/msix.h b/include/hw/pci/msix.h
index 72e5f93..048a29d 100644
--- a/include/hw/pci/msix.h
+++ b/include/hw/pci/msix.h
@@ -29,6 +29,7 @@ int msix_present(PCIDevice *dev);
bool msix_is_masked(PCIDevice *dev, unsigned vector);
void msix_set_pending(PCIDevice *dev, unsigned vector);
+void msix_clr_pending(PCIDevice *dev, int vector);
int msix_vector_use(PCIDevice *dev, unsigned vector);
void msix_vector_unuse(PCIDevice *dev, unsigned vector);
--
2.5.0
- [Qemu-devel] [PATCH v2 00/13] Introduce Intel 82574 GbE Controller Emulation (e1000e), Leonid Bloch, 2016/02/22
- [Qemu-devel] [PATCH v2 02/13] pci: Introduce define for PM capability version 1.1, Leonid Bloch, 2016/02/22
- [Qemu-devel] [PATCH v2 01/13] msix: make msix_clr_pending() visible for clients,
Leonid Bloch <=
- [Qemu-devel] [PATCH v2 03/13] pcie: Add support for PCIe CAP v1, Leonid Bloch, 2016/02/22
- [Qemu-devel] [PATCH v2 04/13] pcie: Introduce function for DSN capability creation, Leonid Bloch, 2016/02/22
- [Qemu-devel] [PATCH v2 05/13] vmxnet3: Use generic function for DSN capability definition, Leonid Bloch, 2016/02/22
- [Qemu-devel] [PATCH v2 07/13] net: Add macros for MAC address tracing, Leonid Bloch, 2016/02/22
- [Qemu-devel] [PATCH v2 08/13] vmxnet3: Use common MAC address tracing macros, Leonid Bloch, 2016/02/22
- [Qemu-devel] [PATCH v2 06/13] net: Introduce Toeplitz hash calculator, Leonid Bloch, 2016/02/22
- [Qemu-devel] [PATCH v2 10/13] rtl8139: Move more TCP definitions to common header, Leonid Bloch, 2016/02/22
- [Qemu-devel] [PATCH v2 09/13] net_pkt: Name vmxnet3 packet abstractions more generic, Leonid Bloch, 2016/02/22
- [Qemu-devel] [PATCH v2 12/13] e1000_regs: Add definitions for Intel 82574-specific bits, Leonid Bloch, 2016/02/22
- [Qemu-devel] [PATCH v2 11/13] net_pkt: Extend packet abstraction as required by e1000e functionality, Leonid Bloch, 2016/02/22