Skip site navigation (1)Skip section navigation (2)
Date:      Tue, 03 Sep 2019 14:06:43 -0000
From:      Konstantin Belousov <kib@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org
Subject:   svn commit: r345954 - head/sys/vm
Message-ID:  <201904051612.x35GCZ9n085349@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: kib
Date: Fri Apr  5 16:12:35 2019
New Revision: 345954
URL: https://svnweb.freebsd.org/changeset/base/345954

Log:
  Fix mis-merge.
  
  Amusingly, it is nop.
  
  Noted by:	trasz
  Sponsored by:	The FreeBSD Foundation
  MFC after:	1 week
  X-MFC-rev:	r345702

Modified:
  head/sys/vm/vm_map.c

Modified: head/sys/vm/vm_map.c
==============================================================================
--- head/sys/vm/vm_map.c	Fri Apr  5 16:12:31 2019	(r345953)
+++ head/sys/vm/vm_map.c	Fri Apr  5 16:12:35 2019	(r345954)
@@ -1835,7 +1835,7 @@ again:
 			*addr = vm_map_findspace(map, curr_min_addr,
 			    length + gap * pagesizes[pidx]);
 			if (*addr + length + gap * pagesizes[pidx] >
-+			    vm_map_max(map))
+			    vm_map_max(map))
 				goto again;
 			/* And randomize the start address. */
 			*addr += (arc4random() % gap) * pagesizes[pidx];





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