svn commit: r358726 - head/sys/vm

Brooks Davis brooks at FreeBSD.org
Fri Mar 6 23:31:10 UTC 2020


Author: brooks
Date: Fri Mar  6 23:31:09 2020
New Revision: 358726
URL: https://svnweb.freebsd.org/changeset/base/358726

Log:
  Remove an apparently incorrect assertion.
  
  Without this change mips64 fails to boot.
  
  Discussed with:	markj
  Sponsored by:	DARPA

Modified:
  head/sys/vm/uma_core.c

Modified: head/sys/vm/uma_core.c
==============================================================================
--- head/sys/vm/uma_core.c	Fri Mar  6 23:01:49 2020	(r358725)
+++ head/sys/vm/uma_core.c	Fri Mar  6 23:31:09 2020	(r358726)
@@ -716,9 +716,6 @@ zone_put_bucket(uma_zone_t zone, int domain, uma_bucke
 		goto out;
 	zdom = zone_domain_lock(zone, domain);
 
-	KASSERT(!ws || zdom->uzd_nitems < zone->uz_bucket_max,
-	    ("%s: zone %p overflow", __func__, zone));
-
 	/*
 	 * Conditionally set the maximum number of items.
 	 */


More information about the svn-src-all mailing list