mirror of
https://git.haproxy.org/git/haproxy.git/
synced 2026-03-06 15:41:36 +01:00
BUG/MINOR: mux-h2: fix the "show fd" dest buffer for the subscriber
Commit 98e40b981 ("MINOR: mux-h2: make the "show fd" helper also decode
the h2s subscriber when known") improved the output of "show fd" for the
H2 mux, but the output is sent to the trash buffer instead of the msg
argument. It turns out that this has no effect right now as the caller
passes the trash but this is risky.
This should be backported to 2.4.
This commit is contained in:
parent
df3231c74a
commit
ba7657ca0f
10
src/mux_h2.c
10
src/mux_h2.c
@ -6800,16 +6800,16 @@ static int h2_show_fd(struct buffer *msg, struct connection *conn)
|
||||
chunk_appendf(msg, "sd=%p", h2s->sd);
|
||||
chunk_appendf(msg, "(.flg=0x%08x)", se_fl_get(h2s->sd));
|
||||
|
||||
chunk_appendf(&trash, " .subs=%p", h2s->subs);
|
||||
chunk_appendf(msg, " .subs=%p", h2s->subs);
|
||||
if (h2s->subs) {
|
||||
chunk_appendf(&trash, "(ev=%d tl=%p", h2s->subs->events, h2s->subs->tasklet);
|
||||
chunk_appendf(&trash, " tl.calls=%d tl.ctx=%p tl.fct=",
|
||||
chunk_appendf(msg, "(ev=%d tl=%p", h2s->subs->events, h2s->subs->tasklet);
|
||||
chunk_appendf(msg, " tl.calls=%d tl.ctx=%p tl.fct=",
|
||||
h2s->subs->tasklet->calls,
|
||||
h2s->subs->tasklet->context);
|
||||
if (h2s->subs->tasklet->calls >= 1000000)
|
||||
ret = 1;
|
||||
resolve_sym_name(&trash, NULL, h2s->subs->tasklet->process);
|
||||
chunk_appendf(&trash, ")");
|
||||
resolve_sym_name(msg, NULL, h2s->subs->tasklet->process);
|
||||
chunk_appendf(msg, ")");
|
||||
}
|
||||
}
|
||||
return ret;
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user