From owner-freebsd-current@FreeBSD.ORG Mon Sep 24 17:10:19 2007 Return-Path: Delivered-To: freebsd-current@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 1934916A417 for ; Mon, 24 Sep 2007 17:10:19 +0000 (UTC) (envelope-from qpadla@gmail.com) Received: from nf-out-0910.google.com (nf-out-0910.google.com [64.233.182.188]) by mx1.freebsd.org (Postfix) with ESMTP id BD14813C478 for ; Mon, 24 Sep 2007 17:10:18 +0000 (UTC) (envelope-from qpadla@gmail.com) Received: by nf-out-0910.google.com with SMTP id b2so1226031nfb for ; Mon, 24 Sep 2007 10:10:17 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=beta; h=domainkey-signature:received:received:from:reply-to:to:subject:date:user-agent:cc:references:in-reply-to:mime-version:content-type:content-transfer-encoding:message-id; bh=SFhAC6xGNN4QRKJ7iq3TmJzQZ4yhjXfqZ4MzeGaJfg4=; b=NUucM3S7B38otJeOqZzEBz0rR2vYjGL4f3A8MbYexTcnAbyUx27Q8i3VlXVZvuk/ORqL9Mn3h3muKsEgHP6QbKxufcpwczKBPqToXxKls9zOy1ef9BkDIbvOXR+LiMFRlbhd4E/lWtotUZc1VSB0Q5TuCrl07HvseHiJPCaxBNE= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=beta; h=received:from:reply-to:to:subject:date:user-agent:cc:references:in-reply-to:mime-version:content-type:content-transfer-encoding:message-id; b=dEGirxuQSPr4AcXhldC7aQL4MDe1eNx90RCviXUD6u89YAJIdfPhpNlEr4QhJlwpkgMbIA1sjCHpvH+gpXqxs/DBlE18zwkQ+En+EITsvQsFT0lwVC4fX6pR1cHd29lHtz6DoVGqabHDaUzloSM5k3NA6QfEcQoxREhTZjR/EdM= Received: by 10.78.157.19 with SMTP id f19mr3733095hue.1190653816466; Mon, 24 Sep 2007 10:10:16 -0700 (PDT) Received: from orion ( [77.109.34.178]) by mx.google.com with ESMTPS id s34sm1514156hub.2007.09.24.10.10.11 (version=TLSv1/SSLv3 cipher=OTHER); Mon, 24 Sep 2007 10:10:15 -0700 (PDT) From: Nikolay Pavlov To: freebsd-current@freebsd.org Date: Mon, 24 Sep 2007 20:09:59 +0300 User-Agent: KMail/1.9.7 References: <20070924051118.H9923@small> <20070924100607.GC1462@elvandar.org> <20070924183258.J1576@small> In-Reply-To: <20070924183258.J1576@small> MIME-Version: 1.0 Content-Type: multipart/signed; boundary="nextPart3131174.8QhCsSs208"; protocol="application/pgp-signature"; micalg=pgp-sha1 Content-Transfer-Encoding: 7bit Message-Id: <200709242010.05222.qpadla@gmail.com> Cc: "P.U.Kruppa" , Remko Lodder Subject: Re: Parallel port printing crashes 7.0 system X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: qpadla@gmail.com List-Id: Discussions about the use of FreeBSD-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 24 Sep 2007 17:10:19 -0000 --nextPart3131174.8QhCsSs208 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable Content-Disposition: inline On Monday 24 September 2007 19:36:53 P.U.Kruppa wrote: > On Mon, 24 Sep 2007, Remko Lodder wrote: > > On Mon, Sep 24, 2007 at 11:50:37AM +0200, P.U.Kruppa wrote: > >> On Mon, 24 Sep 2007, Kris Kennaway wrote: > >>> P.U.Kruppa wrote: > >>>> Hello, > >>>> I use a HP Deskjet 990 Cxi via parallel port with cups and hpijs > >>>> driver on FreeBSD pukruppa.net 7.0-CURRENT FreeBSD 7.0-CURRENT #0: > >>>> Fri Sep 21 16:52:59 CEST 2007 amd64 > >>>> When I try to print a little bit more complex documents > >>>> (OpenOffice, pdf) my System will crash. > >>>> On my root terminal there will be a long list of > >>>> lpt0: [ITHREAD] > >>>> lpt0: [GIANT-LOCKED] > >>>> lpt0: [ITHREAD] > >>>> [...] > >>>> lines, then some dumping activity and a reboot. > >>>> I upgraded to 7.0 last week, so all I can say is: everything was > >>>> fine with 6.2 . > >>>> Please tell me if you need more information. > >>> > >>> Well yeah, how about e.g. the actual details from the panic? > >> > >> How do I get them? > >> Do I have to recompile my kernel (I put off debugging and Witness > >> Options)? > > > > Hello, > > > > Check > > http://www.freebsd.org/doc/en/books/developers-handbook/kerneldebug.ht > >ml for more information. > > > > Thanks > > > > -- > > Kind regards, > > > > Remko Lodder ** remko@elvandar.org > > Sorry, from developer's handbook I guess I should find a vmcore.N > file. There isn't any. My parallel printing attempts end up in > some kind of single user mode on the root terminal with a > db> > prompt. Can I do anything with that? You'll find it in /var/crash/ directory right after the panic Then go to cd /usr/obj/usr/src/sys/KERNCONF where KERNCONF is your kernel configuration name (should be GENERIC for=20 GENERIC kernel) Then execute: kgdb kernel.debug /var/crash/vmcore.0 And you'll get the debugger prompt. You can find more info here: http://www.freebsd.org/doc/en/books/developers-handbook/kerneldebug-gdb.html =2D-=20 =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D =20 =2D Best regards, Nikolay Pavlov. <<<----------------------------------- = =20 =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D =20 --nextPart3131174.8QhCsSs208 Content-Type: application/pgp-signature; name=signature.asc Content-Description: This is a digitally signed message part. -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.6 (GNU/Linux) iD8DBQBG9+9t/2R6KvEYGaIRAr6AAKCtSfLirL4qsL7IifcVFqJ67DBXnQCgpTJZ A9rLmNfpWjrYAxpGLlzrXCs= =IXoL -----END PGP SIGNATURE----- --nextPart3131174.8QhCsSs208--