svn commit: r368425 - head/sys/fs/ext2fs

Kirk McKusick mckusick at FreeBSD.org
Tue Dec 8 00:49:32 UTC 2020


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. */


More information about the svn-src-all mailing list