Home
last modified time | relevance | path

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

/linux-6.1.9/fs/jfs/
Djfs_txnmgr.h15 #define lid_to_tlock(lid) (&TxLock[lid])
98 extern struct tlock *TxLock; /* transaction lock table */
Djfs_txnmgr.c98 struct tlock *TxLock; /* transaction lock table */ variable
191 TxAnchor.freelock = TxLock[lid].next; in txLockAlloc()
204 TxLock[lid].tid = 0; in txLockFree()
205 TxLock[lid].next = TxAnchor.freelock; in txLockFree()
296 TxLock = vmalloc(size); in txInit()
297 if (TxLock == NULL) { in txInit()
304 TxLock[k].next = k + 1; in txInit()
305 TxLock[k].next = 0; in txInit()
329 vfree(TxLock); in txExit()
330 TxLock = NULL; in txExit()