From 5a225ad93319945ddf1088461e0b574dd6daf1f5 Mon Sep 17 00:00:00 2001 From: njl Date: Mon, 3 Mar 2003 19:15:40 +0000 Subject: 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. --- sys/fs/umapfs/umap_vnops.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'sys/fs/umapfs') diff --git a/sys/fs/umapfs/umap_vnops.c b/sys/fs/umapfs/umap_vnops.c index a5234cf..6a6dc08 100644 --- a/sys/fs/umapfs/umap_vnops.c +++ b/sys/fs/umapfs/umap_vnops.c @@ -436,8 +436,7 @@ umap_print(ap) } */ *ap; { struct vnode *vp = ap->a_vp; - printf("\ttag %s, vp=%p, lowervp=%p\n", vp->v_tag, vp, - UMAPVPTOLOWERVP(vp)); + printf("\tvp=%p, lowervp=%p\n", vp, UMAPVPTOLOWERVP(vp)); return (0); } -- cgit v1.1