Source-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[src/trunk]: src/sys/fs/tmpfs Remove an annoying printf. And to answer the q...



details:   https://anonhg.NetBSD.org/src/rev/d44bb65917d1
branches:  trunk
changeset: 793343:d44bb65917d1
user:      hannken <hannken%NetBSD.org@localhost>
date:      Thu Feb 06 16:18:38 2014 +0000

description:
Remove an annoying printf.  And to answer the question:  VFS_VGET() gets
used by NFS V3 server for readdirplus.

diffstat:

 sys/fs/tmpfs/tmpfs_vfsops.c |  5 ++---
 1 files changed, 2 insertions(+), 3 deletions(-)

diffs (26 lines):

diff -r 1901591fc2b7 -r d44bb65917d1 sys/fs/tmpfs/tmpfs_vfsops.c
--- a/sys/fs/tmpfs/tmpfs_vfsops.c       Thu Feb 06 15:51:02 2014 +0000
+++ b/sys/fs/tmpfs/tmpfs_vfsops.c       Thu Feb 06 16:18:38 2014 +0000
@@ -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 @@
 tmpfs_vget(struct mount *mp, ino_t ino, vnode_t **vpp)
 {
 
-       printf("tmpfs_vget called; need for it unknown yet\n");
        return EOPNOTSUPP;
 }
 



Home | Main Index | Thread Index | Old Index