Module Name: src Committed By: hannken Date: Thu Feb 6 16:18:38 UTC 2014
Modified Files: src/sys/fs/tmpfs: tmpfs_vfsops.c Log Message: Remove an annoying printf. And to answer the question: VFS_VGET() gets used by NFS V3 server for readdirplus. To generate a diff of this commit: cvs rdiff -u -r1.56 -r1.57 src/sys/fs/tmpfs/tmpfs_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/tmpfs/tmpfs_vfsops.c diff -u src/sys/fs/tmpfs/tmpfs_vfsops.c:1.56 src/sys/fs/tmpfs/tmpfs_vfsops.c:1.57 --- src/sys/fs/tmpfs/tmpfs_vfsops.c:1.56 Sat Jan 4 12:36:49 2014 +++ src/sys/fs/tmpfs/tmpfs_vfsops.c Thu Feb 6 16:18:38 2014 @@ -1,4 +1,4 @@ -/* $NetBSD: tmpfs_vfsops.c,v 1.56 2014/01/04 12:36:49 hannken Exp $ */ +/* $NetBSD: tmpfs_vfsops.c,v 1.57 2014/02/06 16:18:38 hannken Exp $ */ /* * Copyright (c) 2005, 2006, 2007 The NetBSD Foundation, Inc. @@ -42,7 +42,7 @@ */ #include <sys/cdefs.h> -__KERNEL_RCSID(0, "$NetBSD: tmpfs_vfsops.c,v 1.56 2014/01/04 12:36:49 hannken Exp $"); +__KERNEL_RCSID(0, "$NetBSD: tmpfs_vfsops.c,v 1.57 2014/02/06 16:18:38 hannken Exp $"); #include <sys/param.h> #include <sys/types.h> @@ -272,7 +272,6 @@ static int tmpfs_vget(struct mount *mp, ino_t ino, vnode_t **vpp) { - printf("tmpfs_vget called; need for it unknown yet\n"); return EOPNOTSUPP; }