From 0590c43070aac7fb636a1f4c4b94469046a317a0 Mon Sep 17 00:00:00 2001 From: njl Date: Sat, 14 Sep 2002 09:02:28 +0000 Subject: Remove all use of vnode->v_tag, replacing with appropriate substitutes. v_tag is now const char * and should only be used for debugging. Additionally: 1. All users of VT_NTS now check vfsconf->vf_type VFCF_NETWORK 2. The user of VT_PROCFS now checks for the new flag VV_PROCDEP, which is propagated by pseudofs to all child vnodes if the fs sets PFS_PROCDEP. Suggested by: phk Reviewed by: bde, rwatson (earlier version) --- sys/fs/umapfs/umap_subr.c | 2 +- sys/fs/umapfs/umap_vnops.c | 3 ++- 2 files changed, 3 insertions(+), 2 deletions(-) (limited to 'sys/fs/umapfs') diff --git a/sys/fs/umapfs/umap_subr.c b/sys/fs/umapfs/umap_subr.c index 02aec89..4be0eb1 100644 --- a/sys/fs/umapfs/umap_subr.c +++ b/sys/fs/umapfs/umap_subr.c @@ -212,7 +212,7 @@ umap_node_alloc(mp, lowervp, vpp) MALLOC(xp, struct umap_node *, sizeof(struct umap_node), M_TEMP, M_WAITOK); - error = getnewvnode(VT_UMAP, mp, umap_vnodeop_p, vpp); + error = getnewvnode("umap", mp, umap_vnodeop_p, vpp); if (error) { FREE(xp, M_TEMP); return (error); diff --git a/sys/fs/umapfs/umap_vnops.c b/sys/fs/umapfs/umap_vnops.c index 14abe0f..d0b385b 100644 --- a/sys/fs/umapfs/umap_vnops.c +++ b/sys/fs/umapfs/umap_vnops.c @@ -436,7 +436,8 @@ umap_print(ap) } */ *ap; { struct vnode *vp = ap->a_vp; - printf("\ttag VT_UMAPFS, vp=%p, lowervp=%p\n", vp, UMAPVPTOLOWERVP(vp)); + printf("\ttag %s, vp=%p, lowervp=%p\n", vp->v_tag, vp, + UMAPVPTOLOWERVP(vp)); return (0); } -- cgit v1.1