mirror of
https://github.com/opnsense/src.git
synced 2026-06-08 16:22:46 -04:00
Fix fib algo rebuild delay calculation.
Submitted by: Marco Zec <zec at fer.hr> MFC after: 3 days
This commit is contained in:
parent
8ea35c45d5
commit
e4ac3f7463
1 changed files with 1 additions and 1 deletions
|
|
@ -462,7 +462,7 @@ static void
|
|||
schedule_callout(struct fib_data *fd, int delay_ms)
|
||||
{
|
||||
|
||||
callout_reset_sbt(&fd->fd_callout, 0, SBT_1MS * delay_ms,
|
||||
callout_reset_sbt(&fd->fd_callout, SBT_1MS * delay_ms, 0,
|
||||
rebuild_fd_callout, fd, 0);
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue