Author: mav
Date: Mon Mar 21 00:04:53 2016
New Revision: 297104
URL: https://svnweb.freebsd.org/changeset/base/297104

Log:
  MFC r294820: MFV r294819: 6495 Fix mutex leak in dmu_objset_find_dp
  
  Reviewed by: George Wilson <george.wil...@delphix.com>
  Reviewed by: Matthew Ahrens <mahr...@delphix.com>
  Approved by: Albert Lee <tr...@omniti.com>
  Author: Steven Hartland <steven.hartl...@multiplay.co.uk>
  
  illumos/illumos-gate@2bad22584defe4667f99737e3158d336e4dcca11

Modified:
  stable/10/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/dmu_objset.c
Directory Properties:
  stable/10/   (props changed)

Modified: stable/10/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/dmu_objset.c
==============================================================================
--- stable/10/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/dmu_objset.c       
Mon Mar 21 00:03:55 2016        (r297103)
+++ stable/10/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/dmu_objset.c       
Mon Mar 21 00:04:53 2016        (r297104)
@@ -1789,6 +1789,7 @@ dmu_objset_find_dp(dsl_pool_t *dp, uint6
                 * thread suffices. For now, stay single threaded.
                 */
                dmu_objset_find_dp_impl(dcp);
+               mutex_destroy(&err_lock);
 
                return (error);
        }
@@ -1800,6 +1801,8 @@ dmu_objset_find_dp(dsl_pool_t *dp, uint6
            INT_MAX, 0);
        if (tq == NULL) {
                kmem_free(dcp, sizeof (*dcp));
+               mutex_destroy(&err_lock);
+
                return (SET_ERROR(ENOMEM));
        }
        dcp->dc_tq = tq;
_______________________________________________
svn-src-all@freebsd.org mailing list
https://lists.freebsd.org/mailman/listinfo/svn-src-all
To unsubscribe, send any mail to "svn-src-all-unsubscr...@freebsd.org"

Reply via email to