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 62C1219C19 for ; Wed, 27 Apr 2016 15:39:59 +0000 (UTC) Received: (qmail 29072 invoked by uid 500); 27 Apr 2016 15:39:59 -0000 Delivered-To: apmail-httpd-cvs-archive@httpd.apache.org Received: (qmail 29011 invoked by uid 500); 27 Apr 2016 15:39:59 -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 29002 invoked by uid 99); 27 Apr 2016 15:39:59 -0000 Received: from pnap-us-west-generic-nat.apache.org (HELO spamd4-us-west.apache.org) (209.188.14.142) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 27 Apr 2016 15:39:59 +0000 Received: from localhost (localhost [127.0.0.1]) by spamd4-us-west.apache.org (ASF Mail Server at spamd4-us-west.apache.org) with ESMTP id BBCA0C07CC for ; Wed, 27 Apr 2016 15:39:57 +0000 (UTC) X-Virus-Scanned: Debian amavisd-new at spamd4-us-west.apache.org X-Spam-Flag: NO X-Spam-Score: 0.999 X-Spam-Level: X-Spam-Status: No, score=0.999 tagged_above=-999 required=6.31 tests=[KAM_LAZY_DOMAIN_SECURITY=1, RP_MATCHES_RCVD=-0.001] autolearn=disabled Received: from mx2-lw-eu.apache.org ([10.40.0.8]) by localhost (spamd4-us-west.apache.org [10.40.0.11]) (amavisd-new, port 10024) with ESMTP id YkrXhoXFKfLx for ; Wed, 27 Apr 2016 15:39:56 +0000 (UTC) Received: from mailrelay1-us-west.apache.org (mailrelay1-us-west.apache.org [209.188.14.139]) by mx2-lw-eu.apache.org (ASF Mail Server at mx2-lw-eu.apache.org) with ESMTP id 8F3615F2F2 for ; Wed, 27 Apr 2016 15:39:56 +0000 (UTC) Received: from svn01-us-west.apache.org (svn.apache.org [10.41.0.6]) by mailrelay1-us-west.apache.org (ASF Mail Server at mailrelay1-us-west.apache.org) with ESMTP id 7ABD3E01AB for ; Wed, 27 Apr 2016 15:39:55 +0000 (UTC) Received: from svn01-us-west.apache.org (localhost [127.0.0.1]) by svn01-us-west.apache.org (ASF Mail Server at svn01-us-west.apache.org) with ESMTP id 5A0C73A071E for ; Wed, 27 Apr 2016 15:39:54 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r1741278 - /httpd/httpd/trunk/server/mpm/event/event.c Date: Wed, 27 Apr 2016 15:39:53 -0000 To: cvs@httpd.apache.org From: wrowe@apache.org X-Mailer: svnmailer-1.0.9 Message-Id: <20160427153954.5A0C73A071E@svn01-us-west.apache.org> Author: wrowe Date: Wed Apr 27 15:39:53 2016 New Revision: 1741278 URL: http://svn.apache.org/viewvc?rev=1741278&view=rev Log: Revert 1741277 - need a scoreboard by slot context here Modified: httpd/httpd/trunk/server/mpm/event/event.c Modified: httpd/httpd/trunk/server/mpm/event/event.c URL: http://svn.apache.org/viewvc/httpd/httpd/trunk/server/mpm/event/event.c?rev=1741278&r1=1741277&r2=1741278&view=diff ============================================================================== --- httpd/httpd/trunk/server/mpm/event/event.c (original) +++ httpd/httpd/trunk/server/mpm/event/event.c Wed Apr 27 15:39:53 2016 @@ -1158,7 +1158,7 @@ read_request: if (cs->pub.state == CONN_STATE_WRITE_COMPLETION) { int not_complete_yet; - ap_update_child_status_from_conn(sbh, SERVER_BUSY_WRITE, NULL); + ap_update_child_status_from_conn(sbh, SERVER_BUSY_WRITE, c); not_complete_yet = ap_run_output_pending(c); @@ -1199,7 +1199,7 @@ read_request: start_lingering_close_blocking(cs); } else if (cs->pub.state == CONN_STATE_CHECK_REQUEST_LINE_READABLE) { - ap_update_child_status_from_conn(sbh, SERVER_BUSY_KEEPALIVE, NULL); + ap_update_child_status_from_conn(sbh, SERVER_BUSY_KEEPALIVE, c); /* It greatly simplifies the logic to use a single timeout value per q * because the new element can just be added to the end of the list and