Home
last modified time | relevance | path

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

/linux-2.4.37.9/fs/jfs/
Djfs_txnmgr.h26 #define tid_to_tblock(tid) (&TxBlock[tid])
68 extern struct tblock *TxBlock; /* transaction block table */
Djfs_txnmgr.c97 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()
[all …]