Fill the reverse RSS map with 0xff's so that the subsequent loop to

calculate the values will work properly.

Reviewed by:	np
MFC after:	1 month
This commit is contained in:
John Baldwin 2009-09-04 21:00:45 +00:00
parent fa2db9145a
commit 6b2eaa836f

View file

@ -1456,7 +1456,10 @@ setup_rss(adapter_t *adap)
rspq_map[i] = nq[0] ? i % nq[0] : 0;
rspq_map[i + RSS_TABLE_SIZE / 2] = nq[1] ? i % nq[1] + nq[0] : 0;
}
/* Calculate the reverse RSS map table */
for (i = 0; i < SGE_QSETS; ++i)
adap->rrss_map[i] = 0xff;
for (i = 0; i < RSS_TABLE_SIZE; ++i)
if (adap->rrss_map[rspq_map[i]] == 0xff)
adap->rrss_map[rspq_map[i]] = i;