From: Stefan Eissing Date: Mon, 20 Jun 2022 11:25:42 +0000 (+0000) Subject: *) mod_http2: remove the workers pool from APR_POOL_DEBUG X-Git-Tag: 2.5.0-alpha2-ci-test-only~285 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=d6de92c333c3f8cf7b203525328a604c8d202e51;p=thirdparty%2Fapache%2Fhttpd.git *) mod_http2: remove the workers pool from APR_POOL_DEBUG logging now that h2_workers is opaque. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1902095 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/modules/http2/h2_mplx.c b/modules/http2/h2_mplx.c index bb6b324115a..b83c338123d 100644 --- a/modules/http2/h2_mplx.c +++ b/modules/http2/h2_mplx.c @@ -709,16 +709,15 @@ void h2_mplx_c1_process(h2_mplx *m, #if APR_POOL_DEBUG do { - apr_size_t mem_g, mem_m, mem_s, mem_w, mem_c1; + apr_size_t mem_g, mem_m, mem_s, mem_c1; mem_g = pchild? apr_pool_num_bytes(pchild, 1) : 0; mem_m = apr_pool_num_bytes(m->pool, 1); mem_s = apr_pool_num_bytes(session->pool, 1); - mem_w = apr_pool_num_bytes(m->workers->pool, 1); mem_c1 = apr_pool_num_bytes(m->c1->pool, 1); ap_log_cerror(APLOG_MARK, APLOG_INFO, 0, m->c1, - H2_MPLX_MSG(m, "child mem=%ld, mplx mem=%ld, session mem=%ld, workers=%ld, c1=%ld"), - (long)mem_g, (long)mem_m, (long)mem_s, (long)mem_w, (long)mem_c1); + H2_MPLX_MSG(m, "child mem=%ld, mplx mem=%ld, session mem=%ld, c1=%ld"), + (long)mem_g, (long)mem_m, (long)mem_s, (long)mem_c1); } while (0); #endif