nTxBlock           84 fs/jfs/jfs_txnmgr.c static int nTxBlock = -1;	/* number of transaction blocks */
nTxBlock           85 fs/jfs/jfs_txnmgr.c module_param(nTxBlock, int, 0);
nTxBlock           86 fs/jfs/jfs_txnmgr.c MODULE_PARM_DESC(nTxBlock,
nTxBlock          233 fs/jfs/jfs_txnmgr.c 		if (nTxBlock == -1) {
nTxBlock          240 fs/jfs/jfs_txnmgr.c 		} else if (nTxBlock > (8 * 1024))
nTxBlock          243 fs/jfs/jfs_txnmgr.c 			nTxLock = nTxBlock << 3;
nTxBlock          245 fs/jfs/jfs_txnmgr.c 	if (nTxBlock == -1)
nTxBlock          246 fs/jfs/jfs_txnmgr.c 		nTxBlock = nTxLock >> 3;
nTxBlock          249 fs/jfs/jfs_txnmgr.c 	if (nTxBlock < 16)
nTxBlock          250 fs/jfs/jfs_txnmgr.c 		nTxBlock = 16;	/* No one should set it this low */
nTxBlock          251 fs/jfs/jfs_txnmgr.c 	if (nTxBlock > 65536)
nTxBlock          252 fs/jfs/jfs_txnmgr.c 		nTxBlock = 65536;
nTxBlock          259 fs/jfs/jfs_txnmgr.c 	       nTxBlock, nTxLock);
nTxBlock          270 fs/jfs/jfs_txnmgr.c 	size = sizeof(struct tblock) * nTxBlock;
nTxBlock          275 fs/jfs/jfs_txnmgr.c 	for (k = 1; k < nTxBlock - 1; k++) {