Skip site navigation (1)Skip section navigation (2)
Date:      Wed, 1 Dec 2010 05:52:27 +0000 (UTC)
From:      Alan Cox <alc@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org
Subject:   svn commit: r216094 - head/sys/ia64/include
Message-ID:  <201012010552.oB15qRVZ073551@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: alc
Date: Wed Dec  1 05:52:27 2010
New Revision: 216094
URL: http://svn.freebsd.org/changeset/base/216094

Log:
  phys_avail[] is correctly defined as an array of vm_paddr_t's in
  machdep.c.  Use that same type, and not vm_offset_t, in this include file.

Modified:
  head/sys/ia64/include/pmap.h

Modified: head/sys/ia64/include/pmap.h
==============================================================================
--- head/sys/ia64/include/pmap.h	Wed Dec  1 05:39:02 2010	(r216093)
+++ head/sys/ia64/include/pmap.h	Wed Dec  1 05:52:27 2010	(r216094)
@@ -112,7 +112,7 @@ typedef struct pv_entry {
 
 #ifdef	_KERNEL
 
-extern vm_offset_t phys_avail[];
+extern vm_paddr_t phys_avail[];
 extern vm_offset_t virtual_avail;
 extern vm_offset_t virtual_end;
 



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201012010552.oB15qRVZ073551>