Return-Path: Delivered-To: apmail-httpd-dev-archive@www.apache.org Received: (qmail 53875 invoked from network); 20 Feb 2008 11:29:43 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.2) by minotaur.apache.org with SMTP; 20 Feb 2008 11:29:43 -0000 Received: (qmail 27213 invoked by uid 500); 20 Feb 2008 11:29:36 -0000 Delivered-To: apmail-httpd-dev-archive@httpd.apache.org Received: (qmail 27151 invoked by uid 500); 20 Feb 2008 11:29:35 -0000 Mailing-List: contact dev-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 dev@httpd.apache.org Received: (qmail 27140 invoked by uid 99); 20 Feb 2008 11:29:35 -0000 Received: from nike.apache.org (HELO nike.apache.org) (192.87.106.230) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 20 Feb 2008 03:29:35 -0800 X-ASF-Spam-Status: No, hits=-0.0 required=10.0 tests=SPF_PASS X-Spam-Check-By: apache.org Received-SPF: pass (nike.apache.org: local policy) Received: from [195.232.246.85] (HELO mo2.vodafone.com) (195.232.246.85) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 20 Feb 2008 11:28:48 +0000 Received: from mi2.vodafone.com (mi2.vodafone.com [195.232.246.139]) by mo2.vodafone.com (Switch-3.2.5/Switch-3.2.5) with ESMTP id m1KBT8GG017213 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=FAIL) for ; Wed, 20 Feb 2008 12:29:08 +0100 Received: from avoexs04.internal.vodafone.com (avoexs04.dc-ratingen.de [145.230.4.198]) by mi2.vodafone.com (Switch-3.2.5/Switch-3.2.5) with ESMTP id m1KBT5Dj008396 for ; Wed, 20 Feb 2008 12:29:08 +0100 Received: from VF-MBX11.internal.vodafone.com ([145.230.5.20]) by avoexs04.internal.vodafone.com with Microsoft SMTPSVC(6.0.3790.3959); Wed, 20 Feb 2008 12:29:08 +0100 X-MimeOLE: Produced By Microsoft Exchange V6.5 Content-class: urn:content-classes:message MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable Subject: Re: httpd 2.2.8 + mod_cache segfaults Date: Wed, 20 Feb 2008 12:29:04 +0100 Message-ID: <99EA83DCDE961346AFA9B5EC33FEC08B464B7E@VF-MBX11.internal.vodafone.com> In-Reply-To: X-MS-Has-Attach: X-MS-TNEF-Correlator: Thread-Topic: Re: httpd 2.2.8 + mod_cache segfaults Thread-Index: AchzrQ4qIDU2nw0sQZqKABI+3CDZVAAA2ZvA References: From: =?iso-8859-1?Q?Pl=FCm=2C_R=FCdiger=2C_VF-Group?= To: X-OriginalArrivalTime: 20 Feb 2008 11:29:08.0365 (UTC) FILETIME=[CEAA0BD0:01C873B3] X-eXpurgate-Category: 1/0 X-eXpurgate-ID: 149371::080220122908-77285BB0-0D185C2F/0-0/0-0 X-Virus-Checked: Checked by ClamAV on apache.org =20 > -----Urspr=FCngliche Nachricht----- > Von: Niklas Edmundsson=20 > Gesendet: Mittwoch, 20. Februar 2008 11:40 > An: dev@httpd.apache.org > Betreff: httpd 2.2.8 + mod_cache segfaults >=20 >=20 > Hi all! >=20 > Getting a few cycles I thought I should do an easy migration to httpd=20 > 2.2.8, but it seems that the thing is dumping core on me... >=20 > Are anyone else using httpd 2.2.8 together with mod_cache=20 > seeing this?=20 Not so far. > At the moment I'm not sure where the problem is. Our mod_disk_cache=20 > patches are unchanged from 2.2.6 and my patch for mod_cache.c is the=20 > same (the relaxupdates feature, and it's not enabled in config), so=20 > I'm suspecting something changed between httpd 2.2.6 and 2.2.8 that=20 > makes it fall apart on me. >=20 > Anyone seen something similar? Any hints on where to dig? >From what I can see in the stack trace frame #4 points to the NULL = pointer. Looks like there is no copy function set for the particular bucket type = that gets processesd (not even the default one (apr_bucket_copy_notimpl) that = returns APR_ENOTIMPL). So please try the following: frame 5 dump_brigade bb dump_bucket ec This should give a hint which bucket / bucket type fails and should give hints how to proceed further. Regards R=FCdiger