Fix fib algo rebuild delay calculation.

Submitted by:	Marco Zec <zec at fer.hr>
MFC after:	3 days
This commit is contained in:
Alexander V. Chernikov 2021-03-15 21:09:07 +00:00
parent 8ea35c45d5
commit e4ac3f7463

View file

@ -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);
}