Module Name:    src
Committed By:   cegger
Date:           Thu Apr 23 06:22:01 UTC 2009

Modified Files:
        src/sys/uvm: uvm_pmap.h

Log Message:
use top-most bits for PMAP_MD_MASK instead something in the middle.
per request from christos@


To generate a diff of this commit:
cvs rdiff -u -r1.27 -r1.28 src/sys/uvm/uvm_pmap.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_pmap.h
diff -u src/sys/uvm/uvm_pmap.h:1.27 src/sys/uvm/uvm_pmap.h:1.28
--- src/sys/uvm/uvm_pmap.h:1.27	Tue Apr 21 21:30:01 2009
+++ src/sys/uvm/uvm_pmap.h	Thu Apr 23 06:22:00 2009
@@ -1,4 +1,4 @@
-/*	$NetBSD: uvm_pmap.h,v 1.27 2009/04/21 21:30:01 cegger Exp $	*/
+/*	$NetBSD: uvm_pmap.h,v 1.28 2009/04/23 06:22:00 cegger Exp $	*/
 
 /*
  * Copyright (c) 1991, 1993
@@ -100,7 +100,7 @@
 #define	PMAP_WIRED	0x00000010	/* wired mapping */
 #define	PMAP_CANFAIL	0x00000020	/* can fail if resource shortage */
 
-#define	PMAP_MD_MASK	0x0000ff00	/* Machine-dependent bits */
+#define	PMAP_MD_MASK	0xff000000	/* Machine-dependent bits */
 
 /*
  * Flags passed to pmap_kenter_pa().  Note the bottom 3 bits are VM_PROT_*

Reply via email to