svn commit: r302240 - in stable/9: share/man/man4 sys/dev/filemon

Bryan Drewery bdrewery at FreeBSD.org
Mon Jun 27 22:18:54 UTC 2016


Author: bdrewery
Date: Mon Jun 27 22:18:52 2016
New Revision: 302240
URL: https://svnweb.freebsd.org/changeset/base/302240

Log:
  Mark filemon(4) as "experimental" for 9 since it has many unfixed
  stability, performance, and audit issues that have not been MFC'd.

Modified:
  stable/9/share/man/man4/filemon.4
  stable/9/sys/dev/filemon/filemon.c

Modified: stable/9/share/man/man4/filemon.4
==============================================================================
--- stable/9/share/man/man4/filemon.4	Mon Jun 27 22:13:43 2016	(r302239)
+++ stable/9/share/man/man4/filemon.4	Mon Jun 27 22:18:52 2016	(r302240)
@@ -211,3 +211,7 @@ does not make sense to have daemons for.
 .Pp
 Unloading the module may panic the system, thus requires using
 .Ic kldunload -f .
+.Pp
+.Nm
+is still experimental with
+.Fx 9 .

Modified: stable/9/sys/dev/filemon/filemon.c
==============================================================================
--- stable/9/sys/dev/filemon/filemon.c	Mon Jun 27 22:13:43 2016	(r302239)
+++ stable/9/sys/dev/filemon/filemon.c	Mon Jun 27 22:18:52 2016	(r302240)
@@ -291,6 +291,7 @@ filemon_modevent(module_t mod __unused, 
 
 	switch (type) {
 	case MOD_LOAD:
+		printf("WARNING: Filemon is still experimental for FreeBSD 9.\n");
 		filemon_load(data);
 		break;
 


More information about the svn-src-stable mailing list