svn commit: r324614 - head/sys/sys

Mateusz Guzik mjg at FreeBSD.org
Sat Oct 14 04:27:59 UTC 2017


Author: mjg
Date: Sat Oct 14 04:27:58 2017
New Revision: 324614
URL: https://svnweb.freebsd.org/changeset/base/324614

Log:
  Fix wrong v_free_count annotation - (f) instead of (a)
  
  Reported by:	alc

Modified:
  head/sys/sys/vmmeter.h

Modified: head/sys/sys/vmmeter.h
==============================================================================
--- head/sys/sys/vmmeter.h	Sat Oct 14 00:47:30 2017	(r324613)
+++ head/sys/sys/vmmeter.h	Sat Oct 14 04:27:58 2017	(r324614)
@@ -140,7 +140,7 @@ struct vmmeter {
 	u_int v_inactive_count VMMETER_ALIGNED;	/* (a) pages inactive */
 	u_int v_laundry_count VMMETER_ALIGNED; /* (a) pages eligible for
 						  laundering */
-	u_int v_free_count VMMETER_ALIGNED; /* (a) pages free */
+	u_int v_free_count VMMETER_ALIGNED; /* (f) pages free */
 };
 #endif /* _KERNEL || _WANT_VMMETER */
 


More information about the svn-src-all mailing list