Lines Matching refs:TxBlock
97 struct tblock *TxBlock; /* transaction block table */ variable
254 TxBlock = (struct tblock *) vmalloc(size); in txInit()
255 if (TxBlock == NULL) in txInit()
259 TxBlock[k].next = k + 1; in txInit()
260 init_waitqueue_head(&TxBlock[k].gcwait); in txInit()
261 init_waitqueue_head(&TxBlock[k].waitor); in txInit()
263 TxBlock[k].next = 0; in txInit()
264 init_waitqueue_head(&TxBlock[k].gcwait); in txInit()
265 init_waitqueue_head(&TxBlock[k].waitor); in txInit()
281 vfree(TxBlock); in txInit()
311 vfree(TxBlock); in txExit()
312 TxBlock = 0; in txExit()
2675 txEnd(tblk - TxBlock); /* Convert back to tid */ in txLazyCommit()