svn commit: r242254 - head/sys/netinet

Gleb Smirnoff glebius at FreeBSD.org
Sun Oct 28 20:07:03 UTC 2012


On Sun, Oct 28, 2012 at 06:07:34PM +0000, Andre Oppermann wrote:
A> @@ -296,8 +297,8 @@ syncache_destroy(void)
A>  		mtx_destroy(&sch->sch_mtx);
A>  	}
A>  
A> -	KASSERT(V_tcp_syncache.cache_count == 0, ("%s: cache_count %d not 0",
A> -	    __func__, V_tcp_syncache.cache_count));
A> +	KASSERT(uma_zone_get_cur(V_tcp_syncache.zone) == 0,
A> +	    ("%s: cache_count not 0", __func__));
A>  
A>  	/* Free the allocated global resources. */
A>  	uma_zdestroy(V_tcp_syncache.zone);

btw, keg_dtor() which is called in uma_zdestroy() printfs a warning
(even on non-invariant kernel) if keg had items in it. So leak won't
be unnoticed.


-- 
Totus tuus, Glebius.


More information about the svn-src-all mailing list