From 7bc16b2df2a215523640a41420e0660a0b544c13 Mon Sep 17 00:00:00 2001 From: Matthew Dillon Date: Wed, 6 Apr 2005 18:40:25 +0000 Subject: [PATCH] Include fsid information in the mount point dump. --- test/debug/vnodeinfo.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/test/debug/vnodeinfo.c b/test/debug/vnodeinfo.c index 5483daebc3..f36bc6bd7a 100644 --- a/test/debug/vnodeinfo.c +++ b/test/debug/vnodeinfo.c @@ -40,7 +40,7 @@ * OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $DragonFly: src/test/debug/vnodeinfo.c,v 1.5 2005/03/24 20:14:42 dillon Exp $ + * $DragonFly: src/test/debug/vnodeinfo.c,v 1.6 2005/04/06 18:40:25 dillon Exp $ */ #define _KERNEL_STRUCTURES_ @@ -137,6 +137,8 @@ dumpmount(kvm_t *kd, struct mount *mp) printf(" mnt_flag %08x mnt_kern_flag %08x\n", mnt.mnt_flag, mnt.mnt_kern_flag); printf(" mnt_nvnodelistsize %d\n", mnt.mnt_nvnodelistsize); + printf(" mnt_stat.f_fsid %08x %08x\n", mnt.mnt_stat.f_fsid.val[0], + mnt.mnt_stat.f_fsid.val[1]); vp = mnt.mnt_nvnodelist.tqh_first; while (vp) vp = dumpvp(kd, vp, 1); -- 2.35.2