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 <frm> passed as parameter.
This commit is contained in:
Frdric Lcaille 2023-08-29 14:34:03 +02:00 committed by Willy Tarreau
parent 3c90c1ce6b
commit 7dad52bdbd

View File

@ -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;