From owner-freebsd-current@FreeBSD.ORG Sat Apr 10 15:17:31 2004 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 F40CB16A4CE for ; Sat, 10 Apr 2004 15:17:30 -0700 (PDT) Received: from ns1.interbgc.com (mail.interbgc.com [217.9.224.3]) by mx1.FreeBSD.org (Postfix) with SMTP id C0F6843D2D for ; Sat, 10 Apr 2004 15:17:29 -0700 (PDT) (envelope-from nike_d@cytexbg.com) Received: (qmail 36633 invoked from network); 10 Apr 2004 22:17:27 -0000 Received: from nike_d@cytexbg.com by keeper.interbgc.com by uid 1002 with qmail-scanner-1.14 (uvscan: v4.1.60/v4335. spamassassin: 2.63. Clear:SA:0(-4.9/8.0):. Processed in 2.702863 secs); 10 Apr 2004 22:17:27 -0000 X-Spam-Status: No, hits=-4.9 required=8.0 Received: from 213-240-206-214.ddns.cablebg.net (HELO tormentor.totalterror.net) (213.240.206.214) by mail.interbgc.com with SMTP; 10 Apr 2004 22:17:24 -0000 Received: (qmail 74525 invoked by uid 1006); 10 Apr 2004 22:19:47 -0000 Received: from nike_d@cytexbg.com by tormentor.cytexbg.com by uid 1003 with qmail-scanner-1.15 (sweep: 2.14/3.62. Clear:. Processed in 2.815382 secs); 10 Apr 2004 22:19:47 -0000 Received: from unknown (HELO phobos.totalterror.net) (10.0.0.6) by tormentor.totalterror.net with SMTP; 10 Apr 2004 22:19:43 -0000 References: <11273.1081622892@critter.freebsd.dk> Message-ID: X-Mailer: http://www.courier-mta.org/cone/ From: Niki Denev To: "Poul-Henning Kamp" Date: Sun, 11 Apr 2004 01:17:22 +0300 Mime-Version: 1.0 Content-Type: text/plain; format=flowed; charset="US-ASCII" Content-Disposition: inline Content-Transfer-Encoding: 7bit cc: current@freebsd.org cc: Putinas Piliponis Subject: Re: LOR: sys/kern/sys_generic.c:902 sys/fs/specfs/spec_vnops.c:387 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: Sat, 10 Apr 2004 22:17:31 -0000 Poul-Henning Kamp writes: > In message <1747.192.168.1.9.1081619654.squirrel@www.noacks.org>, "Jon Noack" w > rites: > > Can you try this workaround ? > > Index: spec_vnops.c > =================================================================== > RCS file: /home/ncvs/src/sys/fs/specfs/spec_vnops.c,v > retrieving revision 1.220 > diff -u -r1.220 spec_vnops.c > --- spec_vnops.c 7 Apr 2004 20:46:02 -0000 1.220 > +++ spec_vnops.c 10 Apr 2004 18:47:32 -0000 > @@ -382,9 +382,9 @@ > ("spec_poll() on un-referenced dev_t (%s)", devtoname(dev))); > cdevsw_ref(dsw); > if (!(dsw->d_flags & D_NEEDGIANT)) { > - DROP_GIANT(); > + /* XXX: not yet DROP_GIANT(); */ > error = dsw->d_poll(dev, ap->a_events, ap->a_td); > - PICKUP_GIANT(); > + /* XXX: not yet PICKUP_GIANT(); */ > } else > error = dsw->d_poll(dev, ap->a_events, ap->a_td); > cdevsw_rel(dsw); > > -- > Poul-Henning Kamp | UNIX since Zilog Zeus 3.20 > phk@FreeBSD.ORG | TCP/IP since RFC 956 > FreeBSD committer | BSD since 4.3-tahoe > Never attribute to malice what can adequately be explained by incompetence. > _______________________________________________ > freebsd-current@freebsd.org mailing list > http://lists.freebsd.org/mailman/listinfo/freebsd-current > To unsubscribe, send any mail to "freebsd-current-unsubscribe@freebsd.org" > > > I was getting the same message during boot, right after starting sshd, and after applying this patch, the LOR message goes away. --niki