svn commit: r267899 - stable/10/sys/vm

Konstantin Belousov kib at FreeBSD.org
Thu Jun 26 08:24:19 UTC 2014


Author: kib
Date: Thu Jun 26 08:24:18 2014
New Revision: 267899
URL: http://svnweb.freebsd.org/changeset/base/267899

Log:
  MFC r267766:
  Use correct names for the flags.

Modified:
  stable/10/sys/vm/vm_map.c
Directory Properties:
  stable/10/   (props changed)

Modified: stable/10/sys/vm/vm_map.c
==============================================================================
--- stable/10/sys/vm/vm_map.c	Thu Jun 26 07:06:43 2014	(r267898)
+++ stable/10/sys/vm/vm_map.c	Thu Jun 26 08:24:18 2014	(r267899)
@@ -1210,7 +1210,7 @@ charged:
 	}
 	else if ((prev_entry != &map->header) &&
 		 (prev_entry->eflags == protoeflags) &&
-		 (cow & (MAP_ENTRY_GROWS_DOWN | MAP_ENTRY_GROWS_UP)) == 0 &&
+		 (cow & (MAP_STACK_GROWS_DOWN | MAP_STACK_GROWS_UP)) == 0 &&
 		 (prev_entry->end == start) &&
 		 (prev_entry->wired_count == 0) &&
 		 (prev_entry->cred == cred ||


More information about the svn-src-stable mailing list