1997-02-13 02:35:06 +03:00
|
|
|
# $NetBSD: vdump,v 1.2 1997/02/12 23:35:11 gwr Exp $
|
|
|
|
|
1997-02-13 01:09:45 +03:00
|
|
|
# @(#)vdump 8.1 (Berkeley) 6/10/93
|
|
|
|
#
|
|
|
|
# dump the vnode list
|
|
|
|
|
|
|
|
define dumpvnodes
|
|
|
|
|
|
|
|
set $vp = (struct vnode *)$arg0
|
|
|
|
while ($vp)
|
|
|
|
printf "vnode=0x%x freef=0x%x mountf=0x%x usecount=%d\n", $vp, $vp->v_freef, $vp->v_mountf, $vp->v_usecount
|
|
|
|
set $vp = (struct vnode *)$vp->v_freef
|
|
|
|
end
|
|
|
|
end
|