Subject: NetBSD master CVS tree commits
To: None <source-changes@NetBSD.ORG>
From: The Source of All Evil <source@NetBSD.ORG>
List: source-changes
Date: 03/26/1998 13:50:02
chuck
Thu Mar 26 13:41:16 PST 1998
Update of /cvsroot/src/sys/vm
In directory nb00:/tmp/cvs-serv23946

Modified Files:
	vm_fault.c 
Log Message:
correctly count ru_majflt.   the fix pulled in from pr#1397 is incorrect.
calling vm_pager_get() doesn't count as a "majflt" unless the pager
returns VM_PAGER_OK.  when walking an object chain we can get VM_PAGER_FAIL
(indicating that the requested data does not reside in this object 
and we must continue to walk the chain) -- we don't want to count this
as a majflt.

i also added code to count ru_minflt.