summaryrefslogtreecommitdiffstats
path: root/sys/nfsclient/nfs_vnops.c
diff options
context:
space:
mode:
authornjl <njl@FreeBSD.org>2003-03-03 19:15:40 +0000
committernjl <njl@FreeBSD.org>2003-03-03 19:15:40 +0000
commit5a225ad93319945ddf1088461e0b574dd6daf1f5 (patch)
tree7305b3cb7830a69706d4f895936e5aaecc614cbe /sys/nfsclient/nfs_vnops.c
parent7e3263308badc4fb7923e001ca3b61ca0cfaa7c0 (diff)
downloadFreeBSD-src-5a225ad93319945ddf1088461e0b574dd6daf1f5.zip
FreeBSD-src-5a225ad93319945ddf1088461e0b574dd6daf1f5.tar.gz
Finish cleanup of vprint() which was begun with changing v_tag to a string.
Remove extraneous uses of vop_null, instead defering to the default op. Rename vnode type "vfs" to the more descriptive "syncer". Fix formatting for various filesystems that use vop_print.
Diffstat (limited to 'sys/nfsclient/nfs_vnops.c')
-rw-r--r--sys/nfsclient/nfs_vnops.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/nfsclient/nfs_vnops.c b/sys/nfsclient/nfs_vnops.c
index bc00477..2a137b7 100644
--- a/sys/nfsclient/nfs_vnops.c
+++ b/sys/nfsclient/nfs_vnops.c
@@ -2890,8 +2890,8 @@ nfs_print(struct vop_print_args *ap)
struct vnode *vp = ap->a_vp;
struct nfsnode *np = VTONFS(vp);
- printf("tag %s fileid %ld fsid 0x%x",
- vp->v_tag, np->n_vattr.va_fileid, np->n_vattr.va_fsid);
+ printf("\tfileid %ld fsid 0x%x",
+ np->n_vattr.va_fileid, np->n_vattr.va_fsid);
if (vp->v_type == VFIFO)
fifo_printinfo(vp);
printf("\n");
OpenPOWER on IntegriCloud