MINOR: mux-quic: add flow-control info to minimal trace level

Complete traces with information from qcc and qcs instances about
flow-control level. This should help to debug further issue on sending.

This must be backported up to 2.7.
This commit is contained in:
Amaury Denoyelle 2023-03-22 15:09:41 +01:00
parent b7143a8781
commit f4e7616e6c
1 changed files with 7 additions and 1 deletions

View File

@ -76,10 +76,16 @@ static void qmux_trace(enum trace_level level, uint64_t mask,
if (qcc->conn->handle.qc)
chunk_appendf(&trace_buf, " qc=%p", qcc->conn->handle.qc);
if (qcs)
chunk_appendf(&trace_buf, " md=%llu/%llu/%llu",
(ullong)qcc->rfctl.md, (ullong)qcc->tx.offsets, (ullong)qcc->tx.sent_offsets);
if (qcs) {
chunk_appendf(&trace_buf, " qcs=%p .id=%llu .st=%s",
qcs, (ullong)qcs->id,
qcs_st_to_str(qcs->st));
chunk_appendf(&trace_buf, " msd=%llu/%llu/%llu",
(ullong)qcs->tx.msd, (ullong)qcs->tx.offset, (ullong)qcs->tx.sent_offset);
}
if (mask & QMUX_EV_QCC_NQCS) {
const uint64_t *id = a3;