svn commit: r208278 - head/sys/powerpc/include

Rafal Jaworowski raj at FreeBSD.org
Tue May 18 21:23:52 UTC 2010


Author: raj
Date: Tue May 18 21:23:51 2010
New Revision: 208278
URL: http://svn.freebsd.org/changeset/base/208278

Log:
  Provide missing members for Book-E pmap (and fix build).

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

Modified: head/sys/powerpc/include/pmap.h
==============================================================================
--- head/sys/powerpc/include/pmap.h	Tue May 18 21:01:42 2010	(r208277)
+++ head/sys/powerpc/include/pmap.h	Tue May 18 21:23:51 2010	(r208278)
@@ -125,6 +125,8 @@ struct pmap {
 	struct mtx		pm_mtx;		/* pmap mutex */
 	tlbtid_t		pm_tid[MAXCPU];	/* TID to identify this pmap entries in TLB */
 	u_int			pm_active;	/* active on cpus */
+	uint32_t		pm_gen_count;	/* generation count (pmap lock dropped) */
+	u_int			pm_retries;
 	int			pm_refs;	/* ref count */
 	struct pmap_statistics	pm_stats;	/* pmap statistics */
 


More information about the svn-src-head mailing list