svn commit: r298791 - head/sys/sys

Conrad E. Meyer cem at FreeBSD.org
Fri Apr 29 17:56:17 UTC 2016


Author: cem
Date: Fri Apr 29 17:56:16 2016
New Revision: 298791
URL: https://svnweb.freebsd.org/changeset/base/298791

Log:
  PRINT_BUF_FLAGS: Remove removed DIRTY/PERSIST flags
  
  This is a follow-up to r298789, which removed the B_DIRTY and B_PERSISTENT
  flags.  This changeset removes them from the associated %b bit description
  string as well.
  
  Reviewed by:	pfg
  Sponsored by:	EMC / Isilon Storage Division

Modified:
  head/sys/sys/buf.h

Modified: head/sys/sys/buf.h
==============================================================================
--- head/sys/sys/buf.h	Fri Apr 29 17:35:28 2016	(r298790)
+++ head/sys/sys/buf.h	Fri Apr 29 17:56:16 2016	(r298791)
@@ -226,9 +226,9 @@ struct buf {
 #define B_REMFREE	0x80000000	/* Delayed bremfree */
 
 #define PRINT_BUF_FLAGS "\20\40remfree\37cluster\36vmio\35ram\34managed" \
-	"\33paging\32infreecnt\31nocopy\30b23\27relbuf\26dirty\25b20" \
+	"\33paging\32infreecnt\31nocopy\30b23\27relbuf\26b21\25b20" \
 	"\24b19\23b18\22clusterok\21malloc\20nocache\17b14\16inval" \
-	"\15b12\14noreuse\13eintr\12done\11persist\10delwri" \
+	"\15b12\14noreuse\13eintr\12done\11b8\10delwri" \
 	"\7validsuspwrt\6cache\5deferred\4direct\3async\2needcommit\1age"
 
 /*


More information about the svn-src-all mailing list