From owner-svn-src-all@freebsd.org Tue May 17 12:04:40 2016 Return-Path: Delivered-To: svn-src-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id C8795B3F62F; Tue, 17 May 2016 12:04:40 +0000 (UTC) (envelope-from trasz@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 92B3C11CE; Tue, 17 May 2016 12:04:40 +0000 (UTC) (envelope-from trasz@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u4HC4dFb020389; Tue, 17 May 2016 12:04:39 GMT (envelope-from trasz@FreeBSD.org) Received: (from trasz@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u4HC4dKX020388; Tue, 17 May 2016 12:04:39 GMT (envelope-from trasz@FreeBSD.org) Message-Id: <201605171204.u4HC4dKX020388@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: trasz set sender to trasz@FreeBSD.org using -f From: Edward Tomasz Napierala Date: Tue, 17 May 2016 12:04:39 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org Subject: svn commit: r300047 - head/sys/fs/autofs X-SVN-Group: head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-src-all@freebsd.org X-Mailman-Version: 2.1.22 Precedence: list List-Id: "SVN commit messages for the entire src tree \(except for " user" and " projects" \)" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 17 May 2016 12:04:40 -0000 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); }