Module Name:    src
Committed By:   tkusumi
Date:           Sun Apr 26 17:00:31 UTC 2020

Modified Files:
        src/sys/fs/autofs: autofs_vfsops.c

Log Message:
autofs: Silence down a warning which should really be a debug message

taken-from: FreeBSD


To generate a diff of this commit:
cvs rdiff -u -r1.10 -r1.11 src/sys/fs/autofs/autofs_vfsops.c

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: src/sys/fs/autofs/autofs_vfsops.c
diff -u src/sys/fs/autofs/autofs_vfsops.c:1.10 src/sys/fs/autofs/autofs_vfsops.c:1.11
--- src/sys/fs/autofs/autofs_vfsops.c:1.10	Mon Mar 16 21:20:09 2020
+++ src/sys/fs/autofs/autofs_vfsops.c	Sun Apr 26 17:00:31 2020
@@ -33,7 +33,7 @@
  *
  */
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: autofs_vfsops.c,v 1.10 2020/03/16 21:20:09 pgoyette Exp $");
+__KERNEL_RCSID(0, "$NetBSD: autofs_vfsops.c,v 1.11 2020/04/26 17:00:31 tkusumi Exp $");
 
 
 #include "autofs.h"
@@ -194,7 +194,7 @@ autofs_unmount(struct mount *mp, int mnt
 		flags |= FORCECLOSE;
 	error = vflush(mp, NULL, flags);
 	if (error) {
-		AUTOFS_WARN("vflush failed with error %d", error);
+		AUTOFS_DEBUG("vflush failed with error %d", error);
 		return error;
 	}
 

Reply via email to