Page Menu
Home
FreeBSD
Search
Configure Global Search
Log In
Files
F139451515
D11149.diff
No One
Temporary
Actions
View File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Flag For Later
Award Token
Size
890 B
Referenced Files
None
Subscribers
None
D11149.diff
View Options
Index: head/sys/dev/bnxt/if_bnxt.c
===================================================================
--- head/sys/dev/bnxt/if_bnxt.c
+++ head/sys/dev/bnxt/if_bnxt.c
@@ -1500,6 +1500,7 @@
struct bnxt_softc *softc = iflib_get_softc(ctx);
int rc;
int i;
+ char irq_name[16];
rc = iflib_irq_alloc_generic(ctx, &softc->def_cp_ring.irq,
softc->def_cp_ring.ring.id + 1, IFLIB_INTR_ADMIN,
@@ -1511,9 +1512,10 @@
}
for (i=0; i<softc->scctx->isc_nrxqsets; i++) {
+ snprintf(irq_name, sizeof(irq_name), "rxq%d", i);
rc = iflib_irq_alloc_generic(ctx, &softc->rx_cp_rings[i].irq,
softc->rx_cp_rings[i].ring.id + 1, IFLIB_INTR_RX,
- bnxt_handle_rx_cp, &softc->rx_cp_rings[i], i, "rx_cp");
+ bnxt_handle_rx_cp, &softc->rx_cp_rings[i], i, irq_name);
if (rc) {
device_printf(iflib_get_dev(ctx),
"Failed to register RX completion ring handler\n");
File Metadata
Details
Attached
Mime Type
text/plain
Expires
Sat, Dec 13, 6:13 AM (3 h, 58 m)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
26923409
Default Alt Text
D11149.diff (890 B)
Attached To
Mode
D11149: bnxt: In case of multi queues, have unique name for different IRQ's.
Attached
Detach File
Event Timeline
Log In to Comment