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

Ed Maste emaste at FreeBSD.org
Wed Jul 19 18:17:43 UTC 2017


Author: emaste
Date: Wed Jul 19 18:17:41 2017
New Revision: 321218
URL: https://svnweb.freebsd.org/changeset/base/321218

Log:
  zfs: Fix a typo in the delay_min_dirty_percent sysctl description
  
  The description is FreeBSD-specific and was added in r266497
  to fix PR189865.
  
  PR:		220825
  Submitted by:	Fabian Keil
  Obtained from:	ElectroBSD
  MFC after:	1 week

Modified:
  head/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/dsl_pool.c

Modified: head/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/dsl_pool.c
==============================================================================
--- head/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/dsl_pool.c	Wed Jul 19 17:28:46 2017	(r321217)
+++ head/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/dsl_pool.c	Wed Jul 19 18:17:41 2017	(r321218)
@@ -167,7 +167,7 @@ static int sysctl_zfs_delay_min_dirty_percent(SYSCTL_H
 SYSCTL_PROC(_vfs_zfs, OID_AUTO, delay_min_dirty_percent,
     CTLTYPE_INT | CTLFLAG_MPSAFE | CTLFLAG_RW, 0, sizeof(int),
     sysctl_zfs_delay_min_dirty_percent, "I",
-    "The limit of outstanding dirty data before transations are delayed");
+    "The limit of outstanding dirty data before transactions are delayed");
 
 static int sysctl_zfs_delay_scale(SYSCTL_HANDLER_ARGS);
 /* No zfs_delay_scale tunable due to limit requirements */


More information about the svn-src-head mailing list