Module Name: src Committed By: christos Date: Tue Apr 14 00:08:07 UTC 2020
Modified Files: src/sys/gdbscripts: vdump Log Message: catch up with field move To generate a diff of this commit: cvs rdiff -u -r1.6 -r1.7 src/sys/gdbscripts/vdump Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
Modified files: Index: src/sys/gdbscripts/vdump diff -u src/sys/gdbscripts/vdump:1.6 src/sys/gdbscripts/vdump:1.7 --- src/sys/gdbscripts/vdump:1.6 Wed Dec 14 10:48:55 2016 +++ src/sys/gdbscripts/vdump Mon Apr 13 20:08:07 2020 @@ -1,4 +1,4 @@ -# $NetBSD: vdump,v 1.6 2016/12/14 15:48:55 hannken Exp $ +# $NetBSD: vdump,v 1.7 2020/04/14 00:08:07 christos Exp $ # @(#)vdump 8.1 (Berkeley) 6/10/93 # @@ -8,7 +8,7 @@ define dumpvnodes set $vp = (struct vnode *)$arg0 set $vi = (struct vnode_impl *)$arg0 while ($vp) - printf "vnode=0x%x lruf=0x%x mountf=0x%x usecount=%d\n", $vp, $vi->vi_lrulist.tqe_next, $vp->v_mntvnodes.tqe_next, $vp->v_uobj.uo_refs + printf "vnode=0x%x lruf=0x%x mountf=0x%x usecount=%d\n", $vp, $vi->vi_lrulist.tqe_next, $vi->vi_mntvnodes.tqe_next, $vp->v_uobj.uo_refs set $vi = (struct vnode_impl *)$vi->vi_lrulist.tqe_next set $vp = (struct vnode *)$vi end