Module Name: src
Committed By: matt
Date: Tue Aug 11 16:07:24 UTC 2009
Modified Files:
src/sys/uvm: uvm_page.c
Log Message:
Add back declaration of physmem but use the existing type (long).
To generate a diff of this commit:
cvs rdiff -u -r1.147 -r1.148 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.147 src/sys/uvm/uvm_page.c:1.148
--- src/sys/uvm/uvm_page.c:1.147 Tue Aug 11 09:16:53 2009
+++ src/sys/uvm/uvm_page.c Tue Aug 11 16:07:24 2009
@@ -1,4 +1,4 @@
-/* $NetBSD: uvm_page.c,v 1.147 2009/08/11 09:16:53 haad Exp $ */
+/* $NetBSD: uvm_page.c,v 1.148 2009/08/11 16:07:24 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.147 2009/08/11 09:16:53 haad Exp $");
+__KERNEL_RCSID(0, "$NetBSD: uvm_page.c,v 1.148 2009/08/11 16:07:24 matt Exp $");
#include "opt_uvmhist.h"
#include "opt_readahead.h"
@@ -117,6 +117,11 @@
int vm_page_reserve_kernel = 5;
/*
+ * physical memory size;
+ */
+long physmem;
+
+/*
* local variables
*/