Return-Path: Delivered-To: apmail-httpd-cvs-archive@www.apache.org Received: (qmail 94637 invoked from network); 26 May 2008 14:17:48 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.2) by minotaur.apache.org with SMTP; 26 May 2008 14:17:48 -0000 Received: (qmail 66332 invoked by uid 500); 26 May 2008 14:17:50 -0000 Delivered-To: apmail-httpd-cvs-archive@httpd.apache.org Received: (qmail 66237 invoked by uid 500); 26 May 2008 14:17:49 -0000 Mailing-List: contact cvs-help@httpd.apache.org; run by ezmlm Precedence: bulk Reply-To: dev@httpd.apache.org list-help: list-unsubscribe: List-Post: List-Id: Delivered-To: mailing list cvs@httpd.apache.org Received: (qmail 66219 invoked by uid 99); 26 May 2008 14:17:49 -0000 Received: from nike.apache.org (HELO nike.apache.org) (192.87.106.230) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 26 May 2008 07:17:49 -0700 X-ASF-Spam-Status: No, hits=-2000.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [140.211.11.4] (HELO eris.apache.org) (140.211.11.4) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 26 May 2008 14:16:52 +0000 Received: by eris.apache.org (Postfix, from userid 65534) id 4C79623889C2; Mon, 26 May 2008 07:17:13 -0700 (PDT) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r660196 - /httpd/httpd/branches/2.2.x/STATUS Date: Mon, 26 May 2008 14:17:12 -0000 To: cvs@httpd.apache.org From: rpluem@apache.org X-Mailer: svnmailer-1.0.8 Message-Id: <20080526141713.4C79623889C2@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org Author: rpluem Date: Mon May 26 07:17:11 2008 New Revision: 660196 URL: http://svn.apache.org/viewvc?rev=660196&view=rev Log: * Promote Modified: httpd/httpd/branches/2.2.x/STATUS Modified: httpd/httpd/branches/2.2.x/STATUS URL: http://svn.apache.org/viewvc/httpd/httpd/branches/2.2.x/STATUS?rev=660196&r1=660195&r2=660196&view=diff ============================================================================== --- httpd/httpd/branches/2.2.x/STATUS (original) +++ httpd/httpd/branches/2.2.x/STATUS Mon May 26 07:17:11 2008 @@ -90,6 +90,50 @@ PATCHES ACCEPTED TO BACKPORT FROM TRUNK: [ start all new proposals below, under PATCHES PROPOSED. ] + * ab: Sync to current trunk in order to include: + Add siege-like behaviour to ApacheBench; output the results, as they + have accrued so far, when the user interrupts with ctrl-c. As the + signal handler is non-reentrant, we don't need volatiles, and the + operations all look signal-safe. Update the base version. + Set the LastChangedRevision svn property, as ab.c has $Rev $ embedded. + Add -r option to continue after socket receive errors. + The apr_port_t type is unsigned, but ab was using a signed format + code in its reports. PR 42070. + Correct behavior of HTTP request headers sent by ab in presence of + -H command-line overrides. PR: 31268, 26554 + Explain that POST data should be sent as the correct MIME type. + Do not try to read non existing response bodies of HEAD requests. PR: 34275 + Use a 64 bit unsigned int instead of a signed long to count the + bytes transferred to avoid integer overflows. PR: 44346 + Overhaul ab.c stats collection and reporting to avoid integer + truncation and time divisions within the test loop, retain + native time resolution until output, remove unused data, + avoid structure copies, consistently round milliseconds, and + generally avoid losing accuracy of calculation due to type casts. + Incidentally fixes output bug on gnuplot (seconds were being + output as microseconds). PR: 44878, 44931. + Don't stop sending a request if EAGAIN is returned, which will only + happen if both the write and subsequent wait are returning EAGAIN, + and count posted bytes correctly when the initial write of a request + is not complete. PR 10038, 38861, 39679 + Improve client performance by clearing connection pool instead + of destroying it. PR 40054 + Trunk version of patch: + http://svn.apache.org/viewvc?view=rev&revision=390511 + http://svn.apache.org/viewvc?view=rev&revision=390519 + http://svn.apache.org/viewvc?view=rev&revision=516175 + http://svn.apache.org/viewvc?view=rev&revision=526584 + http://svn.apache.org/viewvc?view=rev&revision=526872 + http://svn.apache.org/viewvc?view=rev&revision=541138 + http://svn.apache.org/viewvc?view=rev&revision=612954 + http://svn.apache.org/viewvc?view=rev&revision=617890 + http://svn.apache.org/viewvc?view=rev&revision=655214 + http://svn.apache.org/viewvc?view=rev&revision=655637 + http://svn.apache.org/viewvc?view=rev&revision=655654 + Backport version for 2.2.x of patch: + http://people.apache.org/~fielding/p/ab-sync.txt + +1: fielding, jim, wrowe + PATCHES PROPOSED TO BACKPORT FROM TRUNK: [ New proposals should be added at the end of the list ] @@ -150,50 +194,6 @@ http://svn.apache.org/viewvc/httpd/httpd/trunk/support/win32/ApacheMonitor.c?view=log +1: wrowe - * ab: Sync to current trunk in order to include: - Add siege-like behaviour to ApacheBench; output the results, as they - have accrued so far, when the user interrupts with ctrl-c. As the - signal handler is non-reentrant, we don't need volatiles, and the - operations all look signal-safe. Update the base version. - Set the LastChangedRevision svn property, as ab.c has $Rev $ embedded. - Add -r option to continue after socket receive errors. - The apr_port_t type is unsigned, but ab was using a signed format - code in its reports. PR 42070. - Correct behavior of HTTP request headers sent by ab in presence of - -H command-line overrides. PR: 31268, 26554 - Explain that POST data should be sent as the correct MIME type. - Do not try to read non existing response bodies of HEAD requests. PR: 34275 - Use a 64 bit unsigned int instead of a signed long to count the - bytes transferred to avoid integer overflows. PR: 44346 - Overhaul ab.c stats collection and reporting to avoid integer - truncation and time divisions within the test loop, retain - native time resolution until output, remove unused data, - avoid structure copies, consistently round milliseconds, and - generally avoid losing accuracy of calculation due to type casts. - Incidentally fixes output bug on gnuplot (seconds were being - output as microseconds). PR: 44878, 44931. - Don't stop sending a request if EAGAIN is returned, which will only - happen if both the write and subsequent wait are returning EAGAIN, - and count posted bytes correctly when the initial write of a request - is not complete. PR 10038, 38861, 39679 - Improve client performance by clearing connection pool instead - of destroying it. PR 40054 - Trunk version of patch: - http://svn.apache.org/viewvc?view=rev&revision=390511 - http://svn.apache.org/viewvc?view=rev&revision=390519 - http://svn.apache.org/viewvc?view=rev&revision=516175 - http://svn.apache.org/viewvc?view=rev&revision=526584 - http://svn.apache.org/viewvc?view=rev&revision=526872 - http://svn.apache.org/viewvc?view=rev&revision=541138 - http://svn.apache.org/viewvc?view=rev&revision=612954 - http://svn.apache.org/viewvc?view=rev&revision=617890 - http://svn.apache.org/viewvc?view=rev&revision=655214 - http://svn.apache.org/viewvc?view=rev&revision=655637 - http://svn.apache.org/viewvc?view=rev&revision=655654 - Backport version for 2.2.x of patch: - http://people.apache.org/~fielding/p/ab-sync.txt - +1: fielding, jim, wrowe - * suexec: When group is given as a numeric gid, validate it by looking up the actual group name such that the name can be used in log entries. PR 7862 [, Leif W ]