From: Frédéric Lécaille Date: Tue, 29 Aug 2023 12:34:03 +0000 (+0200) Subject: MINOR: quic: Add a trace to quic_release_frm() X-Git-Tag: v2.9-dev5~70 X-Git-Url: http://www.kaiwu.me/postgresql/commit/static/gitweb.js?a=commitdiff_plain;h=7dad52bdbd6cc5020edcd863a4ce09a5ccf5c613;p=haproxy.git MINOR: quic: Add a trace to quic_release_frm() Display the address of the frame to be released as soon as entering into quic_release_frm() whose job is obviously to released the memory allocated for the frame passed as parameter. --- diff --git a/src/quic_frame.c b/src/quic_frame.c index f918cbd0d..b48e878f6 100644 --- a/src/quic_frame.c +++ b/src/quic_frame.c @@ -1232,7 +1232,7 @@ void qc_release_frm(struct quic_conn *qc, struct quic_frame *frm) uint64_t pn; struct quic_frame *origin, *f, *tmp; - TRACE_ENTER(QUIC_EV_CONN_PRSAFRM, qc); + TRACE_ENTER(QUIC_EV_CONN_PRSAFRM, qc, frm); /* Identify this frame: a frame copy or one of its copies */ origin = frm->origin ? frm->origin : frm;