Return-Path: X-Original-To: apmail-httpd-cvs-archive@www.apache.org Delivered-To: apmail-httpd-cvs-archive@www.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id 6D2E6CCC5 for ; Thu, 27 Jun 2013 16:59:29 +0000 (UTC) Received: (qmail 31985 invoked by uid 500); 27 Jun 2013 16:59:28 -0000 Delivered-To: apmail-httpd-cvs-archive@httpd.apache.org Received: (qmail 31918 invoked by uid 500); 27 Jun 2013 16:59:28 -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 31897 invoked by uid 99); 27 Jun 2013 16:59:28 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 27 Jun 2013 16:59:28 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=5.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; Thu, 27 Jun 2013 16:59:24 +0000 Received: from eris.apache.org (localhost [127.0.0.1]) by eris.apache.org (Postfix) with ESMTP id 0268A2388A3D; Thu, 27 Jun 2013 16:59:05 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r1497443 - in /httpd/httpd/branches/2.2.x: ./ CHANGES STATUS configure.in Date: Thu, 27 Jun 2013 16:59:04 -0000 To: cvs@httpd.apache.org From: wrowe@apache.org X-Mailer: svnmailer-1.0.8-patched Message-Id: <20130627165905.0268A2388A3D@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org Author: wrowe Date: Thu Jun 27 16:59:04 2013 New Revision: 1497443 URL: http://svn.apache.org/r1497443 Log: core: Support the SINGLE_LISTEN_UNSERIALIZED_ACCEPT optimization on Linux kernel versions 3.x and above. PR: 55121 Backports: r1496429 Submitted by: Bradley Heilbrun Reviewed by: trawick, wrowe, rjung Modified: httpd/httpd/branches/2.2.x/ (props changed) httpd/httpd/branches/2.2.x/CHANGES httpd/httpd/branches/2.2.x/STATUS httpd/httpd/branches/2.2.x/configure.in Propchange: httpd/httpd/branches/2.2.x/ ------------------------------------------------------------------------------ Merged /httpd/httpd/trunk:r1496429 Modified: httpd/httpd/branches/2.2.x/CHANGES URL: http://svn.apache.org/viewvc/httpd/httpd/branches/2.2.x/CHANGES?rev=1497443&r1=1497442&r2=1497443&view=diff ============================================================================== --- httpd/httpd/branches/2.2.x/CHANGES [utf-8] (original) +++ httpd/httpd/branches/2.2.x/CHANGES [utf-8] Thu Jun 27 16:59:04 2013 @@ -42,6 +42,10 @@ Changes with Apache 2.2.25 result in a 412 Precondition Failed. PR54610 [Timothy Wood ] + *) core: Support the SINGLE_LISTEN_UNSERIALIZED_ACCEPT optimization + on Linux kernel versions 3.x and above. PR 55121. [Bradley Heilbrun + ] + Changes with Apache 2.2.24 *) SECURITY: CVE-2012-3499 (cve.mitre.org) Modified: httpd/httpd/branches/2.2.x/STATUS URL: http://svn.apache.org/viewvc/httpd/httpd/branches/2.2.x/STATUS?rev=1497443&r1=1497442&r2=1497443&view=diff ============================================================================== --- httpd/httpd/branches/2.2.x/STATUS (original) +++ httpd/httpd/branches/2.2.x/STATUS Thu Jun 27 16:59:04 2013 @@ -112,12 +112,6 @@ PATCHES ACCEPTED TO BACKPORT FROM TRUNK: 2.2.x patch: trunk patch works (minus CHANGES) +1: minfrin, wrowe, rjung - * core: Support the SINGLE_LISTEN_UNSERIALIZED_ACCEPT optimization - on Linux kernel versions 3.x and above. (PR 55121) - trunk patch: http://svn.apache.org/r1496429 - 2.2.x patch: trunk patch works modulo CHANGES - +1: trawick, wrowe, rjung - * mod_ssl/proxy: enable the SNI extension for backend TLS connections [Kaspar Brand] 2.2.x patch: http://people.apache.org/~rjung/patches/r1175416-2.0-v2.patch Modified: httpd/httpd/branches/2.2.x/configure.in URL: http://svn.apache.org/viewvc/httpd/httpd/branches/2.2.x/configure.in?rev=1497443&r1=1497442&r2=1497443&view=diff ============================================================================== --- httpd/httpd/branches/2.2.x/configure.in (original) +++ httpd/httpd/branches/2.2.x/configure.in Thu Jun 27 16:59:04 2013 @@ -275,10 +275,11 @@ case $host in ;; *-linux-*) case `uname -r` in - 2.[[2-9]]* ) - APR_SETVAR(SINGLE_LISTEN_UNSERIALIZED_ACCEPT, [1]) + # Unserialized accept() was not recommended until Linux 2.2. + [[01]].* | 2.[[01]]* ) ;; * ) + APR_SETVAR(SINGLE_LISTEN_UNSERIALIZED_ACCEPT, [1]) ;; esac ;;