From e635011374b23fd0280565566b4c2fadbd16eb7e Mon Sep 17 00:00:00 2001 From: Edward Tomasz Napierala Date: Tue, 17 May 2016 12:04:39 +0000 Subject: [PATCH] Silence down the "insmntque() failed" autofs error; it happens on shutdown and is perfectly normal. MFC after: 1 month Sponsored by: The FreeBSD Foundation --- sys/fs/autofs/autofs_vnops.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sys/fs/autofs/autofs_vnops.c b/sys/fs/autofs/autofs_vnops.c index 0ab6ec113e7c..781338b89605 100644 --- a/sys/fs/autofs/autofs_vnops.c +++ b/sys/fs/autofs/autofs_vnops.c @@ -686,7 +686,7 @@ autofs_node_vn(struct autofs_node *anp, struct mount *mp, int flags, 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); }