Home
last modified time | relevance | path

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

/linux-2.4.37.9/fs/jfs/
Djfs_txnmgr.h28 #define lid_to_tlock(lid) (&TxLock[lid])
107 extern struct tlock *TxLock; /* transaction lock table */
Djfs_txnmgr.c102 struct tlock *TxLock; /* transaction lock table */ variable
210 TxAnchor.freelock = TxLock[lid].next; in txLockAlloc()
223 TxLock[lid].next = TxAnchor.freelock; in txLockFree()
279 TxLock = (struct tlock *) vmalloc(size); in txInit()
280 if (TxLock == NULL) { in txInit()
287 TxLock[k].next = k + 1; in txInit()
288 TxLock[k].next = 0; in txInit()
309 vfree(TxLock); in txExit()
310 TxLock = 0; in txExit()