svn commit: r279495 - stable/10/sys/kern

Garrett Cooper ngie at FreeBSD.org
Sun Mar 1 21:03:35 UTC 2015


Author: ngie
Date: Sun Mar  1 21:03:34 2015
New Revision: 279495
URL: https://svnweb.freebsd.org/changeset/base/279495

Log:
  MFC r278891:
  
  Add the mnt_lockref field to the ddb(4) 'show mount' command
  
  Differential Revision: https://reviews.freebsd.org/D1688
  Submitted by: Conrad Meyer <conrad.meyer at isilon.com>
  Sponsored by: EMC / Isilon Storage Division

Modified:
  stable/10/sys/kern/vfs_subr.c
Directory Properties:
  stable/10/   (props changed)

Modified: stable/10/sys/kern/vfs_subr.c
==============================================================================
--- stable/10/sys/kern/vfs_subr.c	Sun Mar  1 20:54:29 2015	(r279494)
+++ stable/10/sys/kern/vfs_subr.c	Sun Mar  1 21:03:34 2015	(r279495)
@@ -3182,6 +3182,7 @@ DB_SHOW_COMMAND(mount, db_show_mount)
 	db_printf("    mnt_maxsymlinklen = %d\n", mp->mnt_maxsymlinklen);
 	db_printf("    mnt_iosize_max = %d\n", mp->mnt_iosize_max);
 	db_printf("    mnt_hashseed = %u\n", mp->mnt_hashseed);
+	db_printf("    mnt_lockref = %d\n", mp->mnt_lockref);
 	db_printf("    mnt_secondary_writes = %d\n", mp->mnt_secondary_writes);
 	db_printf("    mnt_secondary_accwrites = %d\n",
 	    mp->mnt_secondary_accwrites);


More information about the svn-src-all mailing list