svn commit: r333992 - head/sys/amd64/amd64

Konstantin Belousov kib at FreeBSD.org
Mon May 21 19:15:06 UTC 2018


Author: kib
Date: Mon May 21 19:15:05 2018
New Revision: 333992
URL: https://svnweb.freebsd.org/changeset/base/333992

Log:
  Fix grammar.
  
  Submitted by:	alc
  MFC after:	1 week

Modified:
  head/sys/amd64/amd64/pmap.c

Modified: head/sys/amd64/amd64/pmap.c
==============================================================================
--- head/sys/amd64/amd64/pmap.c	Mon May 21 18:59:34 2018	(r333991)
+++ head/sys/amd64/amd64/pmap.c	Mon May 21 19:15:05 2018	(r333992)
@@ -1804,7 +1804,7 @@ pmap_invalidate_range(pmap_t pmap, vm_offset_t sva, vm
 				if (cpuid != i)
 					pmap->pm_pcids[i].pm_gen = 0;
 			}
-			/* See comment int pmap_invalidate_page(). */
+			/* See the comment in pmap_invalidate_page(). */
 			atomic_thread_fence_seq_cst();
 		}
 		mask = &pmap->pm_active;
@@ -1877,7 +1877,7 @@ pmap_invalidate_all(pmap_t pmap)
 				if (cpuid != i)
 					pmap->pm_pcids[i].pm_gen = 0;
 			}
-			/* See comment int pmap_invalidate_page(). */
+			/* See the comment in pmap_invalidate_page(). */
 			atomic_thread_fence_seq_cst();
 		}
 		mask = &pmap->pm_active;


More information about the svn-src-all mailing list