From owner-freebsd-current@FreeBSD.ORG Thu Apr 5 11:18:04 2007 Return-Path: X-Original-To: current@freebsd.org Delivered-To: freebsd-current@FreeBSD.ORG Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 2564016A401 for ; Thu, 5 Apr 2007 11:18:04 +0000 (UTC) (envelope-from rdivacky@vlk.vlakno.cz) Received: from vlakno.cz (vlk.vlakno.cz [62.168.28.247]) by mx1.freebsd.org (Postfix) with ESMTP id D66A213C455 for ; Thu, 5 Apr 2007 11:18:03 +0000 (UTC) (envelope-from rdivacky@vlk.vlakno.cz) Received: from localhost (localhost [127.0.0.1]) by vlakno.cz (Postfix) with ESMTP id 8403C8BCEF7 for ; Thu, 5 Apr 2007 12:52:38 +0200 (CEST) X-Virus-Scanned: amavisd-new at vlakno.cz Received: from vlakno.cz ([127.0.0.1]) by localhost (vlk.vlakno.cz [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id dwNtnOWBwPIg for ; Thu, 5 Apr 2007 12:52:37 +0200 (CEST) Received: from vlk.vlakno.cz (localhost [127.0.0.1]) by vlakno.cz (Postfix) with ESMTP id 9666A8BCEEC for ; Thu, 5 Apr 2007 12:52:37 +0200 (CEST) Received: (from rdivacky@localhost) by vlk.vlakno.cz (8.13.8/8.13.8/Submit) id l35Aqb5C009961 for current@freebsd.org; Thu, 5 Apr 2007 12:52:37 +0200 (CEST) (envelope-from rdivacky) Date: Thu, 5 Apr 2007 12:52:37 +0200 From: Roman Divacky To: current@freebsd.org Message-ID: <20070405105237.GA9755@freebsd.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.4.2.2i Cc: Subject: 100% reproducible panic with pseudofs 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: Thu, 05 Apr 2007 11:18:04 -0000 hi with -current as of 2nd April I can reliable panic the system in pseudofs with the following command sequence: mount /proc cat /proc/123/status umount /proc kldunload procfs the same panic is here with linprocfs so I think its pseudofs related. I cannot get the backtrace so I had to rewrite it by hand: kern_kldunload(); linker_file_unload(); module_unload(); vfs_modevent(); _procfs_uninit(); pfs_uninit(); delete_unrhdr() PANIC; it panics on KASSERT(uh->busy == 0, ("unrhdr has %u allocations", uh->busy)); so to reproduce this panic you have to have INVARIANTS enabled kernel... thnx roman