Home
last modified time | relevance | path

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

/linux-3.4.99/fs/jfs/
Djfs_txnmgr.h26 #define tid_to_tblock(tid) (&TxBlock[tid])
72 extern struct tblock *TxBlock; /* transaction block table */
Djfs_txnmgr.c107 struct tblock *TxBlock; /* transaction block table */ variable
285 TxBlock = vmalloc(size); in txInit()
286 if (TxBlock == NULL) in txInit()
290 TxBlock[k].next = k + 1; in txInit()
291 init_waitqueue_head(&TxBlock[k].gcwait); in txInit()
292 init_waitqueue_head(&TxBlock[k].waitor); in txInit()
294 TxBlock[k].next = 0; in txInit()
295 init_waitqueue_head(&TxBlock[k].gcwait); in txInit()
296 init_waitqueue_head(&TxBlock[k].waitor); in txInit()
312 vfree(TxBlock); in txInit()
[all …]