Skip site navigation (1)Skip section navigation (2)
Date:      Tue, 8 Dec 2020 00:49:31 +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: r368425 - head/sys/fs/ext2fs
Message-ID:  <202012080049.0B80nVO7016927@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: mckusick
Date: Tue Dec  8 00:49:31 2020
New Revision: 368425
URL: https://svnweb.freebsd.org/changeset/base/368425

Log:
  In ext2fs, BA_CLRBUF is used in ext2_balloc() not UFS_BALLOC().
  
  Noted by:     kib
  MFC after:    3 days
  Sponsored by: Netflix

Modified:
  head/sys/fs/ext2fs/ext2_extern.h

Modified: head/sys/fs/ext2fs/ext2_extern.h
==============================================================================
--- head/sys/fs/ext2fs/ext2_extern.h	Tue Dec  8 00:48:50 2020	(r368424)
+++ head/sys/fs/ext2fs/ext2_extern.h	Tue Dec  8 00:49:31 2020	(r368425)
@@ -141,7 +141,7 @@ void	ext2_gd_csum_set(struct m_ext2fs *);
  * blocks must be cleared and buffers for existing blocks must be read.
  * When BA_CLRBUF is not set the buffer will be completely overwritten
  * and there is no reason to clear them or to spend I/O fetching existing
- * data. The BA_CLRBUF flag is handled in the UFS_BALLOC() functions.
+ * data. The BA_CLRBUF flag is handled in the ext2_balloc() functions.
  */
 #define	BA_CLRBUF	0x00010000	/* Clear invalid areas of buffer. */
 #define	BA_SEQMASK	0x7F000000	/* Bits holding seq heuristic. */



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