From owner-cvs-sys Sat Apr 12 23:29:18 1997 Return-Path: Received: (from root@localhost) by freefall.freebsd.org (8.8.5/8.8.5) id XAA19464 for cvs-sys-outgoing; Sat, 12 Apr 1997 23:29:18 -0700 (PDT) Received: (from phk@localhost) by freefall.freebsd.org (8.8.5/8.8.5) id XAA19456; Sat, 12 Apr 1997 23:29:16 -0700 (PDT) Date: Sat, 12 Apr 1997 23:29:16 -0700 (PDT) From: Poul-Henning Kamp Message-Id: <199704130629.XAA19456@freefall.freebsd.org> To: CVS-committers, cvs-all, cvs-sys Subject: cvs commit: src/sys/miscfs/union union_vnops.c Sender: owner-cvs-sys@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk phk 97/04/12 23:29:15 Modified: sys/miscfs/union union_vnops.c Log: The function union_fsync tries to lock overlaying vnode object when dolock is not set (that is, targetvp == overlaying vnode object). Current code use FIXUP macro to do this, and never unlocks overlaying vnode object in union_fsync. So, the vnode object will be locked twice and never unlocked. PR: 3271 Submitted by: kato Revision Changes Path 1.21 +14 -3 src/sys/miscfs/union/union_vnops.c