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