svn commit: r211991 - head/sys/mips/include

Jayachandran C. jchandra at FreeBSD.org
Mon Aug 30 08:23:23 UTC 2010


Author: jchandra
Date: Mon Aug 30 08:23:22 2010
New Revision: 211991
URL: http://svn.freebsd.org/changeset/base/211991

Log:
  Remove misleading comment in pte.h. MIPS PTE entries are software managed
  and does not need atomics.
  
  Submitted by:	alc

Modified:
  head/sys/mips/include/pte.h

Modified: head/sys/mips/include/pte.h
==============================================================================
--- head/sys/mips/include/pte.h	Mon Aug 30 07:29:27 2010	(r211990)
+++ head/sys/mips/include/pte.h	Mon Aug 30 08:23:22 2010	(r211991)
@@ -130,9 +130,6 @@ typedef	pt_entry_t *pd_entry_t;
 
 /*
  * PTE management functions for bits defined above.
- *
- * XXX Can make these atomics, but some users of them are using PTEs in local
- * registers and such and don't need the overhead.
  */
 #define	pte_clear(pte, bit)	(*(pte) &= ~(bit))
 #define	pte_set(pte, bit)	(*(pte) |= (bit))


More information about the svn-src-all mailing list