diff options
author | Martin Reindl <martin@cvs.openbsd.org> | 2005-11-03 21:27:34 +0000 |
---|---|---|
committer | Martin Reindl <martin@cvs.openbsd.org> | 2005-11-03 21:27:34 +0000 |
commit | f32f3418f3ffed703d8bc5b3dee21c7eaf29b4ec (patch) | |
tree | e42c57355d5952873fda575e1c054cbb72a1d10d | |
parent | df7885769546e0e9024637f5358d56f4af99816b (diff) |
fix comment
ok miod@
-rw-r--r-- | sys/arch/m88k/m88k/pmap.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/arch/m88k/m88k/pmap.c b/sys/arch/m88k/m88k/pmap.c index 91d4229ca44..576bdcbd2ce 100644 --- a/sys/arch/m88k/m88k/pmap.c +++ b/sys/arch/m88k/m88k/pmap.c @@ -1,4 +1,4 @@ -/* $OpenBSD: pmap.c,v 1.14 2005/10/13 19:48:33 miod Exp $ */ +/* $OpenBSD: pmap.c,v 1.15 2005/11/03 21:27:33 martin Exp $ */ /* * Copyright (c) 2001-2004, Miodrag Vallat * Copyright (c) 1998-2001 Steve Murphree, Jr. @@ -1194,7 +1194,7 @@ pmap_remove_range(pmap_t pmap, vaddr_t s, vaddr_t e) #endif /* - * Loop through the range in vm_page_size increments. + * Loop through the range in PAGE_SIZE increments. */ for (va = s; va < e; va += PAGE_SIZE) { sdt_entry_t *sdt; @@ -1404,7 +1404,7 @@ pmap_protect(pmap_t pmap, vaddr_t s, vaddr_t e, vm_prot_t prot) kflush = pmap == kernel_pmap; /* - * Loop through the range in vm_page_size increments. + * Loop through the range in PAGE_SIZE increments. */ for (va = s; va < e; va += PAGE_SIZE) { sdt_entry_t *sdt; |