Skip site navigation (1)Skip section navigation (2)
Date:      Fri, 15 Jun 2012 21:48:17 +0000 (UTC)
From:      Alan Cox <alc@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-user@freebsd.org
Subject:   svn commit: r237147 - user/alc/superpages/sys/amd64/include
Message-ID:  <201206152148.q5FLmHbF005453@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: alc
Date: Fri Jun 15 21:48:17 2012
New Revision: 237147
URL: http://svn.freebsd.org/changeset/base/237147

Log:
  Write mappings will never be negative.
  
  Submitted by:	kib

Modified:
  user/alc/superpages/sys/amd64/include/pmap.h

Modified: user/alc/superpages/sys/amd64/include/pmap.h
==============================================================================
--- user/alc/superpages/sys/amd64/include/pmap.h	Fri Jun 15 21:45:24 2012	(r237146)
+++ user/alc/superpages/sys/amd64/include/pmap.h	Fri Jun 15 21:48:17 2012	(r237147)
@@ -241,7 +241,7 @@ struct	pv_chunk;
 
 struct md_page {
 	TAILQ_HEAD(,pv_entry)	pv_list;
-	int			write_mappings;
+	u_int			write_mappings;
 	int			pat_mode;
 };
 



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