* [PATCH 1/1] kvm: don't check per-vector mask bit before enable MSI-X
@ 2009-04-09 1:40 Sheng Yang
2009-04-09 15:29 ` Avi Kivity
0 siblings, 1 reply; 2+ messages in thread
From: Sheng Yang @ 2009-04-09 1:40 UTC (permalink / raw)
To: Avi Kivity; +Cc: kvm, Alex Williamson, Sheng Yang
Some driver(e.g. bnx2) do the following to enable MSI-X:
1. Mask all vectors.
2. Write the msg data and address.
3. Enable MSI-X
4. Unmask all the vectors.
For this, check per-vector mask bit before enable MSI-X would cause device
fail to enable MSI-X. So now we only determine the availability of vector
by if msg_data is zero.
Signed-off-by: Sheng Yang <sheng@linux.intel.com>
---
qemu/hw/device-assignment.c | 3 ---
1 files changed, 0 insertions(+), 3 deletions(-)
diff --git a/qemu/hw/device-assignment.c b/qemu/hw/device-assignment.c
index f33ce3c..1f0a1a7 100644
--- a/qemu/hw/device-assignment.c
+++ b/qemu/hw/device-assignment.c
@@ -823,9 +823,6 @@ static int assigned_dev_update_msix_mmio(PCIDevice *pci_dev)
/* Get the usable entry number for allocating */
for (i = 0; i < entries_max_nr; i++) {
memcpy(&msg_ctrl, va + i * 16 + 12, 4);
- /* 0x1 is mask bit for per vector */
- if (msg_ctrl & 0x1)
- continue;
memcpy(&msg_data, va + i * 16 + 8, 4);
/* Ignore unused entry even it's unmasked */
if (msg_data == 0)
--
1.5.4.5
^ permalink raw reply related [flat|nested] 2+ messages in thread* Re: [PATCH 1/1] kvm: don't check per-vector mask bit before enable MSI-X
2009-04-09 1:40 [PATCH 1/1] kvm: don't check per-vector mask bit before enable MSI-X Sheng Yang
@ 2009-04-09 15:29 ` Avi Kivity
0 siblings, 0 replies; 2+ messages in thread
From: Avi Kivity @ 2009-04-09 15:29 UTC (permalink / raw)
To: Sheng Yang; +Cc: kvm, Alex Williamson
Sheng Yang wrote:
> Some driver(e.g. bnx2) do the following to enable MSI-X:
> 1. Mask all vectors.
> 2. Write the msg data and address.
> 3. Enable MSI-X
> 4. Unmask all the vectors.
>
> For this, check per-vector mask bit before enable MSI-X would cause device
> fail to enable MSI-X. So now we only determine the availability of vector
> by if msg_data is zero.
>
Applied, thanks.
--
Do not meddle in the internals of kernels, for they are subtle and quick to panic.
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2009-04-09 15:29 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2009-04-09 1:40 [PATCH 1/1] kvm: don't check per-vector mask bit before enable MSI-X Sheng Yang
2009-04-09 15:29 ` Avi Kivity
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox