Skip site navigation (1)Skip section navigation (2)
Date:      Tue, 17 May 2016 12:04:39 +0000 (UTC)
From:      Edward Tomasz Napierala <trasz@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org
Subject:   svn commit: r300047 - head/sys/fs/autofs
Message-ID:  <201605171204.u4HC4dKX020388@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
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);
 	}



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201605171204.u4HC4dKX020388>