Module Name:    src
Committed By:   matt
Date:           Tue Aug 11 16:27:08 UTC 2009

Modified Files:
        src/sys/uvm: uvm_page.c

Log Message:
Fix brain fart.  physmem was int not long.


To generate a diff of this commit:
cvs rdiff -u -r1.148 -r1.149 src/sys/uvm/uvm_page.c

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: src/sys/uvm/uvm_page.c
diff -u src/sys/uvm/uvm_page.c:1.148 src/sys/uvm/uvm_page.c:1.149
--- src/sys/uvm/uvm_page.c:1.148	Tue Aug 11 16:07:24 2009
+++ src/sys/uvm/uvm_page.c	Tue Aug 11 16:27:08 2009
@@ -1,4 +1,4 @@
-/*	$NetBSD: uvm_page.c,v 1.148 2009/08/11 16:07:24 matt Exp $	*/
+/*	$NetBSD: uvm_page.c,v 1.149 2009/08/11 16:27:08 matt Exp $	*/
 
 /*
  * Copyright (c) 1997 Charles D. Cranor and Washington University.
@@ -71,7 +71,7 @@
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: uvm_page.c,v 1.148 2009/08/11 16:07:24 matt Exp $");
+__KERNEL_RCSID(0, "$NetBSD: uvm_page.c,v 1.149 2009/08/11 16:27:08 matt Exp $");
 
 #include "opt_uvmhist.h"
 #include "opt_readahead.h"
@@ -119,7 +119,7 @@
 /*
  * physical memory size;
  */
-long physmem;
+int physmem;
 
 /*
  * local variables

Reply via email to