svn commit: r246390 - vendor-sys/illumos/dist/uts/common/fs/zfs/sys

Martin Matuska mm at FreeBSD.org
Wed Feb 6 08:14:59 UTC 2013


Author: mm
Date: Wed Feb  6 08:14:58 2013
New Revision: 246390
URL: http://svnweb.freebsd.org/changeset/base/246390

Log:
  Update vendor-sys/illumos/dist to illumos-gate version 13937:6b4f289e7094
  
  Illumos ZFS issues:
   3468 mdb enhancements for zfs development (not relevant for FreeBSD)

Modified:
  vendor-sys/illumos/dist/uts/common/fs/zfs/sys/refcount.h

Modified: vendor-sys/illumos/dist/uts/common/fs/zfs/sys/refcount.h
==============================================================================
--- vendor-sys/illumos/dist/uts/common/fs/zfs/sys/refcount.h	Wed Feb  6 07:59:14 2013	(r246389)
+++ vendor-sys/illumos/dist/uts/common/fs/zfs/sys/refcount.h	Wed Feb  6 08:14:58 2013	(r246390)
@@ -20,6 +20,7 @@
  */
 /*
  * Copyright (c) 2005, 2010, Oracle and/or its affiliates. All rights reserved.
+ * Copyright (c) 2012 by Delphix. All rights reserved.
  */
 
 #ifndef	_SYS_REFCOUNT_H
@@ -52,8 +53,8 @@ typedef struct refcount {
 	kmutex_t rc_mtx;
 	list_t rc_list;
 	list_t rc_removed;
-	int64_t rc_count;
-	int64_t rc_removed_count;
+	uint64_t rc_count;
+	uint64_t rc_removed_count;
 } refcount_t;
 
 /* Note: refcount_t must be initialized with refcount_create() */


More information about the svn-src-all mailing list