Module Name:    src
Committed By:   matt
Date:           Fri Nov  4 15:32:27 UTC 2011

Modified Files:
        src/sys/uvm [matt-nb5-mips64]: uvm_pglist.h

Log Message:
#include <machine/vmparam.h> if VM_NFREELIST isn't defined.


To generate a diff of this commit:
cvs rdiff -u -r1.7.16.2 -r1.7.16.3 src/sys/uvm/uvm_pglist.h

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_pglist.h
diff -u src/sys/uvm/uvm_pglist.h:1.7.16.2 src/sys/uvm/uvm_pglist.h:1.7.16.3
--- src/sys/uvm/uvm_pglist.h:1.7.16.2	Fri Jun  3 07:56:08 2011
+++ src/sys/uvm/uvm_pglist.h	Fri Nov  4 15:32:27 2011
@@ -1,4 +1,4 @@
-/*	$NetBSD: uvm_pglist.h,v 1.7.16.2 2011/06/03 07:56:08 matt Exp $	*/
+/*	$NetBSD: uvm_pglist.h,v 1.7.16.3 2011/11/04 15:32:27 matt Exp $	*/
 
 /*-
  * Copyright (c) 2000, 2001, 2008 The NetBSD Foundation, Inc.
@@ -32,6 +32,10 @@
 #ifndef _UVM_UVM_PGLIST_H_
 #define _UVM_UVM_PGLIST_H_
 
+#ifndef VM_NFREELIST
+#include <machine/vmparam.h>
+#endif
+
 /*
  * This defines the type of a page queue, e.g. active list, inactive
  * list, etc.

Reply via email to