Deleted Added
full compact
29c29
< __FBSDID("$FreeBSD: head/sys/net/iflib.c 301567 2016-06-07 20:26:00Z cem $");
---
> __FBSDID("$FreeBSD: head/sys/net/iflib.c 302372 2016-07-06 14:09:49Z nwhitehorn $");
3851c3851
< int i, j, err, txconf, rxconf, fl_ifdi_offset;
---
> int i, j, cpu, err, txconf, rxconf, fl_ifdi_offset;
3900c3900
< for (txconf = i = 0; i < ntxqsets; i++, txconf++, txq++) {
---
> for (txconf = i = 0, cpu = CPU_FIRST(); i < ntxqsets; i++, txconf++, txq++, cpu = CPU_NEXT(cpu)) {
3920,3921c3920,3921
< txq->ift_timer.c_cpu = i % mp_ncpus;
< txq->ift_db_check.c_cpu = i % mp_ncpus;
---
> txq->ift_timer.c_cpu = cpu;
> txq->ift_db_check.c_cpu = cpu;