Deleted Added
full compact
29c29
< __FBSDID("$FreeBSD: head/sys/kern/kern_mbuf.c 151976 2005-11-02 16:20:36Z andre $");
---
> __FBSDID("$FreeBSD: head/sys/kern/kern_mbuf.c 152035 2005-11-04 17:20:53Z andre $");
398d397
< u_int *refcnt;
400,402c399,401
< refcnt = uma_find_refcnt(zone_clust, mem);
< KASSERT(*refcnt == 1, ("%s: refcnt incorrect %u", __func__, *refcnt));
< *refcnt = 0;
---
> KASSERT(*(uma_find_refcnt(zone_clust, mem)) <= 1,
> ("%s: refcnt incorrect %u", __func__,
> *(uma_find_refcnt(zone_clust, mem))) );