The branch stable/13 has been updated by melifaro:

URL: 
https://cgit.FreeBSD.org/src/commit/?id=c3254131a4af1a0fb66a2b5431b0a918676f4256

commit c3254131a4af1a0fb66a2b5431b0a918676f4256
Author:     Alexander V. Chernikov <[email protected]>
AuthorDate: 2021-03-15 21:09:07 +0000
Commit:     Alexander V. Chernikov <[email protected]>
CommitDate: 2021-04-08 20:15:04 +0000

    Fix fib algo rebuild delay calculation.
    
    Submitted by:   Marco Zec <zec at fer.hr>
    
    (cherry picked from commit e4ac3f74637778981b2d89745188bb2a39e24e42)
---
 sys/net/route/fib_algo.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sys/net/route/fib_algo.c b/sys/net/route/fib_algo.c
index b2aa2de087de..03c265d28d09 100644
--- a/sys/net/route/fib_algo.c
+++ b/sys/net/route/fib_algo.c
@@ -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);
 }
 
_______________________________________________
[email protected] mailing list
https://lists.freebsd.org/mailman/listinfo/dev-commits-src-all
To unsubscribe, send any mail to "[email protected]"

Reply via email to