iflib: fix typo bug introduced by r367093

Code was supposed to call callout_reset_sbt_on() rather than
callout_reset_sbt(). This resulted into passing a "cpu" value
to a "flag" argument. A recipe for subtle errors.

PR:	248652
Reported by:	sg@efficientip.com
MFC with: r367093
This commit is contained in:
Vincenzo Maffione 2020-10-28 21:06:17 +00:00
parent d9999ae9ca
commit be7a6b3d84
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=367117

View File

@ -1066,9 +1066,10 @@ iflib_netmap_txsync(struct netmap_kring *kring, int flags)
if (!(ctx->ifc_flags & IFC_NETMAP_TX_IRQ))
if (kring->nr_hwtail != nm_prev(kring->nr_hwcur, lim)) {
callout_reset_sbt(&txq->ift_netmap_timer,
callout_reset_sbt_on(&txq->ift_netmap_timer,
NETMAP_TX_TIMER_US * SBT_1US, SBT_1US,
iflib_netmap_timer, txq, txq->ift_netmap_timer.c_cpu);
iflib_netmap_timer, txq,
txq->ift_netmap_timer.c_cpu, 0);
}
return (0);
}