svn commit: r210192 - head/sys/cddl/contrib/opensolaris/uts/common/fs/zfs

Nathan Whitehorn nwhitehorn at FreeBSD.org
Sat Jul 17 13:31:27 UTC 2010


Author: nwhitehorn
Date: Sat Jul 17 13:31:27 2010
New Revision: 210192
URL: http://svn.freebsd.org/changeset/base/210192

Log:
  Increase stack size for ZFS sync thread. This is required to make ZFS
  function on 64-bit PowerPC.
  
  Reviewed by:	pjd
  Obtained from:	OpenSolaris changeset 14653:7cf402a7f374

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

Modified: head/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/txg.c
==============================================================================
--- head/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/txg.c	Sat Jul 17 12:53:57 2010	(r210191)
+++ head/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/txg.c	Sat Jul 17 13:31:27 2010	(r210192)
@@ -146,7 +146,7 @@ txg_sync_start(dsl_pool_t *dp)
 	 * 32-bit x86.  This is due in part to nested pools and
 	 * scrub_visitbp() recursion.
 	 */
-	tx->tx_sync_thread = thread_create(NULL, 12<<10, txg_sync_thread,
+	tx->tx_sync_thread = thread_create(NULL, 32<<10, txg_sync_thread,
 	    dp, 0, &p0, TS_RUN, minclsyspri);
 
 	mutex_exit(&tx->tx_sync_lock);


More information about the svn-src-head mailing list