From d499502db7eff2276a931981bf745aec33fccaa2 Mon Sep 17 00:00:00 2001 From: Edward Tomasz Napierala Date: Tue, 21 Apr 2020 13:57:51 +0000 Subject: [PATCH] Silence down a warning which should really be a debug message. MFC after: 2 weeks Sponsored by: DARPA --- sys/fs/autofs/autofs_vfsops.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sys/fs/autofs/autofs_vfsops.c b/sys/fs/autofs/autofs_vfsops.c index df2958ddf8aa..e7b4962cec7d 100644 --- a/sys/fs/autofs/autofs_vfsops.c +++ b/sys/fs/autofs/autofs_vfsops.c @@ -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); }