Skip site navigation (1)Skip section navigation (2)
Date:      Tue, 20 Jan 2015 22:31:27 +0000 (UTC)
From:      Will Andrews <will@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org
Subject:   svn commit: r277450 - head/sys/cddl/contrib/opensolaris/uts/common/fs
Message-ID:  <201501202231.t0KMVRUg075052@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: will
Date: Tue Jan 20 22:31:26 2015
New Revision: 277450
URL: https://svnweb.freebsd.org/changeset/base/277450

Log:
  Use the "zfs_gfs" tag for GFS vnodes to make them easier to identify.
  
  MFC after:	1 week
  Sponsored by:	Spectra Logic

Modified:
  head/sys/cddl/contrib/opensolaris/uts/common/fs/gfs.c

Modified: head/sys/cddl/contrib/opensolaris/uts/common/fs/gfs.c
==============================================================================
--- head/sys/cddl/contrib/opensolaris/uts/common/fs/gfs.c	Tue Jan 20 22:29:27 2015	(r277449)
+++ head/sys/cddl/contrib/opensolaris/uts/common/fs/gfs.c	Tue Jan 20 22:31:26 2015	(r277450)
@@ -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;



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201501202231.t0KMVRUg075052>