Module Name:    src
Committed By:   christos
Date:           Sun Apr 12 15:55:53 UTC 2020

Modified Files:
        src/sys/kern: vfs_vnops.c

Log Message:
delete debugging printf.


To generate a diff of this commit:
cvs rdiff -u -r1.208 -r1.209 src/sys/kern/vfs_vnops.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/kern/vfs_vnops.c
diff -u src/sys/kern/vfs_vnops.c:1.208 src/sys/kern/vfs_vnops.c:1.209
--- src/sys/kern/vfs_vnops.c:1.208	Sun Apr 12 09:12:42 2020
+++ src/sys/kern/vfs_vnops.c	Sun Apr 12 11:55:53 2020
@@ -1,4 +1,4 @@
-/*	$NetBSD: vfs_vnops.c,v 1.208 2020/04/12 13:12:42 christos Exp $	*/
+/*	$NetBSD: vfs_vnops.c,v 1.209 2020/04/12 15:55:53 christos Exp $	*/
 
 /*-
  * Copyright (c) 2009 The NetBSD Foundation, Inc.
@@ -66,7 +66,7 @@
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: vfs_vnops.c,v 1.208 2020/04/12 13:12:42 christos Exp $");
+__KERNEL_RCSID(0, "$NetBSD: vfs_vnops.c,v 1.209 2020/04/12 15:55:53 christos Exp $");
 
 #include "veriexec.h"
 
@@ -1107,7 +1107,6 @@ vn_extattr_get(struct vnode *vp, int iof
 
 	error = VOP_GETEXTATTR(vp, attrnamespace, attrname, &auio, NULL,
 	    NOCRED);
-	printf("%s: %d\n", __func__, error);
 
 	if ((ioflg & IO_NODELOCKED) == 0)
 		VOP_UNLOCK(vp);

Reply via email to