svn commit: r360145 - head/sys/fs/autofs
Edward Tomasz Napierala
trasz at FreeBSD.org
Tue Apr 21 13:57:52 UTC 2020
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);
}
More information about the svn-src-head
mailing list