svn commit: r347433 - head/sys/sys

Doug Moore dougm at FreeBSD.org
Fri May 10 16:01:26 UTC 2019


Author: dougm
Date: Fri May 10 16:01:25 2019
New Revision: 347433
URL: https://svnweb.freebsd.org/changeset/base/347433

Log:
  A major change to subr_blist.c failed to update all the comments about
  changes to struct fields. Update those now.
  
  Approved by: markj (mentor)
  Differential Revision: https://reviews.freebsd.org/D20227

Modified:
  head/sys/sys/blist.h

Modified: head/sys/sys/blist.h
==============================================================================
--- head/sys/sys/blist.h	Fri May 10 15:55:30 2019	(r347432)
+++ head/sys/sys/blist.h	Fri May 10 16:01:25 2019	(r347433)
@@ -69,17 +69,17 @@ typedef	uint64_t	u_daddr_t;	/* unsigned disk address *
 #define SWAPBLK_NONE	((daddr_t)((u_daddr_t)SWAPBLK_MASK + 1))/* flag */
 
 /*
- * Both blmeta and bmu_bitmap MUST be a power of 2 in size.
+ * Both blmeta and bm_bitmap MUST be a power of 2 in size.
  */
 
 typedef struct blmeta {
-	u_daddr_t	bm_bitmap;	/* bitmap if we are a leaf	*/
+	u_daddr_t	bm_bitmap;	/* marking unfilled block sets	*/
 	daddr_t		bm_bighint;	/* biggest contiguous block hint*/
 } blmeta_t;
 
 typedef struct blist {
 	daddr_t		bl_blocks;	/* area of coverage		*/
-	daddr_t		bl_avail;	/* # available blocks */
+	daddr_t		bl_avail;	/* # available blocks		*/
 	u_daddr_t	bl_radix;	/* coverage radix		*/
 	daddr_t		bl_cursor;	/* next-fit search starts at	*/
 	blmeta_t	bl_root[1];	/* root of radix tree		*/


More information about the svn-src-head mailing list