svn commit: r323793 - head/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/sys

Andriy Gapon avg at FreeBSD.org
Wed Sep 20 07:26:54 UTC 2017


Author: avg
Date: Wed Sep 20 07:26:52 2017
New Revision: 323793
URL: https://svnweb.freebsd.org/changeset/base/323793

Log:
  MFV r323792: 8602 remove unused "dp_early_sync_tasks" field from "dsl_pool" structure
  
  illumos/illumos-gate at 2bcb5458541cc6e8bf7dc541303da29297b82e8b
  https://github.com/illumos/illumos-gate/commit/2bcb5458541cc6e8bf7dc541303da29297b82e8b
  
  https://www.illumos.org/issues/8602
    When I landed the fix for 8558, I incorrectly added the "dp_early_sync_tasks"
    field to the "dsl_pool" structure. This field is used in DelphixOS, but not in
    illumos. It was incorrectly pulled into illumos, so this bug is to remove it
    from the structure.
  
  Reviewed by: Serapheim Dimitropoulos <serapheim at delphix.com>
  Reviewed by: Matthew Ahrens <mahrens at delphix.com>
  Approved by: Robert Mustacchi <rm at joyent.com>
  Author: Prakash Surya <prakash.surya at delphix.com>
  
  MFC after:	1 week

Modified:
  head/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/sys/dsl_pool.h
Directory Properties:
  head/sys/cddl/contrib/opensolaris/   (props changed)

Modified: head/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/sys/dsl_pool.h
==============================================================================
--- head/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/sys/dsl_pool.h	Wed Sep 20 07:24:57 2017	(r323792)
+++ head/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/sys/dsl_pool.h	Wed Sep 20 07:26:52 2017	(r323793)
@@ -123,7 +123,6 @@ typedef struct dsl_pool {
 	txg_list_t dp_sync_tasks;
 	taskq_t *dp_sync_taskq;
 	taskq_t *dp_zil_clean_taskq;
-	txg_list_t dp_early_sync_tasks;
 
 	/*
 	 * Protects administrative changes (properties, namespace)


More information about the svn-src-head mailing list