Date: Tue, 21 Apr 2020 13:57:52 +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: r360145 - head/sys/fs/autofs Message-ID: <202004211357.03LDvqQU075889@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: trasz Date: Tue Apr 21 13:57:51 2020 New Revision: 360145 URL: https://svnweb.freebsd.org/changeset/base/360145 Log: Silence down a warning which should really be a debug message. MFC after: 2 weeks Sponsored by: DARPA Modified: head/sys/fs/autofs/autofs_vfsops.c Modified: head/sys/fs/autofs/autofs_vfsops.c ============================================================================== --- head/sys/fs/autofs/autofs_vfsops.c Tue Apr 21 13:30:00 2020 (r360144) +++ head/sys/fs/autofs/autofs_vfsops.c Tue Apr 21 13:57:51 2020 (r360145) @@ -128,7 +128,7 @@ autofs_unmount(struct mount *mp, int mntflags) flags |= FORCECLOSE; error = vflush(mp, 0, flags, curthread); if (error != 0) { - AUTOFS_WARN("vflush failed with error %d", error); + AUTOFS_DEBUG("vflush failed with error %d", error); return (error); }
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202004211357.03LDvqQU075889>