From owner-cvs-all Wed Sep 9 06:09:27 1998 Return-Path: Received: (from daemon@localhost) by hub.freebsd.org (8.8.8/8.8.8) id GAA09048 for cvs-all-outgoing; Wed, 9 Sep 1998 06:09:27 -0700 (PDT) (envelope-from owner-cvs-all) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id GAA09043; Wed, 9 Sep 1998 06:09:26 -0700 (PDT) (envelope-from bde@FreeBSD.org) From: Bruce Evans Received: (from bde@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id GAA23418; Wed, 9 Sep 1998 06:09:24 -0700 (PDT) Date: Wed, 9 Sep 1998 06:09:24 -0700 (PDT) Message-Id: <199809091309.GAA23418@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: src/sys/gnu/ext2fs ext2_vfsops.c Sender: owner-cvs-all@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk bde 1998/09/09 06:09:24 PDT Modified files: sys/gnu/ext2fs ext2_vfsops.c Log: Don't forget to initialize the inode lock. This bug caused surprisingly few problems. Most fields were initialized to the correct values by bzero(), but lk_prio was 0 instead of PINOD (=8), the lk_wmsg was NULL instead of "ext2in", and lk_lockholder was 0 instead of -1. Obtained from: Lite2 via the -current ffs_vfsops.c Revision Changes Path 1.36 +1 -0 src/sys/gnu/ext2fs/ext2_vfsops.c