Home
last modified time | relevance | path

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

/linux-5.19.10/fs/jfs/
Djfs_txnmgr.h13 #define tid_to_tblock(tid) (&TxBlock[tid])
59 extern struct tblock *TxBlock; /* transaction block table */
Djfs_txnmgr.c94 struct tblock *TxBlock; /* transaction block table */ variable
271 TxBlock = vmalloc(size); in txInit()
272 if (TxBlock == NULL) in txInit()
276 TxBlock[k].next = k + 1; in txInit()
277 init_waitqueue_head(&TxBlock[k].gcwait); in txInit()
278 init_waitqueue_head(&TxBlock[k].waitor); in txInit()
280 TxBlock[k].next = 0; in txInit()
281 init_waitqueue_head(&TxBlock[k].gcwait); in txInit()
282 init_waitqueue_head(&TxBlock[k].waitor); in txInit()
298 vfree(TxBlock); in txInit()
[all …]