Silence down a warning which should really be a debug message.

MFC after:	2 weeks
Sponsored by:	DARPA
This commit is contained in:
Edward Tomasz Napierala 2020-04-21 13:57:51 +00:00
parent c027e8cf48
commit d499502db7
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=360145

View File

@ -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);
}