vdump revision 1.1
11.1Sgwr#	@(#)vdump	8.1 (Berkeley) 6/10/93
21.1Sgwr#
31.1Sgwr# dump the vnode list
41.1Sgwr
51.1Sgwrdefine dumpvnodes
61.1Sgwr
71.1Sgwr	set $vp = (struct vnode *)$arg0
81.1Sgwr	while ($vp)
91.1Sgwr		printf "vnode=0x%x freef=0x%x mountf=0x%x usecount=%d\n", $vp, $vp->v_freef, $vp->v_mountf, $vp->v_usecount
101.1Sgwr		set $vp = (struct vnode *)$vp->v_freef
111.1Sgwr	end
121.1Sgwrend
13