svn commit: r216186 - head/sys/vm

Edward Tomasz Napierala trasz at FreeBSD.org
Sat Dec 4 17:41:58 UTC 2010


Author: trasz
Date: Sat Dec  4 17:41:58 2010
New Revision: 216186
URL: http://svn.freebsd.org/changeset/base/216186

Log:
  Fix comment intentation.

Modified:
  head/sys/vm/vm_mmap.c

Modified: head/sys/vm/vm_mmap.c
==============================================================================
--- head/sys/vm/vm_mmap.c	Sat Dec  4 14:19:35 2010	(r216185)
+++ head/sys/vm/vm_mmap.c	Sat Dec  4 17:41:58 2010	(r216186)
@@ -276,14 +276,14 @@ mmap(td, uap)
 		if (addr + size < addr)
 			return (EINVAL);
 	} else {
-	/*
-	 * XXX for non-fixed mappings where no hint is provided or
-	 * the hint would fall in the potential heap space,
-	 * place it after the end of the largest possible heap.
-	 *
-	 * There should really be a pmap call to determine a reasonable
-	 * location.
-	 */
+		/*
+		 * XXX for non-fixed mappings where no hint is provided or
+		 * the hint would fall in the potential heap space,
+		 * place it after the end of the largest possible heap.
+		 *
+		 * There should really be a pmap call to determine a reasonable
+		 * location.
+		 */
 		PROC_LOCK(td->td_proc);
 		if (addr == 0 ||
 		    (addr >= round_page((vm_offset_t)vms->vm_taddr) &&


More information about the svn-src-all mailing list