From owner-freebsd-current@FreeBSD.ORG Sat May 12 05:29:57 2012 Return-Path: Delivered-To: current@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 29FFD1065670; Sat, 12 May 2012 05:29:57 +0000 (UTC) (envelope-from jasone@FreeBSD.org) Received: from canonware.com (10140.x.rootbsd.net [204.109.63.53]) by mx1.freebsd.org (Postfix) with ESMTP id 007858FC0C; Sat, 12 May 2012 05:29:56 +0000 (UTC) Received: from [192.168.168.4] (70-91-206-178-BusName-SFBA.hfc.comcastbusiness.net [70.91.206.178]) (using TLSv1 with cipher AES128-SHA (128/128 bits)) (No client certificate requested) by canonware.com (Postfix) with ESMTPSA id 31B6328417; Fri, 11 May 2012 22:29:56 -0700 (PDT) Mime-Version: 1.0 (Apple Message framework v1257) Content-Type: text/plain; charset=windows-1252 From: Jason Evans In-Reply-To: <20120509070101.GC1395@mole.fafoe.narf.at> Date: Fri, 11 May 2012 22:29:55 -0700 Content-Transfer-Encoding: quoted-printable Message-Id: References: <20120421185402.GH1743@albert.catwhisker.org> <7AD8956D-AD18-4CAB-9953-06E00185A7DA@freebsd.org> <4FA94E51.8020902@FreeBSD.org> <20120508213717.GA1410@mole.fafoe.narf.at> <20120508215802.GB1410@mole.fafoe.narf.at> <93A2687F-5061-42B7-883B-F92371F8023F@FreeBSD.org> <20120509070101.GC1395@mole.fafoe.narf.at> To: Stefan Farfeleder X-Mailer: Apple Mail (2.1257) Cc: current@FreeBSD.org Subject: Re: : jemalloc_arena.c:182: Failed assertion: "p[i] == 0" X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Discussions about the use of FreeBSD-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 12 May 2012 05:29:57 -0000 On May 9, 2012, at 12:01 AM, Stefan Farfeleder wrote: > On Tue, May 08, 2012 at 03:59:42PM -0700, Jason Evans wrote: >> On May 8, 2012, at 2:58 PM, Stefan Farfeleder wrote: >>> On Tue, May 08, 2012 at 02:47:59PM -0700, Jason Evans wrote: >>>> On May 8, 2012, at 2:37 PM, Stefan Farfeleder wrote: >>>>>=20 >>>>> I hit the same assertion with r235052 and inkscape. I'm now using >>>>> MALLOC_PRODUCTION and it works again. >>>>=20 >>>> Was the assertion failure easily reproducible with inkscape? >>>=20 >>> Yes, it crashed everytime before showing the GUI. The backtrace goes >>> like this: >=20 > [snip] >=20 >> sbrk() is being used rather than mmap(). Unless mmap() is failing = (which would surprise me), this indicates that you are using a version = of libc that's old enough to have the bug I fixed in r234569. >=20 > I'm afraid the backtrace was somehow corrupted. Here's a new one from = a libc > compiled with -g: >=20 > [=85] I received a similar report from Kevin Lo regarding bsdtar that proved = easy to reproduce. The fix is part of the jemalloc 3.0.0 import I just = did, and I expect it fixes the inkscape crashes as well. Thanks, Jason=