mirror of
https://github.com/opnsense/src.git
synced 2026-06-09 00:32:25 -04:00
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:
parent
fa2db9145a
commit
6b2eaa836f
1 changed files with 3 additions and 0 deletions
|
|
@ -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;
|
||||
|
|
|
|||
Loading…
Reference in a new issue