From owner-freebsd-hardware Sun Nov 17 05:51:33 1996 Return-Path: owner-hardware Received: (from root@localhost) by freefall.freebsd.org (8.7.5/8.7.3) id FAA19254 for hardware-outgoing; Sun, 17 Nov 1996 05:51:33 -0800 (PST) Received: from godzilla.zeta.org.au (godzilla.zeta.org.au [203.2.228.19]) by freefall.freebsd.org (8.7.5/8.7.3) with ESMTP id FAA19242 for ; Sun, 17 Nov 1996 05:51:25 -0800 (PST) Received: (from bde@localhost) by godzilla.zeta.org.au (8.7.6/8.6.9) id AAA19075; Mon, 18 Nov 1996 00:50:09 +1100 Date: Mon, 18 Nov 1996 00:50:09 +1100 From: Bruce Evans Message-Id: <199611171350.AAA19075@godzilla.zeta.org.au> To: bde@zeta.org.au, phk@critter.tfs.com Subject: Re: kernel optimization and PCI ... Cc: freebsd-hardware@freefall.freebsd.org, mango@staff.communique.net Sender: owner-hardware@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk >>It does? Where? ffs_statfs seems to just copy some data. df does a >>full sync for non-mounted file systems. > >Huh, sync of non-mounted file systems ? How could you possibly do that... Using sync(2) :-). It syncs everything (at least if you wait for an indeterminate time after it returns :-(). The sync is to get the superblock for the file system written out in case it is mounted via an alias or being written without being mounted. Bruce