All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] PCI/MSI: msix_setup_msi_descs: Restore logic for msi_attrib.can_mask
@ 2022-01-22  1:10 Josef Johansson
  2022-02-10 23:55 ` Bjorn Helgaas
  0 siblings, 1 reply; 6+ messages in thread
From: Josef Johansson @ 2022-01-22  1:10 UTC (permalink / raw)
  To: Thomas Gleixner, Bjorn Helgaas, linux-pci; +Cc: xen-devel

From: Josef Johansson <josef@oderland.se>

PCI/MSI: msix_setup_msi_descs: Restore logic for msi_attrib.can_mask
    
Commit 71020a3c0dff4 ("PCI/MSI: Use msi_add_msi_desc()") modifies
the logic of checking msi_attrib.can_mask, without any reason.
    
This commits restores that logic.

Fixes: 71020a3c0dff4 ("PCI/MSI: Use msi_add_msi_desc()")
Signed-off-by: Josef Johansson <josef@oderland.se>

---
Trying to fix a NULL BUG in the NVMe MSIX implementation I stumbled upon this code,
which ironically was what my last MSI patch resulted into.

I don't see any reason why this logic was change, nor do I have the possibility
to see if anything works with my patch or without, since the kernel crashes
in other places.

As such this is still untested, but as far as I can tell it should restore
functionality.

Re-sending since it was rejected by linux-pci@vger.kernel.org due to HTML contents.
Sorry about that.

CC xen-devel since it very much relates to Xen kernel (via pci_msi_ignore_mask).
---

diff --git a/drivers/pci/msi/msi.c b/drivers/pci/msi/msi.c
index c19c7ca58186..146e7b9a01cc 100644
--- a/drivers/pci/msi/msi.c
+++ b/drivers/pci/msi/msi.c
@@ -526,7 +526,7 @@ static int msix_setup_msi_descs(struct pci_dev *dev, void __iomem *base,
 		desc.pci.msi_attrib.can_mask = !pci_msi_ignore_mask &&
 					       !desc.pci.msi_attrib.is_virtual;
 
-		if (!desc.pci.msi_attrib.can_mask) {
+		if (desc.pci.msi_attrib.can_mask) {
 			addr = pci_msix_desc_addr(&desc);
 			desc.pci.msix_ctrl = readl(addr + PCI_MSIX_ENTRY_VECTOR_CTRL);
 		}

--
2.31.1


^ permalink raw reply related	[flat|nested] 6+ messages in thread
* [PATCH] PCI/MSI: msix_setup_msi_descs: Restore logic for msi_attrib.can_mask
@ 2022-01-22  0:39 Josef Johansson
  0 siblings, 0 replies; 6+ messages in thread
From: Josef Johansson @ 2022-01-22  0:39 UTC (permalink / raw)
  To: Thomas Gleixner, Bjorn Helgaas, linux-pci; +Cc: xen-devel

[-- Attachment #1: Type: text/html, Size: 1753 bytes --]

^ permalink raw reply	[flat|nested] 6+ messages in thread

end of thread, other threads:[~2022-02-11 16:14 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2022-01-22  1:10 [PATCH] PCI/MSI: msix_setup_msi_descs: Restore logic for msi_attrib.can_mask Josef Johansson
2022-02-10 23:55 ` Bjorn Helgaas
2022-02-11  0:10   ` Josef Johansson
2022-02-11 16:14     ` Bjorn Helgaas
2022-02-11  0:41   ` Jason Gunthorpe
  -- strict thread matches above, loose matches on Subject: below --
2022-01-22  0:39 Josef Johansson

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.