1*63244Sbostic# @(#)vdump 8.1 (Berkeley) 06/10/93 263243Sbostic# 363243Sbostic# dump the vnode list 463243Sbostic 563242Sbosticdefine dumpvnodes 663242Sbostic 763242Sbostic set $vp = (struct vnode *)$arg0 863242Sbostic while ($vp) 963242Sbostic printf "vnode=0x%x freef=0x%x mountf=0x%x usecount=%d\n", $vp, $vp->v_freef, $vp->v_mountf, $vp->v_usecount 1063242Sbostic set $vp = (struct vnode *)$vp->v_freef 1163242Sbostic end 1263242Sbosticend 13