From owner-cvs-sys Mon Feb 24 08:44:16 1997 Return-Path: Received: (from root@localhost) by freefall.freebsd.org (8.8.5/8.8.5) id IAA28297 for cvs-sys-outgoing; Mon, 24 Feb 1997 08:44:16 -0800 (PST) Received: (from bde@localhost) by freefall.freebsd.org (8.8.5/8.8.5) id IAA28290; Mon, 24 Feb 1997 08:44:13 -0800 (PST) Date: Mon, 24 Feb 1997 08:44:13 -0800 (PST) From: Bruce Evans Message-Id: <199702241644.IAA28290@freefall.freebsd.org> To: CVS-committers, cvs-all, cvs-sys Subject: cvs commit: src/sys/miscfs/procfs procfs_vnops.c Sender: owner-cvs-sys@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk bde 97/02/24 08:44:13 Modified: sys/miscfs/procfs procfs_vnops.c Log: Fixed procfs's locking vops. They were missed in the Lite2 merge, partly because the #define's for them were moved to a different file. At least the null VOP_LOCK() no longer works, since vclean() expects VOP_LOCK( ..., LK_DRAIN | LK_INTERLOCK, ...) to clear the interlock. This probably only matters when simple_lock() is not null, i.e., when there are multiple CPUs or SIMPLELOCK_DEBUG is defined. Revision Changes Path 1.29 +5 -5 src/sys/miscfs/procfs/procfs_vnops.c