Home
last modified time | relevance | path

Searched refs:nTxBlock (Results 1 – 1 of 1) sorted by relevance

/linux-5.19.10/fs/jfs/
Djfs_txnmgr.c84 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()
[all …]