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/nullfs/null_vnops.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'sys/fs/nullfs') diff --git a/sys/fs/nullfs/null_vnops.c b/sys/fs/nullfs/null_vnops.c index 566cd35..588e18c 100644 --- a/sys/fs/nullfs/null_vnops.c +++ b/sys/fs/nullfs/null_vnops.c @@ -771,8 +771,7 @@ null_print(ap) } */ *ap; { register struct vnode *vp = ap->a_vp; - printf("\ttag %s, vp=%p, lowervp=%p\n", vp->v_tag, vp, - NULLVPTOLOWERVP(vp)); + printf("\tvp=%p, lowervp=%p\n", vp, NULLVPTOLOWERVP(vp)); return (0); } -- cgit v1.1