svn commit: r300047 - head/sys/fs/autofs

Edward Tomasz Napierala trasz at FreeBSD.org
Tue May 17 12:04:40 UTC 2016


Author: trasz
Date: Tue May 17 12:04:39 2016
New Revision: 300047
URL: https://svnweb.freebsd.org/changeset/base/300047

Log:
  Silence down the "insmntque() failed" autofs error; it happens
  on shutdown and is perfectly normal.
  
  MFC after:	1 month
  Sponsored by:	The FreeBSD Foundation

Modified:
  head/sys/fs/autofs/autofs_vnops.c

Modified: head/sys/fs/autofs/autofs_vnops.c
==============================================================================
--- head/sys/fs/autofs/autofs_vnops.c	Tue May 17 11:59:38 2016	(r300046)
+++ head/sys/fs/autofs/autofs_vnops.c	Tue May 17 12:04:39 2016	(r300047)
@@ -686,7 +686,7 @@ autofs_node_vn(struct autofs_node *anp, 
 
 	error = insmntque(vp, mp);
 	if (error != 0) {
-		AUTOFS_WARN("insmntque() failed with error %d", error);
+		AUTOFS_DEBUG("insmntque() failed with error %d", error);
 		sx_xunlock(&anp->an_vnode_lock);
 		return (error);
 	}


More information about the svn-src-all mailing list