From owner-freebsd-current Mon Mar 6 05:57:54 1995 Return-Path: current-owner Received: (from majordom@localhost) by freefall.cdrom.com (8.6.10/8.6.6) id FAA05689 for current-outgoing; Mon, 6 Mar 1995 05:57:54 -0800 Received: from sbstark.cs.sunysb.edu (sbstark.cs.sunysb.edu [130.245.1.47]) by freefall.cdrom.com (8.6.10/8.6.6) with ESMTP id FAA05683 for ; Mon, 6 Mar 1995 05:57:53 -0800 Received: from starkhome.UUCP (root@localhost) by sbstark.cs.sunysb.edu (8.6.9/8.6.9) with UUCP id IAA18639 for current@freebsd.org; Mon, 6 Mar 1995 08:57:46 -0500 Received: by starkhome.cs.sunysb.edu (8.6.10/1.34) id IAA03940; Mon, 6 Mar 1995 08:46:58 -0500 Date: Mon, 6 Mar 1995 08:46:58 -0500 From: starkhome!gene@sbstark.cs.sunysb.edu (Gene Stark) Message-Id: <199503061346.IAA03940@starkhome.cs.sunysb.edu> To: davidg@Root.COM CC: current@FreeBSD.org, dyson@Root.COM In-reply-to: David Greenman's message of Sun, 05 Mar 1995 18:45:07 -0800 <199503060245.SAA00283@corbin.Root.COM> Subject: Page fault panics during make world in -current Sender: current-owner@FreeBSD.org Precedence: bulk In vfs_bio.c, line 758: for (toff = 0; toff < vp->v_mount->mnt_stat.f_iosize; toff += tinc) { int mask; --> m = vm_page_lookup(obj, trunc_page(toff + off)); if (!m) return 0; if (vm_page_is_valid(m, toff + off, tinc) == 0) return 0; } The VM object obj is not locked, contrary to the comment preceding the definition of vm_page_lookup(). Potentially a problem? - Gene