svn commit: r214664 - in stable/8/sys/dev: ahci siis

Alexander Motin mav at FreeBSD.org
Tue Nov 2 09:01:08 UTC 2010


Author: mav
Date: Tue Nov  2 09:01:08 2010
New Revision: 214664
URL: http://svn.freebsd.org/changeset/base/214664

Log:
  MFC r214325:
  Add missing mtx_destroy() on channel attach failure.

Modified:
  stable/8/sys/dev/ahci/ahci.c
  stable/8/sys/dev/siis/siis.c
Directory Properties:
  stable/8/sys/   (props changed)
  stable/8/sys/amd64/include/xen/   (props changed)
  stable/8/sys/cddl/contrib/opensolaris/   (props changed)
  stable/8/sys/contrib/dev/acpica/   (props changed)
  stable/8/sys/contrib/pf/   (props changed)
  stable/8/sys/dev/xen/xenpci/   (props changed)

Modified: stable/8/sys/dev/ahci/ahci.c
==============================================================================
--- stable/8/sys/dev/ahci/ahci.c	Tue Nov  2 08:08:37 2010	(r214663)
+++ stable/8/sys/dev/ahci/ahci.c	Tue Nov  2 09:01:08 2010	(r214664)
@@ -963,6 +963,7 @@ err1:
 err0:
 	bus_release_resource(dev, SYS_RES_MEMORY, ch->unit, ch->r_mem);
 	mtx_unlock(&ch->mtx);
+	mtx_destroy(&ch->mtx);
 	return (error);
 }
 

Modified: stable/8/sys/dev/siis/siis.c
==============================================================================
--- stable/8/sys/dev/siis/siis.c	Tue Nov  2 08:08:37 2010	(r214663)
+++ stable/8/sys/dev/siis/siis.c	Tue Nov  2 09:01:08 2010	(r214664)
@@ -527,6 +527,7 @@ err1:
 err0:
 	bus_release_resource(dev, SYS_RES_MEMORY, ch->unit, ch->r_mem);
 	mtx_unlock(&ch->mtx);
+	mtx_destroy(&ch->mtx);
 	return (error);
 }
 


More information about the svn-src-all mailing list