From owner-cvs-sys Sat Mar 18 10:03:33 1995 Return-Path: cvs-sys-owner Received: (from majordom@localhost) by freefall.cdrom.com (8.6.10/8.6.6) id KAA13058 for cvs-sys-outgoing; Sat, 18 Mar 1995 10:03:33 -0800 Received: (from davidg@localhost) by freefall.cdrom.com (8.6.10/8.6.6) id KAA13040; Sat, 18 Mar 1995 10:03:30 -0800 Date: Sat, 18 Mar 1995 10:03:30 -0800 From: David Greenman Message-Id: <199503181803.KAA13040@freefall.cdrom.com> To: CVS-commiters, cvs-sys Subject: cvs commit: src/sys/ufs/ffs ffs_vfsops.c Sender: cvs-sys-owner@freebsd.org Precedence: bulk davidg 95/03/18 10:03:30 Modified: sys/ufs/ffs ffs_vfsops.c Log: Don't sync the inode date changes of character special devices during the FS sync. The system would appear to hang momentarily if there was a large backlog of I/O. This is because the vnode remains locked during the output - preventing normal character I/O. The problem was exacerbated by the FFS contiguous block allocation fixes and a semi-broken disksort(). The inode/date will still be synced during a normal FS dismount and whenever the inode is changed for other reasons.