Home
last modified time | relevance | path

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

/linux-4.19.296/fs/jfs/
Djfs_txnmgr.h28 #define lid_to_tlock(lid) (&TxLock[lid])
111 extern struct tlock *TxLock; /* transaction lock table */
Djfs_txnmgr.c111 struct tlock *TxLock; /* transaction lock table */ variable
204 TxAnchor.freelock = TxLock[lid].next; in txLockAlloc()
217 TxLock[lid].tid = 0; in txLockFree()
218 TxLock[lid].next = TxAnchor.freelock; in txLockFree()
309 TxLock = vmalloc(size); in txInit()
310 if (TxLock == NULL) { in txInit()
317 TxLock[k].next = k + 1; in txInit()
318 TxLock[k].next = 0; in txInit()
342 vfree(TxLock); in txExit()
343 TxLock = NULL; in txExit()