]> git.ipfire.org Git - thirdparty/haproxy.git/commitdiff
MINOR: quic: reduce the private data size of QUIC cc algos
authorFrederic Lecaille <flecaille@haproxy.com>
Thu, 12 Dec 2024 11:30:18 +0000 (12:30 +0100)
committerFrederic Lecaille <flecaille@haproxy.com>
Fri, 13 Dec 2024 13:42:43 +0000 (14:42 +0100)
After these commits:

    BUG/MINOR: quic: remove max_bw filter from delivery rate sampling
    BUG/MINOR: quic: fix BBB max bandwidth oscillation issue

where some members were removed from bbr struct, the private data
size of QUIC cc algorithms may be reduced from 160 to 144 uint32_t.

Should be easily backported to 3.1 alonside the commits mentioned above.

include/haproxy/quic_cc-t.h

index a0dee3918429dbca1659636a6f9591873e83f064..670c4f5e99430c4fb868e3ebfb4ace7ebd52c40d 100644 (file)
@@ -91,7 +91,7 @@ struct quic_cc {
        /* <conn> is there only for debugging purpose. */
        struct quic_conn *qc;
        struct quic_cc_algo *algo;
-       uint32_t priv[160];
+       uint32_t priv[144];
 };
 
 struct quic_cc_path {