From owner-freebsd-current Tue Jun 24 03:09:15 1997 Return-Path: Received: (from root@localhost) by hub.freebsd.org (8.8.5/8.8.5) id DAA06937 for current-outgoing; Tue, 24 Jun 1997 03:09:15 -0700 (PDT) Received: from godzilla.zeta.org.au (godzilla.zeta.org.au [203.2.228.19]) by hub.freebsd.org (8.8.5/8.8.5) with ESMTP id DAA06924; Tue, 24 Jun 1997 03:09:01 -0700 (PDT) Received: (from bde@localhost) by godzilla.zeta.org.au (8.8.5/8.6.9) id UAA15443; Tue, 24 Jun 1997 20:00:58 +1000 Date: Tue, 24 Jun 1997 20:00:58 +1000 From: Bruce Evans Message-Id: <199706241000.UAA15443@godzilla.zeta.org.au> To: current@FreeBSD.ORG, kato@migmatite.eps.nagoya-u.ac.jp Subject: Re: vm_bounce_alloc: Unmapped page Cc: dyson@FreeBSD.ORG Sender: owner-current@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk >It seems to be a cluster write related problem. I disabled cluster >write by: > >#ifdef UNION >int doclusterwrite = 0; >#else >int doclusterwrite = 1; >#endif It is easier to use the sysctl for this (vfs.ffs.doclusterwrite). This is new with Lite2. Only ffs supports this sysctl properly. ext2fs is the only other file system that supports clustered writes, and its doclusterwrite variable is hidden in an ifdef tangle. Bruce