svn commit: r214207 - in stable/7: share/man/man9 sys/vm

Matthew D Fleming mdf at FreeBSD.org
Fri Oct 22 16:00:46 UTC 2010


Author: mdf
Date: Fri Oct 22 16:00:45 2010
New Revision: 214207
URL: http://svn.freebsd.org/changeset/base/214207

Log:
  MFC r214062:
  
  uma_zfree(zone, NULL) should do nothing, to match free(9).
  
  Noticed by:	Ron Steinke <rsteinke at isilon dot com>

Modified:
  stable/7/share/man/man9/zone.9
  stable/7/sys/vm/uma_core.c
Directory Properties:
  stable/7/share/man/man9/   (props changed)
  stable/7/sys/   (props changed)
  stable/7/sys/cddl/contrib/opensolaris/   (props changed)
  stable/7/sys/contrib/dev/acpica/   (props changed)
  stable/7/sys/contrib/pf/   (props changed)

Modified: stable/7/share/man/man9/zone.9
==============================================================================
--- stable/7/share/man/man9/zone.9	Fri Oct 22 16:00:00 2010	(r214206)
+++ stable/7/share/man/man9/zone.9	Fri Oct 22 16:00:45 2010	(r214207)
@@ -147,6 +147,13 @@ Items are released back to the zone from
 calling
 .Fn uma_zfree
 with a pointer to the zone and a pointer to the item.
+If
+.Fa item
+is
+.Dv NULL ,
+then
+.Fn uma_zfree
+does nothing.
 .Pp
 The variations
 .Fn uma_zalloc_arg

Modified: stable/7/sys/vm/uma_core.c
==============================================================================
--- stable/7/sys/vm/uma_core.c	Fri Oct 22 16:00:00 2010	(r214206)
+++ stable/7/sys/vm/uma_core.c	Fri Oct 22 16:00:45 2010	(r214207)
@@ -2250,6 +2250,10 @@ uma_zfree_arg(uma_zone_t zone, void *ite
 	CTR2(KTR_UMA, "uma_zfree_arg thread %x zone %s", curthread,
 	    zone->uz_name);
 
+        /* uma_zfree(..., NULL) does nothing, to match free(9). */
+        if (item == NULL)
+                return;
+
 	if (zone->uz_dtor)
 		zone->uz_dtor(item, keg->uk_size, udata);
 #ifdef INVARIANTS


More information about the svn-src-stable-7 mailing list