svn commit: r297543 - stable/10/sys/cddl/contrib/opensolaris/uts/common/fs

Alexander Motin mav at FreeBSD.org
Mon Apr 4 09:35:38 UTC 2016


Author: mav
Date: Mon Apr  4 09:35:36 2016
New Revision: 297543
URL: https://svnweb.freebsd.org/changeset/base/297543

Log:
  MFC r277450 (by will):
  Use the "zfs_gfs" tag for GFS vnodes to make them easier to identify.

Modified:
  stable/10/sys/cddl/contrib/opensolaris/uts/common/fs/gfs.c
Directory Properties:
  stable/10/   (props changed)

Modified: stable/10/sys/cddl/contrib/opensolaris/uts/common/fs/gfs.c
==============================================================================
--- stable/10/sys/cddl/contrib/opensolaris/uts/common/fs/gfs.c	Mon Apr  4 09:30:57 2016	(r297542)
+++ stable/10/sys/cddl/contrib/opensolaris/uts/common/fs/gfs.c	Mon Apr  4 09:35:36 2016	(r297543)
@@ -489,7 +489,7 @@ gfs_file_create(size_t size, vnode_t *pv
 	 * Allocate vnode and internal data structure
 	 */
 	fp = kmem_zalloc(size, KM_SLEEP);
-	error = getnewvnode("zfs", vfsp, ops, &vp);
+	error = getnewvnode("zfs_gfs", vfsp, ops, &vp);
 	ASSERT(error == 0);
 	vn_lock(vp, LK_EXCLUSIVE | LK_RETRY);
 	vp->v_data = (caddr_t)fp;


More information about the svn-src-all mailing list