Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 0502f94c authored by Ralph Campbell's avatar Ralph Campbell Committed by Roland Dreier
Browse files

IB/qib: Set cfgctxts to number of CPUs by default



Up to now, we have set the number of available user contexts based on
the number of hardware contexts which is set according to the number
of available CPUs.  This was fine since most CPUs had a power of two
number of cores and the chip supported 4, 8, or 16 user contexts.  Now
that some systems have 12 cores, the default isn't optimal and should
be set to 12 even though 16 hardware contexts need to be enabled.

Signed-off-by: default avatarRalph Campbell <ralph.campbell@qlogic.com>
Signed-off-by: default avatarRoland Dreier <rolandd@cisco.com>
parent bdf8edcb
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -5864,7 +5864,7 @@ static void write_7322_initregs(struct qib_devdata *dd)
	 * Doesn't clear any of the error bits that might be set.
	 */
	val = TIDFLOW_ERRBITS; /* these are W1C */
	for (i = 0; i < dd->ctxtcnt; i++) {
	for (i = 0; i < dd->cfgctxts; i++) {
		int flow;
		for (flow = 0; flow < NUM_TIDFLOWS_CTXT; flow++)
			qib_write_ureg(dd, ur_rcvflowtable+flow, val, i);
+1 −1
Original line number Diff line number Diff line
@@ -93,7 +93,7 @@ unsigned long *qib_cpulist;
void qib_set_ctxtcnt(struct qib_devdata *dd)
{
	if (!qib_cfgctxts)
		dd->cfgctxts = dd->ctxtcnt;
		dd->cfgctxts = dd->first_user_ctxt + num_online_cpus();
	else if (qib_cfgctxts < dd->num_pports)
		dd->cfgctxts = dd->ctxtcnt;
	else if (qib_cfgctxts <= dd->ctxtcnt)