]> git.ipfire.org Git - thirdparty/haproxy.git/commitdiff
MINOR: quic: No TRACE_LEAVE() in retrieve_qc_conn_from_cid()
authorFrédéric Lécaille <flecaille@haproxy.com>
Wed, 7 Sep 2022 10:15:43 +0000 (12:15 +0200)
committerFrédéric Lécaille <flecaille@haproxy.com>
Wed, 7 Sep 2022 13:59:43 +0000 (15:59 +0200)
This macro was confused with TRACE_ENTER().

Should be backported to 2.6.

src/xprt_quic.c

index 6ac165cdd88b766b0b4e679c090f82469f7cf169..0c503cf7519ef0c0d363b9ed944643b716a8345a 100644 (file)
@@ -5608,7 +5608,7 @@ static struct quic_conn *retrieve_qc_conn_from_cid(struct quic_rx_packet *pkt,
                ebmb_delete(&qc->odcid_node);
 
  end:
-       TRACE_ENTER(QUIC_EV_CONN_RXPKT, qc);
+       TRACE_LEAVE(QUIC_EV_CONN_RXPKT, qc);
        return qc;
 }