summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPeter Colberg <pcolberg@redhat.com>2025-10-20 17:02:22 +0000
committerDanilo Krummrich <dakr@kernel.org>2025-10-23 20:12:32 +0200
commitc7f6d5380f6ef5c328b63807c4e9b73eaef9aeda (patch)
tree44e81544ea5560190103733c9b1430b00df588a8
parent6d0ef68955d30be1e218caf160ec32eec23ebc6e (diff)
rust: pci: refer to legacy as INTx interrupts
Consistently use INTx, as in the description of IrqType::Intx, to refer to the four legacy PCI interrupts, INTA#, INTB#, INTC#, and INTD#. Link: https://lore.kernel.org/rust-for-linux/20251015230209.GA960343@bhelgaas/ Link: https://github.com/Rust-for-Linux/linux/issues/1196 Suggested-by: Bjorn Helgaas <helgaas@kernel.org> Signed-off-by: Peter Colberg <pcolberg@redhat.com> Signed-off-by: Danilo Krummrich <dakr@kernel.org>
-rw-r--r--rust/kernel/pci/irq.rs10
1 files changed, 5 insertions, 5 deletions
diff --git a/rust/kernel/pci/irq.rs b/rust/kernel/pci/irq.rs
index 77235c271876..782a524fe11c 100644
--- a/rust/kernel/pci/irq.rs
+++ b/rust/kernel/pci/irq.rs
@@ -42,7 +42,7 @@ impl IrqType {
pub struct IrqTypes(u32);
impl IrqTypes {
- /// Create a set containing all IRQ types (MSI-X, MSI, and Legacy).
+ /// Create a set containing all IRQ types (MSI-X, MSI, and INTx).
pub const fn all() -> Self {
Self(bindings::PCI_IRQ_ALL_TYPES)
}
@@ -52,7 +52,7 @@ impl IrqTypes {
/// # Examples
///
/// ```ignore
- /// // Create a set with only MSI and MSI-X (no legacy interrupts).
+ /// // Create a set with only MSI and MSI-X (no INTx interrupts).
/// let msi_only = IrqTypes::default()
/// .with(IrqType::Msi)
/// .with(IrqType::MsiX);
@@ -199,9 +199,9 @@ impl Device<device::Bound> {
/// Allocate IRQ vectors for this PCI device with automatic cleanup.
///
/// Allocates between `min_vecs` and `max_vecs` interrupt vectors for the device.
- /// The allocation will use MSI-X, MSI, or legacy interrupts based on the `irq_types`
+ /// The allocation will use MSI-X, MSI, or INTx interrupts based on the `irq_types`
/// parameter and hardware capabilities. When multiple types are specified, the kernel
- /// will try them in order of preference: MSI-X first, then MSI, then legacy interrupts.
+ /// will try them in order of preference: MSI-X first, then MSI, then INTx interrupts.
///
/// The allocated vectors are automatically freed when the device is unbound, using the
/// devres (device resource management) system.
@@ -225,7 +225,7 @@ impl Device<device::Bound> {
/// // Allocate using any available interrupt type in the order mentioned above.
/// let vectors = dev.alloc_irq_vectors(1, 32, pci::IrqTypes::all())?;
///
- /// // Allocate MSI or MSI-X only (no legacy interrupts).
+ /// // Allocate MSI or MSI-X only (no INTx interrupts).
/// let msi_only = pci::IrqTypes::default()
/// .with(pci::IrqType::Msi)
/// .with(pci::IrqType::MsiX);