From owner-freebsd-current@FreeBSD.ORG Fri Sep 19 16:39:35 2003 Return-Path: Delivered-To: freebsd-current@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 0562816A4B3 for ; Fri, 19 Sep 2003 16:39:35 -0700 (PDT) Received: from Stalker.alfacom.net (Stalker.Alfacom.net [193.108.124.1]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4AA1343FF9 for ; Fri, 19 Sep 2003 16:39:32 -0700 (PDT) (envelope-from vkushnir@Alfacom.net) Received: from kushnir1.kiev.ua (124-217.dialup.Alfacom.net [193.108.124.217]) by Stalker.alfacom.net (8.12.8/8.12.8) with ESMTP id h8JNcn7m021513; Sat, 20 Sep 2003 02:38:50 +0300 (EEST) Received: from kushnir1.kiev.ua (kushnir1.kiev.ua [10.0.0.1]) by kushnir1.kiev.ua (8.12.9/8.12.9) with ESMTP id h8JNclTc000613; Sat, 20 Sep 2003 02:38:47 +0300 (EEST) (envelope-from vkushnir@Alfacom.net) Date: Sat, 20 Sep 2003 02:38:47 +0300 (EEST) From: Vladimir Kushnir X-X-Sender: vkushnir@kushnir1.kiev.ua To: Marius Strobl In-Reply-To: <20030919182152.A98528@newtrinity.zeist.de> Message-ID: <20030920023645.M589@kushnir1.kiev.ua> References: <20030918134850.GA22643@student.agh.edu.pl> <20030918155125.GC22643@student.agh.edu.pl> <20030919182152.A98528@newtrinity.zeist.de> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII cc: freebsd-current@freebsd.org cc: w@dream.vg Subject: Re: ATAng still problematic X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.1 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: Fri, 19 Sep 2003 23:39:35 -0000 Who-hoo, it works!!! Thanks a bunch!!! On Fri, 19 Sep 2003, Marius Strobl wrote: > On Thu, Sep 18, 2003 at 05:51:25PM +0200, Jan Srzednicki wrote: > > > > Anyway, here's backtrace for atapicam panic I've mentioned. It's > > triggered by: > > > > cdrecord dev=1,1,0 /some/track > > > > This panic isn't ATAPICAM related. Could you try the patch below? It's > against the cdrtools-devel port but should also work with the cdrtools > port. > > > Index: files/patch-conf::configure > =================================================================== > RCS file: files/patch-conf::configure > diff -N files/patch-conf::configure > --- /dev/null 1 Jan 1970 00:00:00 -0000 > +++ files/patch-conf::configure 19 Sep 2003 16:03:35 -0000 > @@ -0,0 +1,10 @@ > +--- conf/configure.orig Fri Sep 19 16:47:37 2003 > ++++ conf/configure Fri Sep 19 16:49:26 2003 > +@@ -5567,6 +5567,7 @@ > + int > + main() > + { > ++ exit(1); > + if (mlockall(MCL_CURRENT|MCL_FUTURE) < 0) { > + if (errno == EINVAL || errno == ENOMEM || > + errno == EPERM || errno == EACCES) And thanks again, Vladimir