mirror of
http://git.haproxy.org/git/haproxy.git/
synced 2024-12-18 09:24:31 +00:00
BUG/MINOR: mux-h1: fix the "show fd" dest buffer for the subscriber
Commit 150c4f8b7
("MINOR: mux-h1: make the "show fd" helper also decode
the h1s subscriber when known") improved the output of "show fd" for the
H1 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
ba7657ca0f
commit
9b6a187e26
10
src/mux_h1.c
10
src/mux_h1.c
@ -3933,16 +3933,16 @@ static int h1_show_fd(struct buffer *msg, struct connection *conn)
|
|||||||
chunk_appendf(msg, " .sc.flg=0x%08x .sc.app=%p",
|
chunk_appendf(msg, " .sc.flg=0x%08x .sc.app=%p",
|
||||||
h1s_sc(h1s)->flags, h1s_sc(h1s)->app);
|
h1s_sc(h1s)->flags, h1s_sc(h1s)->app);
|
||||||
|
|
||||||
chunk_appendf(&trash, " .subs=%p", h1s->subs);
|
chunk_appendf(msg, " .subs=%p", h1s->subs);
|
||||||
if (h1s->subs) {
|
if (h1s->subs) {
|
||||||
chunk_appendf(&trash, "(ev=%d tl=%p", h1s->subs->events, h1s->subs->tasklet);
|
chunk_appendf(msg, "(ev=%d tl=%p", h1s->subs->events, h1s->subs->tasklet);
|
||||||
chunk_appendf(&trash, " tl.calls=%d tl.ctx=%p tl.fct=",
|
chunk_appendf(msg, " tl.calls=%d tl.ctx=%p tl.fct=",
|
||||||
h1s->subs->tasklet->calls,
|
h1s->subs->tasklet->calls,
|
||||||
h1s->subs->tasklet->context);
|
h1s->subs->tasklet->context);
|
||||||
if (h1s->subs->tasklet->calls >= 1000000)
|
if (h1s->subs->tasklet->calls >= 1000000)
|
||||||
ret = 1;
|
ret = 1;
|
||||||
resolve_sym_name(&trash, NULL, h1s->subs->tasklet->process);
|
resolve_sym_name(msg, NULL, h1s->subs->tasklet->process);
|
||||||
chunk_appendf(&trash, ")");
|
chunk_appendf(msg, ")");
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
return ret;
|
return ret;
|
||||||
|
Loading…
Reference in New Issue
Block a user