svn commit: r327247 - head/sys/net

Stephen Hurd shurd at FreeBSD.org
Wed Dec 27 20:42:31 UTC 2017


Author: shurd
Date: Wed Dec 27 20:42:30 2017
New Revision: 327247
URL: https://svnweb.freebsd.org/changeset/base/327247

Log:
  Don't pass rids to taskqgroup_attach()
  
  As everywhere else, we want to pass rman_get_start(irq->ii_res).  This
  caused set affinity errors when not using MSI-X vectors (legacy and MSI
  interrupts).
  
  Reported by:	sbruno
  Sponsored by:	Limelight Networks

Modified:
  head/sys/net/iflib.c

Modified: head/sys/net/iflib.c
==============================================================================
--- head/sys/net/iflib.c	Wed Dec 27 20:33:37 2017	(r327246)
+++ head/sys/net/iflib.c	Wed Dec 27 20:42:30 2017	(r327247)
@@ -5347,10 +5347,10 @@ iflib_legacy_setup(if_ctx_t ctx, driver_filter_t filte
 	if ((err = _iflib_irq_alloc(ctx, irq, tqrid, iflib_fast_intr_ctx, NULL, info, name)) != 0)
 		return (err);
 	GROUPTASK_INIT(gtask, 0, fn, q);
-	taskqgroup_attach(tqg, gtask, q, tqrid, name);
+	taskqgroup_attach(tqg, gtask, q, rman_get_start(irq->ii_res), name);
 
 	GROUPTASK_INIT(&txq->ift_task, 0, _task_fn_tx, txq);
-	taskqgroup_attach(qgroup_if_io_tqg, &txq->ift_task, txq, tqrid, "tx");
+	taskqgroup_attach(qgroup_if_io_tqg, &txq->ift_task, txq, rman_get_start(irq->ii_res), "tx");
 	return (0);
 }
 


More information about the svn-src-head mailing list