Skip site navigation (1)Skip section navigation (2)
Date:      Thu, 23 Aug 2018 22:35:14 +0000 (UTC)
From:      Kirk McKusick <mckusick@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org
Subject:   svn commit: r338281 - head/sys/ufs/ffs
Message-ID:  <201808232235.w7NMZEZi008364@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: mckusick
Date: Thu Aug 23 22:35:14 2018
New Revision: 338281
URL: https://svnweb.freebsd.org/changeset/base/338281

Log:
  Proper spelling of consolidation.
  
  Submitted by: Dimitry Andric

Modified:
  head/sys/ufs/ffs/ffs_alloc.c

Modified: head/sys/ufs/ffs/ffs_alloc.c
==============================================================================
--- head/sys/ufs/ffs/ffs_alloc.c	Thu Aug 23 21:26:58 2018	(r338280)
+++ head/sys/ufs/ffs/ffs_alloc.c	Thu Aug 23 22:35:14 2018	(r338281)
@@ -486,7 +486,7 @@ SYSCTL_INT(_vfs_ffs, OID_AUTO, doreallocblks, CTLFLAG_
 
 static int dotrimcons = 0;
 SYSCTL_INT(_vfs_ffs, OID_AUTO, dotrimcons, CTLFLAG_RW, &dotrimcons, 0,
-"enable BIO_DELETE / TRIM consolodation");
+"enable BIO_DELETE / TRIM consolidation");
 
 static int maxclustersearch = 10;
 SYSCTL_INT(_vfs_ffs, OID_AUTO, maxclustersearch, CTLFLAG_RW, &maxclustersearch,
@@ -513,10 +513,10 @@ ffs_reallocblks(ap)
 	 * the destination for the data is usually moved before the data
 	 * is written to the initially allocated location, so we rarely
 	 * suffer the penalty of extra writes. With the addition of the
-	 * consolodation of contiguous blocks into single BIO_DELETE
+	 * consolidation of contiguous blocks into single BIO_DELETE
 	 * operations, having fewer but larger contiguous blocks reduces
 	 * the number of (slow and expensive) BIO_DELETE operations. So
-	 * when doing BIO_DELETE consolodation, we do block reallocation.
+	 * when doing BIO_DELETE consolidation, we do block reallocation.
 	 *
 	 * Skip if reallocblks has been disabled globally.
 	 */



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201808232235.w7NMZEZi008364>