Skip site navigation (1)Skip section navigation (2)
Date:      Mon, 30 Aug 2010 08:23:22 +0000 (UTC)
From:      "Jayachandran C." <jchandra@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org
Subject:   svn commit: r211991 - head/sys/mips/include
Message-ID:  <201008300823.o7U8NMLl088638@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
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))



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