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
This commit is contained in:
nwhitehorn 2010-07-17 13:31:27 +00:00
parent 66f0f0c4fa
commit 5d6878ba3a

View File

@ -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);