* [PATCH] genirq/msi: correct CONFIG_PCI_MSI_ARCH_FALLBACKS macro name in comment
@ 2026-06-13 21:35 Ethan Nelson-Moore
2026-06-13 21:38 ` sashiko-bot
2026-06-22 20:34 ` [tip: irq/urgent] genirq/msi: Correct " tip-bot2 for Ethan Nelson-Moore
0 siblings, 2 replies; 3+ messages in thread
From: Ethan Nelson-Moore @ 2026-06-13 21:35 UTC (permalink / raw)
To: linux-pci, linux-kernel; +Cc: Ethan Nelson-Moore, Thomas Gleixner
A comment in kernel/irq/msi.c incorrectly refers to
CONFIG_PCI_MSI_ARCH_FALLBACK instead of CONFIG_PCI_MSI_ARCH_FALLBACKS.
Correct it.
Discovered while searching for CONFIG_* symbols referenced in code but
not defined in any Kconfig file.
Signed-off-by: Ethan Nelson-Moore <enelsonmoore@gmail.com>
---
kernel/irq/msi.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/kernel/irq/msi.c b/kernel/irq/msi.c
index 3cafa40e6ce3..903be7289c53 100644
--- a/kernel/irq/msi.c
+++ b/kernel/irq/msi.c
@@ -591,7 +591,7 @@ void msi_device_destroy_sysfs(struct device *dev)
msi_for_each_desc(desc, dev, MSI_DESC_ALL)
msi_sysfs_remove_desc(dev, desc);
}
-#endif /* CONFIG_PCI_MSI_ARCH_FALLBACK || CONFIG_PCI_XEN */
+#endif /* CONFIG_PCI_MSI_ARCH_FALLBACKS || CONFIG_PCI_XEN */
#else /* CONFIG_SYSFS */
static inline int msi_sysfs_create_group(struct device *dev) { return 0; }
static inline int msi_sysfs_populate_desc(struct device *dev, struct msi_desc *desc) { return 0; }
--
2.43.0
^ permalink raw reply related [flat|nested] 3+ messages in thread* Re: [PATCH] genirq/msi: correct CONFIG_PCI_MSI_ARCH_FALLBACKS macro name in comment
2026-06-13 21:35 [PATCH] genirq/msi: correct CONFIG_PCI_MSI_ARCH_FALLBACKS macro name in comment Ethan Nelson-Moore
@ 2026-06-13 21:38 ` sashiko-bot
2026-06-22 20:34 ` [tip: irq/urgent] genirq/msi: Correct " tip-bot2 for Ethan Nelson-Moore
1 sibling, 0 replies; 3+ messages in thread
From: sashiko-bot @ 2026-06-13 21:38 UTC (permalink / raw)
To: Ethan Nelson-Moore; +Cc: linux-pci
> A comment in kernel/irq/msi.c incorrectly refers to
> CONFIG_PCI_MSI_ARCH_FALLBACK instead of CONFIG_PCI_MSI_ARCH_FALLBACKS.
> Correct it.
>
> Discovered while searching for CONFIG_* symbols referenced in code but
> not defined in any Kconfig file.
>
> Signed-off-by: Ethan Nelson-Moore <enelsonmoore@gmail.com>
Sashiko has reviewed this patch and found no issues. It looks great!
--
Sashiko AI review · https://sashiko.dev/#/patchset/20260613213544.90613-1-enelsonmoore@gmail.com?part=1
^ permalink raw reply [flat|nested] 3+ messages in thread
* [tip: irq/urgent] genirq/msi: Correct CONFIG_PCI_MSI_ARCH_FALLBACKS macro name in comment
2026-06-13 21:35 [PATCH] genirq/msi: correct CONFIG_PCI_MSI_ARCH_FALLBACKS macro name in comment Ethan Nelson-Moore
2026-06-13 21:38 ` sashiko-bot
@ 2026-06-22 20:34 ` tip-bot2 for Ethan Nelson-Moore
1 sibling, 0 replies; 3+ messages in thread
From: tip-bot2 for Ethan Nelson-Moore @ 2026-06-22 20:34 UTC (permalink / raw)
To: linux-tip-commits
Cc: Ethan Nelson-Moore, Thomas Gleixner, x86, linux-kernel, maz
The following commit has been merged into the irq/urgent branch of tip:
Commit-ID: 865730eec5435ce40a5dc3c615077d04c8f95098
Gitweb: https://git.kernel.org/tip/865730eec5435ce40a5dc3c615077d04c8f95098
Author: Ethan Nelson-Moore <enelsonmoore@gmail.com>
AuthorDate: Sat, 13 Jun 2026 14:35:43 -07:00
Committer: Thomas Gleixner <tglx@kernel.org>
CommitterDate: Mon, 22 Jun 2026 22:32:01 +02:00
genirq/msi: Correct CONFIG_PCI_MSI_ARCH_FALLBACKS macro name in comment
A comment in kernel/irq/msi.c incorrectly refers to
CONFIG_PCI_MSI_ARCH_FALLBACK instead of CONFIG_PCI_MSI_ARCH_FALLBACKS.
Correct it.
Discovered while searching for CONFIG_* symbols referenced in code but
not defined in any Kconfig file.
Signed-off-by: Ethan Nelson-Moore <enelsonmoore@gmail.com>
Signed-off-by: Thomas Gleixner <tglx@kernel.org>
Link: https://patch.msgid.link/20260613213544.90613-1-enelsonmoore@gmail.com
---
kernel/irq/msi.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/kernel/irq/msi.c b/kernel/irq/msi.c
index 3cafa40..903be72 100644
--- a/kernel/irq/msi.c
+++ b/kernel/irq/msi.c
@@ -591,7 +591,7 @@ void msi_device_destroy_sysfs(struct device *dev)
msi_for_each_desc(desc, dev, MSI_DESC_ALL)
msi_sysfs_remove_desc(dev, desc);
}
-#endif /* CONFIG_PCI_MSI_ARCH_FALLBACK || CONFIG_PCI_XEN */
+#endif /* CONFIG_PCI_MSI_ARCH_FALLBACKS || CONFIG_PCI_XEN */
#else /* CONFIG_SYSFS */
static inline int msi_sysfs_create_group(struct device *dev) { return 0; }
static inline int msi_sysfs_populate_desc(struct device *dev, struct msi_desc *desc) { return 0; }
^ permalink raw reply related [flat|nested] 3+ messages in thread
end of thread, other threads:[~2026-06-22 20:35 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2026-06-13 21:35 [PATCH] genirq/msi: correct CONFIG_PCI_MSI_ARCH_FALLBACKS macro name in comment Ethan Nelson-Moore
2026-06-13 21:38 ` sashiko-bot
2026-06-22 20:34 ` [tip: irq/urgent] genirq/msi: Correct " tip-bot2 for Ethan Nelson-Moore
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.