From owner-cvs-sys Thu Mar 28 22:39:45 1996 Return-Path: owner-cvs-sys Received: (from root@localhost) by freefall.freebsd.org (8.7.3/8.7.3) id WAA19382 for cvs-sys-outgoing; Thu, 28 Mar 1996 22:39:45 -0800 (PST) Received: (from davidg@localhost) by freefall.freebsd.org (8.7.3/8.7.3) id WAA19366 Thu, 28 Mar 1996 22:39:41 -0800 (PST) Date: Thu, 28 Mar 1996 22:39:41 -0800 (PST) From: David Greenman Message-Id: <199603290639.WAA19366@freefall.freebsd.org> To: CVS-committers, cvs-all, cvs-sys Subject: cvs commit: src/sys/sys vnode.h Sender: owner-cvs-sys@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk davidg 96/03/28 22:39:40 Modified: sys/sys vnode.h Log: Change v_usecount & v_writecount from a short to an int. As shorts they can and will overflow on large machines - especially on machines with filesystems with lots of files (like netnews servers), and the result is a "free vnode isn't" panic or worse. This fixes one of the causes of these panics that I've been experiancing on wcarchive. Revision Changes Path 1.32 +4 -4 src/sys/sys/vnode.h