From 68d6663afbae7e49e04bcabc1662df5db3edd738 Mon Sep 17 00:00:00 2001 From: Randall Stewart Date: Tue, 26 Jan 2021 11:54:42 -0500 Subject: This pulls over all the changes that are in the netflix tree that fix the ratelimit code. There were several bugs in tcp_ratelimit itself and we needed further work to support the multiple tag format coming for the joint TLS and Ratelimit dances. Sponsored by: Netflix Inc. Differential Revision: https://reviews.freebsd.org/D28357 (cherry picked from commit 1a714ff204193b9eb810426048e03f5d76e9730e) --- sys/netinet/tcp_stacks/bbr.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'sys/netinet/tcp_stacks/bbr.c') diff --git a/sys/netinet/tcp_stacks/bbr.c b/sys/netinet/tcp_stacks/bbr.c index 1ee8d26446fd..fbd5ac231496 100644 --- a/sys/netinet/tcp_stacks/bbr.c +++ b/sys/netinet/tcp_stacks/bbr.c @@ -5551,7 +5551,7 @@ lost_rate: bbr->rc_inp->inp_route.ro_nh->nh_ifp, rate, (RS_PACING_GEQ|RS_PACING_SUB_OK), - &error); + &error, NULL); if (nrte == NULL) { goto lost_rate; } @@ -14053,7 +14053,7 @@ nomore: inp->inp_route.ro_nh->nh_ifp, rate_wanted, (RS_PACING_GEQ|RS_PACING_SUB_OK), - &err); + &err, NULL); if (bbr->r_ctl.crte) { bbr_type_log_hdwr_pacing(bbr, bbr->r_ctl.crte->ptbl->rs_ifp, -- cgit v1.2.3