From owner-cvs-src@FreeBSD.ORG Sun Oct 9 19:23:44 2005 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 87E5816A41F; Sun, 9 Oct 2005 19:23:44 +0000 (GMT) (envelope-from scottl@samsco.org) Received: from pooker.samsco.org (pooker.samsco.org [168.103.85.57]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6F23443D48; Sun, 9 Oct 2005 19:23:43 +0000 (GMT) (envelope-from scottl@samsco.org) Received: from [192.168.254.11] (junior.samsco.home [192.168.254.11]) (authenticated bits=0) by pooker.samsco.org (8.13.4/8.13.4) with ESMTP id j99JNe2c037757; Sun, 9 Oct 2005 13:23:41 -0600 (MDT) (envelope-from scottl@samsco.org) Message-ID: <43496E43.1010502@samsco.org> Date: Sun, 09 Oct 2005 13:23:47 -0600 From: Scott Long User-Agent: Mozilla/5.0 (X11; U; FreeBSD i386; en-US; rv:1.7.8) Gecko/20050615 X-Accept-Language: en-us, en MIME-Version: 1.0 To: Tor Egge References: <200510091906.j99J6YbU022875@repoman.freebsd.org> In-Reply-To: <200510091906.j99J6YbU022875@repoman.freebsd.org> Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit X-Spam-Status: No, score=-1.4 required=3.8 tests=ALL_TRUSTED autolearn=failed version=3.1.0 X-Spam-Checker-Version: SpamAssassin 3.1.0 (2005-09-13) on pooker.samsco.org Cc: cvs-src@FreeBSD.org, src-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/ufs/ffs ffs_alloc.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 09 Oct 2005 19:23:44 -0000 Tor Egge wrote: > tegge 2005-10-09 19:06:34 UTC > > FreeBSD src repository > > Modified files: > sys/ufs/ffs ffs_alloc.c > Log: > Reinitialize v_type and v_op fields in case vnode has been reused without > reclamation. If the vnode previously was a fifo then v_op would point to > ffs_fifoops[12] instead of the expected ffs_vnodeops[12], causing a panic at > the end of ffsext_strategy. > > Revision Changes Path > 1.136 +5 -0 src/sys/ufs/ffs/ffs_alloc.c Awesome. I supposed that this refers to Problem #167 from Peter Holm? Scott