2 * Copyright (C) International Business Machines Corp., 2000-2005
3 * Portions Copyright (C) Christoph Hellwig, 2001-2002
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License as published by
7 * the Free Software Foundation; either version 2 of the License, or
8 * (at your option) any later version.
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See
13 * the GNU General Public License for more details.
15 * You should have received a copy of the GNU General Public License
16 * along with this program; if not, write to the Free Software
17 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
21 * jfs_txnmgr.c: transaction manager
24 * transaction starts with txBegin() and ends with txCommit()
27 * tlock is acquired at the time of update;
28 * (obviate scan at commit time for xtree and dtree)
29 * tlock and mp points to each other;
30 * (no hashlist for mp -> tlock).
33 * tlock on in-memory inode:
34 * in-place tlock in the in-memory inode itself;
35 * converted to page lock by iWrite() at commit time.
37 * tlock during write()/mmap() under anonymous transaction (tid = 0):
38 * transferred (?) to transaction at commit time.
40 * use the page itself to update allocation maps
41 * (obviate intermediate replication of allocation/deallocation data)
42 * hold on to mp+lock thru update of maps
46 #include <linux/vmalloc.h>
47 #include <linux/completion.h>
48 #include <linux/freezer.h>
49 #include <linux/module.h>
50 #include <linux/moduleparam.h>
51 #include <linux/kthread.h>
52 #include <linux/seq_file.h>
53 #include "jfs_incore.h"
54 #include "jfs_inode.h"
55 #include "jfs_filsys.h"
56 #include "jfs_metapage.h"
57 #include "jfs_dinode.h"
60 #include "jfs_superblock.h"
61 #include "jfs_debug.h"
64 * transaction management structures
67 int freetid
; /* index of a free tid structure */
68 int freelock
; /* index first free lock word */
69 wait_queue_head_t freewait
; /* eventlist of free tblock */
70 wait_queue_head_t freelockwait
; /* eventlist of free tlock */
71 wait_queue_head_t lowlockwait
; /* eventlist of ample tlocks */
72 int tlocksInUse
; /* Number of tlocks in use */
73 spinlock_t LazyLock
; /* synchronize sync_queue & unlock_queue */
74 /* struct tblock *sync_queue; * Transactions waiting for data sync */
75 struct list_head unlock_queue
; /* Txns waiting to be released */
76 struct list_head anon_list
; /* inodes having anonymous txns */
77 struct list_head anon_list2
; /* inodes having anonymous txns
78 that couldn't be sync'ed */
81 int jfs_tlocks_low
; /* Indicates low number of available tlocks */
83 #ifdef CONFIG_JFS_STATISTICS
87 uint txBegin_lockslow
;
90 uint txBeginAnon_barrier
;
91 uint txBeginAnon_lockslow
;
93 uint txLockAlloc_freelock
;
97 static int nTxBlock
= -1; /* number of transaction blocks */
98 module_param(nTxBlock
, int, 0);
99 MODULE_PARM_DESC(nTxBlock
,
100 "Number of transaction blocks (max:65536)");
102 static int nTxLock
= -1; /* number of transaction locks */
103 module_param(nTxLock
, int, 0);
104 MODULE_PARM_DESC(nTxLock
,
105 "Number of transaction locks (max:65536)");
107 struct tblock
*TxBlock
; /* transaction block table */
108 static int TxLockLWM
; /* Low water mark for number of txLocks used */
109 static int TxLockHWM
; /* High water mark for number of txLocks used */
110 static int TxLockVHWM
; /* Very High water mark */
111 struct tlock
*TxLock
; /* transaction lock table */
114 * transaction management lock
116 static DEFINE_SPINLOCK(jfsTxnLock
);
118 #define TXN_LOCK() spin_lock(&jfsTxnLock)
119 #define TXN_UNLOCK() spin_unlock(&jfsTxnLock)
121 #define LAZY_LOCK_INIT() spin_lock_init(&TxAnchor.LazyLock);
122 #define LAZY_LOCK(flags) spin_lock_irqsave(&TxAnchor.LazyLock, flags)
123 #define LAZY_UNLOCK(flags) spin_unlock_irqrestore(&TxAnchor.LazyLock, flags)
125 static DECLARE_WAIT_QUEUE_HEAD(jfs_commit_thread_wait
);
126 static int jfs_commit_thread_waking
;
129 * Retry logic exist outside these macros to protect from spurrious wakeups.
131 static inline void TXN_SLEEP_DROP_LOCK(wait_queue_head_t
* event
)
133 DECLARE_WAITQUEUE(wait
, current
);
135 add_wait_queue(event
, &wait
);
136 set_current_state(TASK_UNINTERRUPTIBLE
);
139 remove_wait_queue(event
, &wait
);
142 #define TXN_SLEEP(event)\
144 TXN_SLEEP_DROP_LOCK(event);\
148 #define TXN_WAKEUP(event) wake_up_all(event)
154 tid_t maxtid
; /* 4: biggest tid ever used */
155 lid_t maxlid
; /* 4: biggest lid ever used */
156 int ntid
; /* 4: # of transactions performed */
157 int nlid
; /* 4: # of tlocks acquired */
158 int waitlock
; /* 4: # of tlock wait */
164 static int diLog(struct jfs_log
* log
, struct tblock
* tblk
, struct lrd
* lrd
,
165 struct tlock
* tlck
, struct commit
* cd
);
166 static int dataLog(struct jfs_log
* log
, struct tblock
* tblk
, struct lrd
* lrd
,
167 struct tlock
* tlck
);
168 static void dtLog(struct jfs_log
* log
, struct tblock
* tblk
, struct lrd
* lrd
,
169 struct tlock
* tlck
);
170 static void mapLog(struct jfs_log
* log
, struct tblock
* tblk
, struct lrd
* lrd
,
171 struct tlock
* tlck
);
172 static void txAllocPMap(struct inode
*ip
, struct maplock
* maplock
,
173 struct tblock
* tblk
);
174 static void txForce(struct tblock
* tblk
);
175 static int txLog(struct jfs_log
* log
, struct tblock
* tblk
,
177 static void txUpdateMap(struct tblock
* tblk
);
178 static void txRelease(struct tblock
* tblk
);
179 static void xtLog(struct jfs_log
* log
, struct tblock
* tblk
, struct lrd
* lrd
,
180 struct tlock
* tlck
);
181 static void LogSyncRelease(struct metapage
* mp
);
184 * transaction block/lock management
185 * ---------------------------------
189 * Get a transaction lock from the free list. If the number in use is
190 * greater than the high water mark, wake up the sync daemon. This should
191 * free some anonymous transaction locks. (TXN_LOCK must be held.)
193 static lid_t
txLockAlloc(void)
197 INCREMENT(TxStat
.txLockAlloc
);
198 if (!TxAnchor
.freelock
) {
199 INCREMENT(TxStat
.txLockAlloc_freelock
);
202 while (!(lid
= TxAnchor
.freelock
))
203 TXN_SLEEP(&TxAnchor
.freelockwait
);
204 TxAnchor
.freelock
= TxLock
[lid
].next
;
205 HIGHWATERMARK(stattx
.maxlid
, lid
);
206 if ((++TxAnchor
.tlocksInUse
> TxLockHWM
) && (jfs_tlocks_low
== 0)) {
207 jfs_info("txLockAlloc tlocks low");
209 wake_up_process(jfsSyncThread
);
215 static void txLockFree(lid_t lid
)
218 TxLock
[lid
].next
= TxAnchor
.freelock
;
219 TxAnchor
.freelock
= lid
;
220 TxAnchor
.tlocksInUse
--;
221 if (jfs_tlocks_low
&& (TxAnchor
.tlocksInUse
< TxLockLWM
)) {
222 jfs_info("txLockFree jfs_tlocks_low no more");
224 TXN_WAKEUP(&TxAnchor
.lowlockwait
);
226 TXN_WAKEUP(&TxAnchor
.freelockwait
);
232 * FUNCTION: initialize transaction management structures
236 * serialization: single thread at jfs_init()
243 /* Set defaults for nTxLock and nTxBlock if unset */
246 if (nTxBlock
== -1) {
247 /* Base default on memory size */
249 if (si
.totalram
> (256 * 1024)) /* 1 GB */
252 nTxLock
= si
.totalram
>> 2;
253 } else if (nTxBlock
> (8 * 1024))
256 nTxLock
= nTxBlock
<< 3;
259 nTxBlock
= nTxLock
>> 3;
261 /* Verify tunable parameters */
263 nTxBlock
= 16; /* No one should set it this low */
264 if (nTxBlock
> 65536)
267 nTxLock
= 256; /* No one should set it this low */
271 printk(KERN_INFO
"JFS: nTxBlock = %d, nTxLock = %d\n",
274 * initialize transaction block (tblock) table
276 * transaction id (tid) = tblock index
277 * tid = 0 is reserved.
279 TxLockLWM
= (nTxLock
* 4) / 10;
280 TxLockHWM
= (nTxLock
* 7) / 10;
281 TxLockVHWM
= (nTxLock
* 8) / 10;
283 size
= sizeof(struct tblock
) * nTxBlock
;
284 TxBlock
= vmalloc(size
);
288 for (k
= 1; k
< nTxBlock
- 1; k
++) {
289 TxBlock
[k
].next
= k
+ 1;
290 init_waitqueue_head(&TxBlock
[k
].gcwait
);
291 init_waitqueue_head(&TxBlock
[k
].waitor
);
294 init_waitqueue_head(&TxBlock
[k
].gcwait
);
295 init_waitqueue_head(&TxBlock
[k
].waitor
);
297 TxAnchor
.freetid
= 1;
298 init_waitqueue_head(&TxAnchor
.freewait
);
300 stattx
.maxtid
= 1; /* statistics */
303 * initialize transaction lock (tlock) table
305 * transaction lock id = tlock index
306 * tlock id = 0 is reserved.
308 size
= sizeof(struct tlock
) * nTxLock
;
309 TxLock
= vmalloc(size
);
310 if (TxLock
== NULL
) {
315 /* initialize tlock table */
316 for (k
= 1; k
< nTxLock
- 1; k
++)
317 TxLock
[k
].next
= k
+ 1;
319 init_waitqueue_head(&TxAnchor
.freelockwait
);
320 init_waitqueue_head(&TxAnchor
.lowlockwait
);
322 TxAnchor
.freelock
= 1;
323 TxAnchor
.tlocksInUse
= 0;
324 INIT_LIST_HEAD(&TxAnchor
.anon_list
);
325 INIT_LIST_HEAD(&TxAnchor
.anon_list2
);
328 INIT_LIST_HEAD(&TxAnchor
.unlock_queue
);
330 stattx
.maxlid
= 1; /* statistics */
338 * FUNCTION: clean up when module is unloaded
351 * FUNCTION: start a transaction.
353 * PARAMETER: sb - superblock
354 * flag - force for nested tx;
356 * RETURN: tid - transaction id
358 * note: flag force allows to start tx for nested tx
359 * to prevent deadlock on logsync barrier;
361 tid_t
txBegin(struct super_block
*sb
, int flag
)
367 jfs_info("txBegin: flag = 0x%x", flag
);
368 log
= JFS_SBI(sb
)->log
;
372 INCREMENT(TxStat
.txBegin
);
375 if (!(flag
& COMMIT_FORCE
)) {
377 * synchronize with logsync barrier
379 if (test_bit(log_SYNCBARRIER
, &log
->flag
) ||
380 test_bit(log_QUIESCE
, &log
->flag
)) {
381 INCREMENT(TxStat
.txBegin_barrier
);
382 TXN_SLEEP(&log
->syncwait
);
388 * Don't begin transaction if we're getting starved for tlocks
389 * unless COMMIT_FORCE or COMMIT_INODE (which may ultimately
392 if (TxAnchor
.tlocksInUse
> TxLockVHWM
) {
393 INCREMENT(TxStat
.txBegin_lockslow
);
394 TXN_SLEEP(&TxAnchor
.lowlockwait
);
400 * allocate transaction id/block
402 if ((t
= TxAnchor
.freetid
) == 0) {
403 jfs_info("txBegin: waiting for free tid");
404 INCREMENT(TxStat
.txBegin_freetid
);
405 TXN_SLEEP(&TxAnchor
.freewait
);
409 tblk
= tid_to_tblock(t
);
411 if ((tblk
->next
== 0) && !(flag
& COMMIT_FORCE
)) {
412 /* Don't let a non-forced transaction take the last tblk */
413 jfs_info("txBegin: waiting for free tid");
414 INCREMENT(TxStat
.txBegin_freetid
);
415 TXN_SLEEP(&TxAnchor
.freewait
);
419 TxAnchor
.freetid
= tblk
->next
;
422 * initialize transaction
426 * We can't zero the whole thing or we screw up another thread being
427 * awakened after sleeping on tblk->waitor
429 * memset(tblk, 0, sizeof(struct tblock));
431 tblk
->next
= tblk
->last
= tblk
->xflag
= tblk
->flag
= tblk
->lsn
= 0;
435 tblk
->logtid
= log
->logtid
;
439 HIGHWATERMARK(stattx
.maxtid
, t
); /* statistics */
440 INCREMENT(stattx
.ntid
); /* statistics */
444 jfs_info("txBegin: returning tid = %d", t
);
450 * NAME: txBeginAnon()
452 * FUNCTION: start an anonymous transaction.
453 * Blocks if logsync or available tlocks are low to prevent
454 * anonymous tlocks from depleting supply.
456 * PARAMETER: sb - superblock
460 void txBeginAnon(struct super_block
*sb
)
464 log
= JFS_SBI(sb
)->log
;
467 INCREMENT(TxStat
.txBeginAnon
);
471 * synchronize with logsync barrier
473 if (test_bit(log_SYNCBARRIER
, &log
->flag
) ||
474 test_bit(log_QUIESCE
, &log
->flag
)) {
475 INCREMENT(TxStat
.txBeginAnon_barrier
);
476 TXN_SLEEP(&log
->syncwait
);
481 * Don't begin transaction if we're getting starved for tlocks
483 if (TxAnchor
.tlocksInUse
> TxLockVHWM
) {
484 INCREMENT(TxStat
.txBeginAnon_lockslow
);
485 TXN_SLEEP(&TxAnchor
.lowlockwait
);
494 * function: free specified transaction block.
496 * logsync barrier processing:
500 void txEnd(tid_t tid
)
502 struct tblock
*tblk
= tid_to_tblock(tid
);
505 jfs_info("txEnd: tid = %d", tid
);
509 * wakeup transactions waiting on the page locked
510 * by the current transaction
512 TXN_WAKEUP(&tblk
->waitor
);
514 log
= JFS_SBI(tblk
->sb
)->log
;
517 * Lazy commit thread can't free this guy until we mark it UNLOCKED,
518 * otherwise, we would be left with a transaction that may have been
521 * Lazy commit thread will turn off tblkGC_LAZY before calling this
524 if (tblk
->flag
& tblkGC_LAZY
) {
525 jfs_info("txEnd called w/lazy tid: %d, tblk = 0x%p", tid
, tblk
);
528 spin_lock_irq(&log
->gclock
); // LOGGC_LOCK
529 tblk
->flag
|= tblkGC_UNLOCKED
;
530 spin_unlock_irq(&log
->gclock
); // LOGGC_UNLOCK
534 jfs_info("txEnd: tid: %d, tblk = 0x%p", tid
, tblk
);
536 assert(tblk
->next
== 0);
539 * insert tblock back on freelist
541 tblk
->next
= TxAnchor
.freetid
;
542 TxAnchor
.freetid
= tid
;
545 * mark the tblock not active
547 if (--log
->active
== 0) {
548 clear_bit(log_FLUSH
, &log
->flag
);
551 * synchronize with logsync barrier
553 if (test_bit(log_SYNCBARRIER
, &log
->flag
)) {
556 /* write dirty metadata & forward log syncpt */
559 jfs_info("log barrier off: 0x%x", log
->lsn
);
561 /* enable new transactions start */
562 clear_bit(log_SYNCBARRIER
, &log
->flag
);
564 /* wakeup all waitors for logsync barrier */
565 TXN_WAKEUP(&log
->syncwait
);
574 * wakeup all waitors for a free tblock
576 TXN_WAKEUP(&TxAnchor
.freewait
);
582 * function: acquire a transaction lock on the specified <mp>
586 * return: transaction lock id
590 struct tlock
*txLock(tid_t tid
, struct inode
*ip
, struct metapage
* mp
,
593 struct jfs_inode_info
*jfs_ip
= JFS_IP(ip
);
598 struct xtlock
*xtlck
;
599 struct linelock
*linelock
;
605 if (S_ISDIR(ip
->i_mode
) && (type
& tlckXTREE
) &&
606 !(mp
->xflag
& COMMIT_PAGE
)) {
608 * Directory inode is special. It can have both an xtree tlock
609 * and a dtree tlock associated with it.
616 /* is page not locked by a transaction ? */
620 jfs_info("txLock: tid:%d ip:0x%p mp:0x%p lid:%d", tid
, ip
, mp
, lid
);
622 /* is page locked by the requester transaction ? */
623 tlck
= lid_to_tlock(lid
);
624 if ((xtid
= tlck
->tid
) == tid
) {
630 * is page locked by anonymous transaction/lock ?
632 * (page update without transaction (i.e., file write) is
633 * locked under anonymous transaction tid = 0:
634 * anonymous tlocks maintained on anonymous tlock list of
635 * the inode of the page and available to all anonymous
636 * transactions until txCommit() time at which point
637 * they are transferred to the transaction tlock list of
638 * the committing transaction of the inode)
643 tblk
= tid_to_tblock(tid
);
645 * The order of the tlocks in the transaction is important
646 * (during truncate, child xtree pages must be freed before
647 * parent's tlocks change the working map).
648 * Take tlock off anonymous list and add to tail of
651 * Note: We really need to get rid of the tid & lid and
652 * use list_head's. This code is getting UGLY!
654 if (jfs_ip
->atlhead
== lid
) {
655 if (jfs_ip
->atltail
== lid
) {
656 /* only anonymous txn.
657 * Remove from anon_list
660 list_del_init(&jfs_ip
->anon_inode_list
);
663 jfs_ip
->atlhead
= tlck
->next
;
666 for (last
= jfs_ip
->atlhead
;
667 lid_to_tlock(last
)->next
!= lid
;
668 last
= lid_to_tlock(last
)->next
) {
671 lid_to_tlock(last
)->next
= tlck
->next
;
672 if (jfs_ip
->atltail
== lid
)
673 jfs_ip
->atltail
= last
;
676 /* insert the tlock at tail of transaction tlock list */
679 lid_to_tlock(tblk
->last
)->next
= lid
;
695 tlck
= lid_to_tlock(lid
);
704 /* mark tlock for meta-data page */
705 if (mp
->xflag
& COMMIT_PAGE
) {
707 tlck
->flag
= tlckPAGELOCK
;
709 /* mark the page dirty and nohomeok */
710 metapage_nohomeok(mp
);
712 jfs_info("locking mp = 0x%p, nohomeok = %d tid = %d tlck = 0x%p",
713 mp
, mp
->nohomeok
, tid
, tlck
);
715 /* if anonymous transaction, and buffer is on the group
716 * commit synclist, mark inode to show this. This will
717 * prevent the buffer from being marked nohomeok for too
720 if ((tid
== 0) && mp
->lsn
)
721 set_cflag(COMMIT_Synclist
, ip
);
723 /* mark tlock for in-memory inode */
725 tlck
->flag
= tlckINODELOCK
;
727 if (S_ISDIR(ip
->i_mode
))
728 tlck
->flag
|= tlckDIRECTORY
;
732 /* bind the tlock and the page */
741 * enqueue transaction lock to transaction/inode
743 /* insert the tlock at tail of transaction tlock list */
745 tblk
= tid_to_tblock(tid
);
747 lid_to_tlock(tblk
->last
)->next
= lid
;
753 /* anonymous transaction:
754 * insert the tlock at head of inode anonymous tlock list
757 tlck
->next
= jfs_ip
->atlhead
;
758 jfs_ip
->atlhead
= lid
;
759 if (tlck
->next
== 0) {
760 /* This inode's first anonymous transaction */
761 jfs_ip
->atltail
= lid
;
763 list_add_tail(&jfs_ip
->anon_inode_list
,
764 &TxAnchor
.anon_list
);
769 /* initialize type dependent area for linelock */
770 linelock
= (struct linelock
*) & tlck
->lock
;
772 linelock
->flag
= tlckLINELOCK
;
773 linelock
->maxcnt
= TLOCKSHORT
;
776 switch (type
& tlckTYPE
) {
778 linelock
->l2linesize
= L2DTSLOTSIZE
;
782 linelock
->l2linesize
= L2XTSLOTSIZE
;
784 xtlck
= (struct xtlock
*) linelock
;
785 xtlck
->header
.offset
= 0;
786 xtlck
->header
.length
= 2;
788 if (type
& tlckNEW
) {
789 xtlck
->lwm
.offset
= XTENTRYSTART
;
791 if (mp
->xflag
& COMMIT_PAGE
)
792 p
= (xtpage_t
*) mp
->data
;
794 p
= &jfs_ip
->i_xtroot
;
796 le16_to_cpu(p
->header
.nextindex
);
798 xtlck
->lwm
.length
= 0; /* ! */
799 xtlck
->twm
.offset
= 0;
800 xtlck
->hwm
.offset
= 0;
806 linelock
->l2linesize
= L2INODESLOTSIZE
;
810 linelock
->l2linesize
= L2DATASLOTSIZE
;
814 jfs_err("UFO tlock:0x%p", tlck
);
818 * update tlock vector
826 * page is being locked by another transaction:
829 /* Only locks on ipimap or ipaimap should reach here */
830 /* assert(jfs_ip->fileset == AGGREGATE_I); */
831 if (jfs_ip
->fileset
!= AGGREGATE_I
) {
832 printk(KERN_ERR
"txLock: trying to lock locked page!");
833 print_hex_dump(KERN_ERR
, "ip: ", DUMP_PREFIX_ADDRESS
, 16, 4,
835 print_hex_dump(KERN_ERR
, "mp: ", DUMP_PREFIX_ADDRESS
, 16, 4,
837 print_hex_dump(KERN_ERR
, "Locker's tblock: ",
838 DUMP_PREFIX_ADDRESS
, 16, 4, tid_to_tblock(tid
),
839 sizeof(struct tblock
), 0);
840 print_hex_dump(KERN_ERR
, "Tlock: ", DUMP_PREFIX_ADDRESS
, 16, 4,
841 tlck
, sizeof(*tlck
), 0);
844 INCREMENT(stattx
.waitlock
); /* statistics */
846 release_metapage(mp
);
848 xtid
= tlck
->tid
; /* reacquire after dropping TXN_LOCK */
850 jfs_info("txLock: in waitLock, tid = %d, xtid = %d, lid = %d",
853 /* Recheck everything since dropping TXN_LOCK */
854 if (xtid
&& (tlck
->mp
== mp
) && (mp
->lid
== lid
))
855 TXN_SLEEP_DROP_LOCK(&tid_to_tblock(xtid
)->waitor
);
858 jfs_info("txLock: awakened tid = %d, lid = %d", tid
, lid
);
866 * FUNCTION: Release buffers associated with transaction locks, but don't
867 * mark homeok yet. The allows other transactions to modify
868 * buffers, but won't let them go to disk until commit record
869 * actually gets written.
874 * RETURN: Errors from subroutines.
876 static void txRelease(struct tblock
* tblk
)
884 for (lid
= tblk
->next
; lid
; lid
= tlck
->next
) {
885 tlck
= lid_to_tlock(lid
);
886 if ((mp
= tlck
->mp
) != NULL
&&
887 (tlck
->type
& tlckBTROOT
) == 0) {
888 assert(mp
->xflag
& COMMIT_PAGE
);
894 * wakeup transactions waiting on a page locked
895 * by the current transaction
897 TXN_WAKEUP(&tblk
->waitor
);
905 * FUNCTION: Initiates pageout of pages modified by tid in journalled
906 * objects and frees their lockwords.
908 static void txUnlock(struct tblock
* tblk
)
911 struct linelock
*linelock
;
912 lid_t lid
, next
, llid
, k
;
918 jfs_info("txUnlock: tblk = 0x%p", tblk
);
919 log
= JFS_SBI(tblk
->sb
)->log
;
922 * mark page under tlock homeok (its log has been written):
924 for (lid
= tblk
->next
; lid
; lid
= next
) {
925 tlck
= lid_to_tlock(lid
);
928 jfs_info("unlocking lid = %d, tlck = 0x%p", lid
, tlck
);
930 /* unbind page from tlock */
931 if ((mp
= tlck
->mp
) != NULL
&&
932 (tlck
->type
& tlckBTROOT
) == 0) {
933 assert(mp
->xflag
& COMMIT_PAGE
);
939 assert(mp
->nohomeok
> 0);
940 _metapage_homeok(mp
);
942 /* inherit younger/larger clsn */
943 LOGSYNC_LOCK(log
, flags
);
945 logdiff(difft
, tblk
->clsn
, log
);
946 logdiff(diffp
, mp
->clsn
, log
);
948 mp
->clsn
= tblk
->clsn
;
950 mp
->clsn
= tblk
->clsn
;
951 LOGSYNC_UNLOCK(log
, flags
);
953 assert(!(tlck
->flag
& tlckFREEPAGE
));
958 /* insert tlock, and linelock(s) of the tlock if any,
959 * at head of freelist
963 llid
= ((struct linelock
*) & tlck
->lock
)->next
;
965 linelock
= (struct linelock
*) lid_to_tlock(llid
);
974 tblk
->next
= tblk
->last
= 0;
977 * remove tblock from logsynclist
978 * (allocation map pages inherited lsn of tblk and
979 * has been inserted in logsync list at txUpdateMap())
982 LOGSYNC_LOCK(log
, flags
);
984 list_del(&tblk
->synclist
);
985 LOGSYNC_UNLOCK(log
, flags
);
992 * function: allocate a transaction lock for freed page/entry;
993 * for freed page, maplock is used as xtlock/dtlock type;
995 struct tlock
*txMaplock(tid_t tid
, struct inode
*ip
, int type
)
997 struct jfs_inode_info
*jfs_ip
= JFS_IP(ip
);
1001 struct maplock
*maplock
;
1008 lid
= txLockAlloc();
1009 tlck
= lid_to_tlock(lid
);
1016 /* bind the tlock and the object */
1017 tlck
->flag
= tlckINODELOCK
;
1018 if (S_ISDIR(ip
->i_mode
))
1019 tlck
->flag
|= tlckDIRECTORY
;
1026 * enqueue transaction lock to transaction/inode
1028 /* insert the tlock at tail of transaction tlock list */
1030 tblk
= tid_to_tblock(tid
);
1032 lid_to_tlock(tblk
->last
)->next
= lid
;
1038 /* anonymous transaction:
1039 * insert the tlock at head of inode anonymous tlock list
1042 tlck
->next
= jfs_ip
->atlhead
;
1043 jfs_ip
->atlhead
= lid
;
1044 if (tlck
->next
== 0) {
1045 /* This inode's first anonymous transaction */
1046 jfs_ip
->atltail
= lid
;
1047 list_add_tail(&jfs_ip
->anon_inode_list
,
1048 &TxAnchor
.anon_list
);
1054 /* initialize type dependent area for maplock */
1055 maplock
= (struct maplock
*) & tlck
->lock
;
1057 maplock
->maxcnt
= 0;
1066 * function: allocate a transaction lock for log vector list
1068 struct linelock
*txLinelock(struct linelock
* tlock
)
1072 struct linelock
*linelock
;
1076 /* allocate a TxLock structure */
1077 lid
= txLockAlloc();
1078 tlck
= lid_to_tlock(lid
);
1082 /* initialize linelock */
1083 linelock
= (struct linelock
*) tlck
;
1085 linelock
->flag
= tlckLINELOCK
;
1086 linelock
->maxcnt
= TLOCKLONG
;
1087 linelock
->index
= 0;
1088 if (tlck
->flag
& tlckDIRECTORY
)
1089 linelock
->flag
|= tlckDIRECTORY
;
1091 /* append linelock after tlock */
1092 linelock
->next
= tlock
->next
;
1099 * transaction commit management
1100 * -----------------------------
1106 * FUNCTION: commit the changes to the objects specified in
1107 * clist. For journalled segments only the
1108 * changes of the caller are committed, ie by tid.
1109 * for non-journalled segments the data are flushed to
1110 * disk and then the change to the disk inode and indirect
1111 * blocks committed (so blocks newly allocated to the
1112 * segment will be made a part of the segment atomically).
1114 * all of the segments specified in clist must be in
1115 * one file system. no more than 6 segments are needed
1116 * to handle all unix svcs.
1118 * if the i_nlink field (i.e. disk inode link count)
1119 * is zero, and the type of inode is a regular file or
1120 * directory, or symbolic link , the inode is truncated
1121 * to zero length. the truncation is committed but the
1122 * VM resources are unaffected until it is closed (see
1130 * on entry the inode lock on each segment is assumed
1135 int txCommit(tid_t tid
, /* transaction identifier */
1136 int nip
, /* number of inodes to commit */
1137 struct inode
**iplist
, /* list of inode to commit */
1142 struct jfs_log
*log
;
1143 struct tblock
*tblk
;
1146 struct jfs_inode_info
*jfs_ip
;
1149 struct super_block
*sb
;
1151 jfs_info("txCommit, tid = %d, flag = %d", tid
, flag
);
1152 /* is read-only file system ? */
1153 if (isReadOnly(iplist
[0])) {
1158 sb
= cd
.sb
= iplist
[0]->i_sb
;
1162 tid
= txBegin(sb
, 0);
1163 tblk
= tid_to_tblock(tid
);
1166 * initialize commit structure
1168 log
= JFS_SBI(sb
)->log
;
1171 /* initialize log record descriptor in commit */
1173 lrd
->logtid
= cpu_to_le32(tblk
->logtid
);
1176 tblk
->xflag
|= flag
;
1178 if ((flag
& (COMMIT_FORCE
| COMMIT_SYNC
)) == 0)
1179 tblk
->xflag
|= COMMIT_LAZY
;
1181 * prepare non-journaled objects for commit
1183 * flush data pages of non-journaled file
1184 * to prevent the file getting non-initialized disk blocks
1192 * acquire transaction lock on (on-disk) inodes
1194 * update on-disk inode from in-memory inode
1195 * acquiring transaction locks for AFTER records
1196 * on the on-disk inode of file object
1198 * sort the inodes array by inode number in descending order
1199 * to prevent deadlock when acquiring transaction lock
1200 * of on-disk inodes on multiple on-disk inode pages by
1201 * multiple concurrent transactions
1203 for (k
= 0; k
< cd
.nip
; k
++) {
1204 top
= (cd
.iplist
[k
])->i_ino
;
1205 for (n
= k
+ 1; n
< cd
.nip
; n
++) {
1207 if (ip
->i_ino
> top
) {
1209 cd
.iplist
[n
] = cd
.iplist
[k
];
1215 jfs_ip
= JFS_IP(ip
);
1218 * BUGBUG - This code has temporarily been removed. The
1219 * intent is to ensure that any file data is written before
1220 * the metadata is committed to the journal. This prevents
1221 * uninitialized data from appearing in a file after the
1222 * journal has been replayed. (The uninitialized data
1223 * could be sensitive data removed by another user.)
1225 * The problem now is that we are holding the IWRITELOCK
1226 * on the inode, and calling filemap_fdatawrite on an
1227 * unmapped page will cause a deadlock in jfs_get_block.
1229 * The long term solution is to pare down the use of
1230 * IWRITELOCK. We are currently holding it too long.
1231 * We could also be smarter about which data pages need
1232 * to be written before the transaction is committed and
1233 * when we don't need to worry about it at all.
1235 * if ((!S_ISDIR(ip->i_mode))
1236 * && (tblk->flag & COMMIT_DELETE) == 0)
1237 * filemap_write_and_wait(ip->i_mapping);
1241 * Mark inode as not dirty. It will still be on the dirty
1242 * inode list, but we'll know not to commit it again unless
1243 * it gets marked dirty again
1245 clear_cflag(COMMIT_Dirty
, ip
);
1247 /* inherit anonymous tlock(s) of inode */
1248 if (jfs_ip
->atlhead
) {
1249 lid_to_tlock(jfs_ip
->atltail
)->next
= tblk
->next
;
1250 tblk
->next
= jfs_ip
->atlhead
;
1252 tblk
->last
= jfs_ip
->atltail
;
1253 jfs_ip
->atlhead
= jfs_ip
->atltail
= 0;
1255 list_del_init(&jfs_ip
->anon_inode_list
);
1260 * acquire transaction lock on on-disk inode page
1261 * (become first tlock of the tblk's tlock list)
1263 if (((rc
= diWrite(tid
, ip
))))
1268 * write log records from transaction locks
1270 * txUpdateMap() resets XAD_NEW in XAD.
1272 if ((rc
= txLog(log
, tblk
, &cd
)))
1276 * Ensure that inode isn't reused before
1277 * lazy commit thread finishes processing
1279 if (tblk
->xflag
& COMMIT_DELETE
) {
1282 * Avoid a rare deadlock
1284 * If the inode is locked, we may be blocked in
1285 * jfs_commit_inode. If so, we don't want the
1286 * lazy_commit thread doing the last iput() on the inode
1287 * since that may block on the locked inode. Instead,
1288 * commit the transaction synchronously, so the last iput
1289 * will be done by the calling thread (or later)
1292 * I believe this code is no longer needed. Splitting I_LOCK
1293 * into two bits, I_NEW and I_SYNC should prevent this
1294 * deadlock as well. But since I don't have a JFS testload
1295 * to verify this, only a trivial s/I_LOCK/I_SYNC/ was done.
1298 if (tblk
->u
.ip
->i_state
& I_SYNC
)
1299 tblk
->xflag
&= ~COMMIT_LAZY
;
1302 ASSERT((!(tblk
->xflag
& COMMIT_DELETE
)) ||
1303 ((tblk
->u
.ip
->i_nlink
== 0) &&
1304 !test_cflag(COMMIT_Nolink
, tblk
->u
.ip
)));
1307 * write COMMIT log record
1309 lrd
->type
= cpu_to_le16(LOG_COMMIT
);
1311 lmLog(log
, tblk
, lrd
, NULL
);
1313 lmGroupCommit(log
, tblk
);
1316 * - transaction is now committed -
1320 * force pages in careful update
1321 * (imap addressing structure update)
1323 if (flag
& COMMIT_FORCE
)
1327 * update allocation map.
1329 * update inode allocation map and inode:
1330 * free pager lock on memory object of inode if any.
1331 * update block allocation map.
1333 * txUpdateMap() resets XAD_NEW in XAD.
1335 if (tblk
->xflag
& COMMIT_FORCE
)
1339 * free transaction locks and pageout/free pages
1343 if ((tblk
->flag
& tblkGC_LAZY
) == 0)
1348 * reset in-memory object state
1350 for (k
= 0; k
< cd
.nip
; k
++) {
1352 jfs_ip
= JFS_IP(ip
);
1355 * reset in-memory inode state
1366 jfs_info("txCommit: tid = %d, returning %d", tid
, rc
);
1373 * FUNCTION: Writes AFTER log records for all lines modified
1374 * by tid for segments specified by inodes in comdata.
1375 * Code assumes only WRITELOCKS are recorded in lockwords.
1381 static int txLog(struct jfs_log
* log
, struct tblock
* tblk
, struct commit
* cd
)
1387 struct lrd
*lrd
= &cd
->lrd
;
1390 * write log record(s) for each tlock of transaction,
1392 for (lid
= tblk
->next
; lid
; lid
= tlck
->next
) {
1393 tlck
= lid_to_tlock(lid
);
1395 tlck
->flag
|= tlckLOG
;
1397 /* initialize lrd common */
1399 lrd
->aggregate
= cpu_to_le32(JFS_SBI(ip
->i_sb
)->aggregate
);
1400 lrd
->log
.redopage
.fileset
= cpu_to_le32(JFS_IP(ip
)->fileset
);
1401 lrd
->log
.redopage
.inode
= cpu_to_le32(ip
->i_ino
);
1403 /* write log record of page from the tlock */
1404 switch (tlck
->type
& tlckTYPE
) {
1406 xtLog(log
, tblk
, lrd
, tlck
);
1410 dtLog(log
, tblk
, lrd
, tlck
);
1414 diLog(log
, tblk
, lrd
, tlck
, cd
);
1418 mapLog(log
, tblk
, lrd
, tlck
);
1422 dataLog(log
, tblk
, lrd
, tlck
);
1426 jfs_err("UFO tlock:0x%p", tlck
);
1436 * function: log inode tlock and format maplock to update bmap;
1438 static int diLog(struct jfs_log
* log
, struct tblock
* tblk
, struct lrd
* lrd
,
1439 struct tlock
* tlck
, struct commit
* cd
)
1442 struct metapage
*mp
;
1444 struct pxd_lock
*pxdlock
;
1448 /* initialize as REDOPAGE record format */
1449 lrd
->log
.redopage
.type
= cpu_to_le16(LOG_INODE
);
1450 lrd
->log
.redopage
.l2linesize
= cpu_to_le16(L2INODESLOTSIZE
);
1452 pxd
= &lrd
->log
.redopage
.pxd
;
1457 if (tlck
->type
& tlckENTRY
) {
1458 /* log after-image for logredo(): */
1459 lrd
->type
= cpu_to_le16(LOG_REDOPAGE
);
1460 PXDaddress(pxd
, mp
->index
);
1462 mp
->logical_size
>> tblk
->sb
->s_blocksize_bits
);
1463 lrd
->backchain
= cpu_to_le32(lmLog(log
, tblk
, lrd
, tlck
));
1465 /* mark page as homeward bound */
1466 tlck
->flag
|= tlckWRITEPAGE
;
1467 } else if (tlck
->type
& tlckFREE
) {
1471 * (pages of the freed inode extent have been invalidated and
1472 * a maplock for free of the extent has been formatted at
1475 * the tlock had been acquired on the inode allocation map page
1476 * (iag) that specifies the freed extent, even though the map
1477 * page is not itself logged, to prevent pageout of the map
1478 * page before the log;
1481 /* log LOG_NOREDOINOEXT of the freed inode extent for
1482 * logredo() to start NoRedoPage filters, and to update
1483 * imap and bmap for free of the extent;
1485 lrd
->type
= cpu_to_le16(LOG_NOREDOINOEXT
);
1487 * For the LOG_NOREDOINOEXT record, we need
1488 * to pass the IAG number and inode extent
1489 * index (within that IAG) from which the
1490 * the extent being released. These have been
1491 * passed to us in the iplist[1] and iplist[2].
1493 lrd
->log
.noredoinoext
.iagnum
=
1494 cpu_to_le32((u32
) (size_t) cd
->iplist
[1]);
1495 lrd
->log
.noredoinoext
.inoext_idx
=
1496 cpu_to_le32((u32
) (size_t) cd
->iplist
[2]);
1498 pxdlock
= (struct pxd_lock
*) & tlck
->lock
;
1499 *pxd
= pxdlock
->pxd
;
1500 lrd
->backchain
= cpu_to_le32(lmLog(log
, tblk
, lrd
, NULL
));
1503 tlck
->flag
|= tlckUPDATEMAP
;
1505 /* mark page as homeward bound */
1506 tlck
->flag
|= tlckWRITEPAGE
;
1508 jfs_err("diLog: UFO type tlck:0x%p", tlck
);
1511 * alloc/free external EA extent
1513 * a maplock for txUpdateMap() to update bPWMAP for alloc/free
1514 * of the extent has been formatted at txLock() time;
1517 assert(tlck
->type
& tlckEA
);
1519 /* log LOG_UPDATEMAP for logredo() to update bmap for
1520 * alloc of new (and free of old) external EA extent;
1522 lrd
->type
= cpu_to_le16(LOG_UPDATEMAP
);
1523 pxdlock
= (struct pxd_lock
*) & tlck
->lock
;
1524 nlock
= pxdlock
->index
;
1525 for (i
= 0; i
< nlock
; i
++, pxdlock
++) {
1526 if (pxdlock
->flag
& mlckALLOCPXD
)
1527 lrd
->log
.updatemap
.type
=
1528 cpu_to_le16(LOG_ALLOCPXD
);
1530 lrd
->log
.updatemap
.type
=
1531 cpu_to_le16(LOG_FREEPXD
);
1532 lrd
->log
.updatemap
.nxd
= cpu_to_le16(1);
1533 lrd
->log
.updatemap
.pxd
= pxdlock
->pxd
;
1535 cpu_to_le32(lmLog(log
, tblk
, lrd
, NULL
));
1539 tlck
->flag
|= tlckUPDATEMAP
;
1541 #endif /* _JFS_WIP */
1549 * function: log data tlock
1551 static int dataLog(struct jfs_log
* log
, struct tblock
* tblk
, struct lrd
* lrd
,
1552 struct tlock
* tlck
)
1554 struct metapage
*mp
;
1559 /* initialize as REDOPAGE record format */
1560 lrd
->log
.redopage
.type
= cpu_to_le16(LOG_DATA
);
1561 lrd
->log
.redopage
.l2linesize
= cpu_to_le16(L2DATASLOTSIZE
);
1563 pxd
= &lrd
->log
.redopage
.pxd
;
1565 /* log after-image for logredo(): */
1566 lrd
->type
= cpu_to_le16(LOG_REDOPAGE
);
1568 if (jfs_dirtable_inline(tlck
->ip
)) {
1570 * The table has been truncated, we've must have deleted
1571 * the last entry, so don't bother logging this
1575 metapage_homeok(mp
);
1576 discard_metapage(mp
);
1581 PXDaddress(pxd
, mp
->index
);
1582 PXDlength(pxd
, mp
->logical_size
>> tblk
->sb
->s_blocksize_bits
);
1584 lrd
->backchain
= cpu_to_le32(lmLog(log
, tblk
, lrd
, tlck
));
1586 /* mark page as homeward bound */
1587 tlck
->flag
|= tlckWRITEPAGE
;
1595 * function: log dtree tlock and format maplock to update bmap;
1597 static void dtLog(struct jfs_log
* log
, struct tblock
* tblk
, struct lrd
* lrd
,
1598 struct tlock
* tlck
)
1600 struct metapage
*mp
;
1601 struct pxd_lock
*pxdlock
;
1606 /* initialize as REDOPAGE/NOREDOPAGE record format */
1607 lrd
->log
.redopage
.type
= cpu_to_le16(LOG_DTREE
);
1608 lrd
->log
.redopage
.l2linesize
= cpu_to_le16(L2DTSLOTSIZE
);
1610 pxd
= &lrd
->log
.redopage
.pxd
;
1612 if (tlck
->type
& tlckBTROOT
)
1613 lrd
->log
.redopage
.type
|= cpu_to_le16(LOG_BTROOT
);
1616 * page extension via relocation: entry insertion;
1617 * page extension in-place: entry insertion;
1618 * new right page from page split, reinitialized in-line
1619 * root from root page split: entry insertion;
1621 if (tlck
->type
& (tlckNEW
| tlckEXTEND
)) {
1622 /* log after-image of the new page for logredo():
1623 * mark log (LOG_NEW) for logredo() to initialize
1624 * freelist and update bmap for alloc of the new page;
1626 lrd
->type
= cpu_to_le16(LOG_REDOPAGE
);
1627 if (tlck
->type
& tlckEXTEND
)
1628 lrd
->log
.redopage
.type
|= cpu_to_le16(LOG_EXTEND
);
1630 lrd
->log
.redopage
.type
|= cpu_to_le16(LOG_NEW
);
1631 PXDaddress(pxd
, mp
->index
);
1633 mp
->logical_size
>> tblk
->sb
->s_blocksize_bits
);
1634 lrd
->backchain
= cpu_to_le32(lmLog(log
, tblk
, lrd
, tlck
));
1636 /* format a maplock for txUpdateMap() to update bPMAP for
1637 * alloc of the new page;
1639 if (tlck
->type
& tlckBTROOT
)
1641 tlck
->flag
|= tlckUPDATEMAP
;
1642 pxdlock
= (struct pxd_lock
*) & tlck
->lock
;
1643 pxdlock
->flag
= mlckALLOCPXD
;
1644 pxdlock
->pxd
= *pxd
;
1648 /* mark page as homeward bound */
1649 tlck
->flag
|= tlckWRITEPAGE
;
1654 * entry insertion/deletion,
1655 * sibling page link update (old right page before split);
1657 if (tlck
->type
& (tlckENTRY
| tlckRELINK
)) {
1658 /* log after-image for logredo(): */
1659 lrd
->type
= cpu_to_le16(LOG_REDOPAGE
);
1660 PXDaddress(pxd
, mp
->index
);
1662 mp
->logical_size
>> tblk
->sb
->s_blocksize_bits
);
1663 lrd
->backchain
= cpu_to_le32(lmLog(log
, tblk
, lrd
, tlck
));
1665 /* mark page as homeward bound */
1666 tlck
->flag
|= tlckWRITEPAGE
;
1671 * page deletion: page has been invalidated
1672 * page relocation: source extent
1674 * a maplock for free of the page has been formatted
1675 * at txLock() time);
1677 if (tlck
->type
& (tlckFREE
| tlckRELOCATE
)) {
1678 /* log LOG_NOREDOPAGE of the deleted page for logredo()
1679 * to start NoRedoPage filter and to update bmap for free
1680 * of the deletd page
1682 lrd
->type
= cpu_to_le16(LOG_NOREDOPAGE
);
1683 pxdlock
= (struct pxd_lock
*) & tlck
->lock
;
1684 *pxd
= pxdlock
->pxd
;
1685 lrd
->backchain
= cpu_to_le32(lmLog(log
, tblk
, lrd
, NULL
));
1687 /* a maplock for txUpdateMap() for free of the page
1688 * has been formatted at txLock() time;
1690 tlck
->flag
|= tlckUPDATEMAP
;
1698 * function: log xtree tlock and format maplock to update bmap;
1700 static void xtLog(struct jfs_log
* log
, struct tblock
* tblk
, struct lrd
* lrd
,
1701 struct tlock
* tlck
)
1704 struct metapage
*mp
;
1706 struct xtlock
*xtlck
;
1707 struct maplock
*maplock
;
1708 struct xdlistlock
*xadlock
;
1709 struct pxd_lock
*pxdlock
;
1716 /* initialize as REDOPAGE/NOREDOPAGE record format */
1717 lrd
->log
.redopage
.type
= cpu_to_le16(LOG_XTREE
);
1718 lrd
->log
.redopage
.l2linesize
= cpu_to_le16(L2XTSLOTSIZE
);
1720 page_pxd
= &lrd
->log
.redopage
.pxd
;
1722 if (tlck
->type
& tlckBTROOT
) {
1723 lrd
->log
.redopage
.type
|= cpu_to_le16(LOG_BTROOT
);
1724 p
= &JFS_IP(ip
)->i_xtroot
;
1725 if (S_ISDIR(ip
->i_mode
))
1726 lrd
->log
.redopage
.type
|=
1727 cpu_to_le16(LOG_DIR_XTREE
);
1729 p
= (xtpage_t
*) mp
->data
;
1730 next
= le16_to_cpu(p
->header
.nextindex
);
1732 xtlck
= (struct xtlock
*) & tlck
->lock
;
1734 maplock
= (struct maplock
*) & tlck
->lock
;
1735 xadlock
= (struct xdlistlock
*) maplock
;
1738 * entry insertion/extension;
1739 * sibling page link update (old right page before split);
1741 if (tlck
->type
& (tlckNEW
| tlckGROW
| tlckRELINK
)) {
1742 /* log after-image for logredo():
1743 * logredo() will update bmap for alloc of new/extended
1744 * extents (XAD_NEW|XAD_EXTEND) of XAD[lwm:next) from
1745 * after-image of XADlist;
1746 * logredo() resets (XAD_NEW|XAD_EXTEND) flag when
1747 * applying the after-image to the meta-data page.
1749 lrd
->type
= cpu_to_le16(LOG_REDOPAGE
);
1750 PXDaddress(page_pxd
, mp
->index
);
1752 mp
->logical_size
>> tblk
->sb
->s_blocksize_bits
);
1753 lrd
->backchain
= cpu_to_le32(lmLog(log
, tblk
, lrd
, tlck
));
1755 /* format a maplock for txUpdateMap() to update bPMAP
1756 * for alloc of new/extended extents of XAD[lwm:next)
1757 * from the page itself;
1758 * txUpdateMap() resets (XAD_NEW|XAD_EXTEND) flag.
1760 lwm
= xtlck
->lwm
.offset
;
1762 lwm
= XTPAGEMAXSLOT
;
1767 jfs_err("xtLog: lwm > next");
1770 tlck
->flag
|= tlckUPDATEMAP
;
1771 xadlock
->flag
= mlckALLOCXADLIST
;
1772 xadlock
->count
= next
- lwm
;
1773 if ((xadlock
->count
<= 4) && (tblk
->xflag
& COMMIT_LAZY
)) {
1777 * Lazy commit may allow xtree to be modified before
1778 * txUpdateMap runs. Copy xad into linelock to
1779 * preserve correct data.
1781 * We can fit twice as may pxd's as xads in the lock
1783 xadlock
->flag
= mlckALLOCPXDLIST
;
1784 pxd
= xadlock
->xdlist
= &xtlck
->pxdlock
;
1785 for (i
= 0; i
< xadlock
->count
; i
++) {
1786 PXDaddress(pxd
, addressXAD(&p
->xad
[lwm
+ i
]));
1787 PXDlength(pxd
, lengthXAD(&p
->xad
[lwm
+ i
]));
1788 p
->xad
[lwm
+ i
].flag
&=
1789 ~(XAD_NEW
| XAD_EXTENDED
);
1794 * xdlist will point to into inode's xtree, ensure
1795 * that transaction is not committed lazily.
1797 xadlock
->flag
= mlckALLOCXADLIST
;
1798 xadlock
->xdlist
= &p
->xad
[lwm
];
1799 tblk
->xflag
&= ~COMMIT_LAZY
;
1801 jfs_info("xtLog: alloc ip:0x%p mp:0x%p tlck:0x%p lwm:%d count:%d",
1802 tlck
->ip
, mp
, tlck
, lwm
, xadlock
->count
);
1807 /* mark page as homeward bound */
1808 tlck
->flag
|= tlckWRITEPAGE
;
1814 * page deletion: file deletion/truncation (ref. xtTruncate())
1816 * (page will be invalidated after log is written and bmap
1817 * is updated from the page);
1819 if (tlck
->type
& tlckFREE
) {
1820 /* LOG_NOREDOPAGE log for NoRedoPage filter:
1821 * if page free from file delete, NoRedoFile filter from
1822 * inode image of zero link count will subsume NoRedoPage
1823 * filters for each page;
1824 * if page free from file truncattion, write NoRedoPage
1827 * upadte of block allocation map for the page itself:
1828 * if page free from deletion and truncation, LOG_UPDATEMAP
1829 * log for the page itself is generated from processing
1830 * its parent page xad entries;
1832 /* if page free from file truncation, log LOG_NOREDOPAGE
1833 * of the deleted page for logredo() to start NoRedoPage
1834 * filter for the page;
1836 if (tblk
->xflag
& COMMIT_TRUNCATE
) {
1837 /* write NOREDOPAGE for the page */
1838 lrd
->type
= cpu_to_le16(LOG_NOREDOPAGE
);
1839 PXDaddress(page_pxd
, mp
->index
);
1841 mp
->logical_size
>> tblk
->sb
->
1844 cpu_to_le32(lmLog(log
, tblk
, lrd
, NULL
));
1846 if (tlck
->type
& tlckBTROOT
) {
1847 /* Empty xtree must be logged */
1848 lrd
->type
= cpu_to_le16(LOG_REDOPAGE
);
1850 cpu_to_le32(lmLog(log
, tblk
, lrd
, tlck
));
1854 /* init LOG_UPDATEMAP of the freed extents
1855 * XAD[XTENTRYSTART:hwm) from the deleted page itself
1856 * for logredo() to update bmap;
1858 lrd
->type
= cpu_to_le16(LOG_UPDATEMAP
);
1859 lrd
->log
.updatemap
.type
= cpu_to_le16(LOG_FREEXADLIST
);
1860 xtlck
= (struct xtlock
*) & tlck
->lock
;
1861 hwm
= xtlck
->hwm
.offset
;
1862 lrd
->log
.updatemap
.nxd
=
1863 cpu_to_le16(hwm
- XTENTRYSTART
+ 1);
1864 /* reformat linelock for lmLog() */
1865 xtlck
->header
.offset
= XTENTRYSTART
;
1866 xtlck
->header
.length
= hwm
- XTENTRYSTART
+ 1;
1868 lrd
->backchain
= cpu_to_le32(lmLog(log
, tblk
, lrd
, tlck
));
1870 /* format a maplock for txUpdateMap() to update bmap
1871 * to free extents of XAD[XTENTRYSTART:hwm) from the
1872 * deleted page itself;
1874 tlck
->flag
|= tlckUPDATEMAP
;
1875 xadlock
->count
= hwm
- XTENTRYSTART
+ 1;
1876 if ((xadlock
->count
<= 4) && (tblk
->xflag
& COMMIT_LAZY
)) {
1880 * Lazy commit may allow xtree to be modified before
1881 * txUpdateMap runs. Copy xad into linelock to
1882 * preserve correct data.
1884 * We can fit twice as may pxd's as xads in the lock
1886 xadlock
->flag
= mlckFREEPXDLIST
;
1887 pxd
= xadlock
->xdlist
= &xtlck
->pxdlock
;
1888 for (i
= 0; i
< xadlock
->count
; i
++) {
1890 addressXAD(&p
->xad
[XTENTRYSTART
+ i
]));
1892 lengthXAD(&p
->xad
[XTENTRYSTART
+ i
]));
1897 * xdlist will point to into inode's xtree, ensure
1898 * that transaction is not committed lazily.
1900 xadlock
->flag
= mlckFREEXADLIST
;
1901 xadlock
->xdlist
= &p
->xad
[XTENTRYSTART
];
1902 tblk
->xflag
&= ~COMMIT_LAZY
;
1904 jfs_info("xtLog: free ip:0x%p mp:0x%p count:%d lwm:2",
1905 tlck
->ip
, mp
, xadlock
->count
);
1909 /* mark page as invalid */
1910 if (((tblk
->xflag
& COMMIT_PWMAP
) || S_ISDIR(ip
->i_mode
))
1911 && !(tlck
->type
& tlckBTROOT
))
1912 tlck
->flag
|= tlckFREEPAGE
;
1914 else (tblk->xflag & COMMIT_PMAP)
1921 * page/entry truncation: file truncation (ref. xtTruncate())
1923 * |----------+------+------+---------------|
1925 * | | hwm - hwm before truncation
1926 * | next - truncation point
1927 * lwm - lwm before truncation
1930 if (tlck
->type
& tlckTRUNCATE
) {
1931 /* This odd declaration suppresses a bogus gcc warning */
1932 pxd_t pxd
= pxd
; /* truncated extent of xad */
1936 * For truncation the entire linelock may be used, so it would
1937 * be difficult to store xad list in linelock itself.
1938 * Therefore, we'll just force transaction to be committed
1939 * synchronously, so that xtree pages won't be changed before
1942 tblk
->xflag
&= ~COMMIT_LAZY
;
1943 lwm
= xtlck
->lwm
.offset
;
1945 lwm
= XTPAGEMAXSLOT
;
1946 hwm
= xtlck
->hwm
.offset
;
1947 twm
= xtlck
->twm
.offset
;
1952 /* log after-image for logredo():
1954 * logredo() will update bmap for alloc of new/extended
1955 * extents (XAD_NEW|XAD_EXTEND) of XAD[lwm:next) from
1956 * after-image of XADlist;
1957 * logredo() resets (XAD_NEW|XAD_EXTEND) flag when
1958 * applying the after-image to the meta-data page.
1960 lrd
->type
= cpu_to_le16(LOG_REDOPAGE
);
1961 PXDaddress(page_pxd
, mp
->index
);
1963 mp
->logical_size
>> tblk
->sb
->s_blocksize_bits
);
1964 lrd
->backchain
= cpu_to_le32(lmLog(log
, tblk
, lrd
, tlck
));
1967 * truncate entry XAD[twm == next - 1]:
1969 if (twm
== next
- 1) {
1970 /* init LOG_UPDATEMAP for logredo() to update bmap for
1971 * free of truncated delta extent of the truncated
1972 * entry XAD[next - 1]:
1973 * (xtlck->pxdlock = truncated delta extent);
1975 pxdlock
= (struct pxd_lock
*) & xtlck
->pxdlock
;
1976 /* assert(pxdlock->type & tlckTRUNCATE); */
1977 lrd
->type
= cpu_to_le16(LOG_UPDATEMAP
);
1978 lrd
->log
.updatemap
.type
= cpu_to_le16(LOG_FREEPXD
);
1979 lrd
->log
.updatemap
.nxd
= cpu_to_le16(1);
1980 lrd
->log
.updatemap
.pxd
= pxdlock
->pxd
;
1981 pxd
= pxdlock
->pxd
; /* save to format maplock */
1983 cpu_to_le32(lmLog(log
, tblk
, lrd
, NULL
));
1987 * free entries XAD[next:hwm]:
1990 /* init LOG_UPDATEMAP of the freed extents
1991 * XAD[next:hwm] from the deleted page itself
1992 * for logredo() to update bmap;
1994 lrd
->type
= cpu_to_le16(LOG_UPDATEMAP
);
1995 lrd
->log
.updatemap
.type
=
1996 cpu_to_le16(LOG_FREEXADLIST
);
1997 xtlck
= (struct xtlock
*) & tlck
->lock
;
1998 hwm
= xtlck
->hwm
.offset
;
1999 lrd
->log
.updatemap
.nxd
=
2000 cpu_to_le16(hwm
- next
+ 1);
2001 /* reformat linelock for lmLog() */
2002 xtlck
->header
.offset
= next
;
2003 xtlck
->header
.length
= hwm
- next
+ 1;
2006 cpu_to_le32(lmLog(log
, tblk
, lrd
, tlck
));
2010 * format maplock(s) for txUpdateMap() to update bmap
2015 * allocate entries XAD[lwm:next):
2018 /* format a maplock for txUpdateMap() to update bPMAP
2019 * for alloc of new/extended extents of XAD[lwm:next)
2020 * from the page itself;
2021 * txUpdateMap() resets (XAD_NEW|XAD_EXTEND) flag.
2023 tlck
->flag
|= tlckUPDATEMAP
;
2024 xadlock
->flag
= mlckALLOCXADLIST
;
2025 xadlock
->count
= next
- lwm
;
2026 xadlock
->xdlist
= &p
->xad
[lwm
];
2028 jfs_info("xtLog: alloc ip:0x%p mp:0x%p count:%d lwm:%d next:%d",
2029 tlck
->ip
, mp
, xadlock
->count
, lwm
, next
);
2035 * truncate entry XAD[twm == next - 1]:
2037 if (twm
== next
- 1) {
2038 /* format a maplock for txUpdateMap() to update bmap
2039 * to free truncated delta extent of the truncated
2040 * entry XAD[next - 1];
2041 * (xtlck->pxdlock = truncated delta extent);
2043 tlck
->flag
|= tlckUPDATEMAP
;
2044 pxdlock
= (struct pxd_lock
*) xadlock
;
2045 pxdlock
->flag
= mlckFREEPXD
;
2049 jfs_info("xtLog: truncate ip:0x%p mp:0x%p count:%d hwm:%d",
2050 ip
, mp
, pxdlock
->count
, hwm
);
2056 * free entries XAD[next:hwm]:
2059 /* format a maplock for txUpdateMap() to update bmap
2060 * to free extents of XAD[next:hwm] from thedeleted
2063 tlck
->flag
|= tlckUPDATEMAP
;
2064 xadlock
->flag
= mlckFREEXADLIST
;
2065 xadlock
->count
= hwm
- next
+ 1;
2066 xadlock
->xdlist
= &p
->xad
[next
];
2068 jfs_info("xtLog: free ip:0x%p mp:0x%p count:%d next:%d hwm:%d",
2069 tlck
->ip
, mp
, xadlock
->count
, next
, hwm
);
2073 /* mark page as homeward bound */
2074 tlck
->flag
|= tlckWRITEPAGE
;
2082 * function: log from maplock of freed data extents;
2084 static void mapLog(struct jfs_log
* log
, struct tblock
* tblk
, struct lrd
* lrd
,
2085 struct tlock
* tlck
)
2087 struct pxd_lock
*pxdlock
;
2092 * page relocation: free the source page extent
2094 * a maplock for txUpdateMap() for free of the page
2095 * has been formatted at txLock() time saving the src
2096 * relocated page address;
2098 if (tlck
->type
& tlckRELOCATE
) {
2099 /* log LOG_NOREDOPAGE of the old relocated page
2100 * for logredo() to start NoRedoPage filter;
2102 lrd
->type
= cpu_to_le16(LOG_NOREDOPAGE
);
2103 pxdlock
= (struct pxd_lock
*) & tlck
->lock
;
2104 pxd
= &lrd
->log
.redopage
.pxd
;
2105 *pxd
= pxdlock
->pxd
;
2106 lrd
->backchain
= cpu_to_le32(lmLog(log
, tblk
, lrd
, NULL
));
2108 /* (N.B. currently, logredo() does NOT update bmap
2109 * for free of the page itself for (LOG_XTREE|LOG_NOREDOPAGE);
2110 * if page free from relocation, LOG_UPDATEMAP log is
2111 * specifically generated now for logredo()
2112 * to update bmap for free of src relocated page;
2113 * (new flag LOG_RELOCATE may be introduced which will
2114 * inform logredo() to start NORedoPage filter and also
2115 * update block allocation map at the same time, thus
2116 * avoiding an extra log write);
2118 lrd
->type
= cpu_to_le16(LOG_UPDATEMAP
);
2119 lrd
->log
.updatemap
.type
= cpu_to_le16(LOG_FREEPXD
);
2120 lrd
->log
.updatemap
.nxd
= cpu_to_le16(1);
2121 lrd
->log
.updatemap
.pxd
= pxdlock
->pxd
;
2122 lrd
->backchain
= cpu_to_le32(lmLog(log
, tblk
, lrd
, NULL
));
2124 /* a maplock for txUpdateMap() for free of the page
2125 * has been formatted at txLock() time;
2127 tlck
->flag
|= tlckUPDATEMAP
;
2132 * Otherwise it's not a relocate request
2136 /* log LOG_UPDATEMAP for logredo() to update bmap for
2137 * free of truncated/relocated delta extent of the data;
2138 * e.g.: external EA extent, relocated/truncated extent
2139 * from xtTailgate();
2141 lrd
->type
= cpu_to_le16(LOG_UPDATEMAP
);
2142 pxdlock
= (struct pxd_lock
*) & tlck
->lock
;
2143 nlock
= pxdlock
->index
;
2144 for (i
= 0; i
< nlock
; i
++, pxdlock
++) {
2145 if (pxdlock
->flag
& mlckALLOCPXD
)
2146 lrd
->log
.updatemap
.type
=
2147 cpu_to_le16(LOG_ALLOCPXD
);
2149 lrd
->log
.updatemap
.type
=
2150 cpu_to_le16(LOG_FREEPXD
);
2151 lrd
->log
.updatemap
.nxd
= cpu_to_le16(1);
2152 lrd
->log
.updatemap
.pxd
= pxdlock
->pxd
;
2154 cpu_to_le32(lmLog(log
, tblk
, lrd
, NULL
));
2155 jfs_info("mapLog: xaddr:0x%lx xlen:0x%x",
2156 (ulong
) addressPXD(&pxdlock
->pxd
),
2157 lengthPXD(&pxdlock
->pxd
));
2161 tlck
->flag
|= tlckUPDATEMAP
;
2168 * function: acquire maplock for EA/ACL extents or
2169 * set COMMIT_INLINE flag;
2171 void txEA(tid_t tid
, struct inode
*ip
, dxd_t
* oldea
, dxd_t
* newea
)
2173 struct tlock
*tlck
= NULL
;
2174 struct pxd_lock
*maplock
= NULL
, *pxdlock
= NULL
;
2177 * format maplock for alloc of new EA extent
2180 /* Since the newea could be a completely zeroed entry we need to
2181 * check for the two flags which indicate we should actually
2182 * commit new EA data
2184 if (newea
->flag
& DXD_EXTENT
) {
2185 tlck
= txMaplock(tid
, ip
, tlckMAP
);
2186 maplock
= (struct pxd_lock
*) & tlck
->lock
;
2187 pxdlock
= (struct pxd_lock
*) maplock
;
2188 pxdlock
->flag
= mlckALLOCPXD
;
2189 PXDaddress(&pxdlock
->pxd
, addressDXD(newea
));
2190 PXDlength(&pxdlock
->pxd
, lengthDXD(newea
));
2193 } else if (newea
->flag
& DXD_INLINE
) {
2196 set_cflag(COMMIT_Inlineea
, ip
);
2201 * format maplock for free of old EA extent
2203 if (!test_cflag(COMMIT_Nolink
, ip
) && oldea
->flag
& DXD_EXTENT
) {
2205 tlck
= txMaplock(tid
, ip
, tlckMAP
);
2206 maplock
= (struct pxd_lock
*) & tlck
->lock
;
2207 pxdlock
= (struct pxd_lock
*) maplock
;
2210 pxdlock
->flag
= mlckFREEPXD
;
2211 PXDaddress(&pxdlock
->pxd
, addressDXD(oldea
));
2212 PXDlength(&pxdlock
->pxd
, lengthDXD(oldea
));
2220 * function: synchronously write pages locked by transaction
2221 * after txLog() but before txUpdateMap();
2223 static void txForce(struct tblock
* tblk
)
2227 struct metapage
*mp
;
2230 * reverse the order of transaction tlocks in
2231 * careful update order of address index pages
2232 * (right to left, bottom up)
2234 tlck
= lid_to_tlock(tblk
->next
);
2238 tlck
= lid_to_tlock(lid
);
2240 tlck
->next
= tblk
->next
;
2246 * synchronously write the page, and
2247 * hold the page for txUpdateMap();
2249 for (lid
= tblk
->next
; lid
; lid
= next
) {
2250 tlck
= lid_to_tlock(lid
);
2253 if ((mp
= tlck
->mp
) != NULL
&&
2254 (tlck
->type
& tlckBTROOT
) == 0) {
2255 assert(mp
->xflag
& COMMIT_PAGE
);
2257 if (tlck
->flag
& tlckWRITEPAGE
) {
2258 tlck
->flag
&= ~tlckWRITEPAGE
;
2260 /* do not release page to freelist */
2264 * The "right" thing to do here is to
2265 * synchronously write the metadata.
2266 * With the current implementation this
2267 * is hard since write_metapage requires
2268 * us to kunmap & remap the page. If we
2269 * have tlocks pointing into the metadata
2270 * pages, we don't want to do this. I think
2271 * we can get by with synchronously writing
2272 * the pages when they are released.
2274 assert(mp
->nohomeok
);
2275 set_bit(META_dirty
, &mp
->flag
);
2276 set_bit(META_sync
, &mp
->flag
);
2286 * function: update persistent allocation map (and working map
2291 static void txUpdateMap(struct tblock
* tblk
)
2294 struct inode
*ipimap
;
2297 struct maplock
*maplock
;
2298 struct pxd_lock pxdlock
;
2301 struct metapage
*mp
= NULL
;
2303 ipimap
= JFS_SBI(tblk
->sb
)->ipimap
;
2305 maptype
= (tblk
->xflag
& COMMIT_PMAP
) ? COMMIT_PMAP
: COMMIT_PWMAP
;
2309 * update block allocation map
2311 * update allocation state in pmap (and wmap) and
2312 * update lsn of the pmap page;
2315 * scan each tlock/page of transaction for block allocation/free:
2317 * for each tlock/page of transaction, update map.
2318 * ? are there tlock for pmap and pwmap at the same time ?
2320 for (lid
= tblk
->next
; lid
; lid
= tlck
->next
) {
2321 tlck
= lid_to_tlock(lid
);
2323 if ((tlck
->flag
& tlckUPDATEMAP
) == 0)
2326 if (tlck
->flag
& tlckFREEPAGE
) {
2328 * Another thread may attempt to reuse freed space
2329 * immediately, so we want to get rid of the metapage
2330 * before anyone else has a chance to get it.
2331 * Lock metapage, update maps, then invalidate
2335 ASSERT(mp
->xflag
& COMMIT_PAGE
);
2341 * . in-line PXD list:
2342 * . out-of-line XAD list:
2344 maplock
= (struct maplock
*) & tlck
->lock
;
2345 nlock
= maplock
->index
;
2347 for (k
= 0; k
< nlock
; k
++, maplock
++) {
2349 * allocate blocks in persistent map:
2351 * blocks have been allocated from wmap at alloc time;
2353 if (maplock
->flag
& mlckALLOC
) {
2354 txAllocPMap(ipimap
, maplock
, tblk
);
2357 * free blocks in persistent and working map:
2358 * blocks will be freed in pmap and then in wmap;
2360 * ? tblock specifies the PMAP/PWMAP based upon
2363 * free blocks in persistent map:
2364 * blocks will be freed from wmap at last reference
2365 * release of the object for regular files;
2367 * Alway free blocks from both persistent & working
2368 * maps for directories
2370 else { /* (maplock->flag & mlckFREE) */
2372 if (tlck
->flag
& tlckDIRECTORY
)
2373 txFreeMap(ipimap
, maplock
,
2374 tblk
, COMMIT_PWMAP
);
2376 txFreeMap(ipimap
, maplock
,
2380 if (tlck
->flag
& tlckFREEPAGE
) {
2381 if (!(tblk
->flag
& tblkGC_LAZY
)) {
2382 /* This is equivalent to txRelease */
2383 ASSERT(mp
->lid
== lid
);
2386 assert(mp
->nohomeok
== 1);
2387 metapage_homeok(mp
);
2388 discard_metapage(mp
);
2393 * update inode allocation map
2395 * update allocation state in pmap and
2396 * update lsn of the pmap page;
2397 * update in-memory inode flag/state
2399 * unlock mapper/write lock
2401 if (tblk
->xflag
& COMMIT_CREATE
) {
2402 diUpdatePMap(ipimap
, tblk
->ino
, false, tblk
);
2403 /* update persistent block allocation map
2404 * for the allocation of inode extent;
2406 pxdlock
.flag
= mlckALLOCPXD
;
2407 pxdlock
.pxd
= tblk
->u
.ixpxd
;
2409 txAllocPMap(ipimap
, (struct maplock
*) & pxdlock
, tblk
);
2410 } else if (tblk
->xflag
& COMMIT_DELETE
) {
2412 diUpdatePMap(ipimap
, ip
->i_ino
, true, tblk
);
2420 * function: allocate from persistent map;
2429 * allocate from persistent map;
2430 * free from persistent map;
2431 * (e.g., tmp file - free from working map at releae
2432 * of last reference);
2433 * free from persistent and working map;
2435 * lsn - log sequence number;
2437 static void txAllocPMap(struct inode
*ip
, struct maplock
* maplock
,
2438 struct tblock
* tblk
)
2440 struct inode
*ipbmap
= JFS_SBI(ip
->i_sb
)->ipbmap
;
2441 struct xdlistlock
*xadlistlock
;
2445 struct pxd_lock
*pxdlock
;
2446 struct xdlistlock
*pxdlistlock
;
2451 * allocate from persistent map;
2453 if (maplock
->flag
& mlckALLOCXADLIST
) {
2454 xadlistlock
= (struct xdlistlock
*) maplock
;
2455 xad
= xadlistlock
->xdlist
;
2456 for (n
= 0; n
< xadlistlock
->count
; n
++, xad
++) {
2457 if (xad
->flag
& (XAD_NEW
| XAD_EXTENDED
)) {
2458 xaddr
= addressXAD(xad
);
2459 xlen
= lengthXAD(xad
);
2460 dbUpdatePMap(ipbmap
, false, xaddr
,
2462 xad
->flag
&= ~(XAD_NEW
| XAD_EXTENDED
);
2463 jfs_info("allocPMap: xaddr:0x%lx xlen:%d",
2464 (ulong
) xaddr
, xlen
);
2467 } else if (maplock
->flag
& mlckALLOCPXD
) {
2468 pxdlock
= (struct pxd_lock
*) maplock
;
2469 xaddr
= addressPXD(&pxdlock
->pxd
);
2470 xlen
= lengthPXD(&pxdlock
->pxd
);
2471 dbUpdatePMap(ipbmap
, false, xaddr
, (s64
) xlen
, tblk
);
2472 jfs_info("allocPMap: xaddr:0x%lx xlen:%d", (ulong
) xaddr
, xlen
);
2473 } else { /* (maplock->flag & mlckALLOCPXDLIST) */
2475 pxdlistlock
= (struct xdlistlock
*) maplock
;
2476 pxd
= pxdlistlock
->xdlist
;
2477 for (n
= 0; n
< pxdlistlock
->count
; n
++, pxd
++) {
2478 xaddr
= addressPXD(pxd
);
2479 xlen
= lengthPXD(pxd
);
2480 dbUpdatePMap(ipbmap
, false, xaddr
, (s64
) xlen
,
2482 jfs_info("allocPMap: xaddr:0x%lx xlen:%d",
2483 (ulong
) xaddr
, xlen
);
2491 * function: free from persistent and/or working map;
2493 * todo: optimization
2495 void txFreeMap(struct inode
*ip
,
2496 struct maplock
* maplock
, struct tblock
* tblk
, int maptype
)
2498 struct inode
*ipbmap
= JFS_SBI(ip
->i_sb
)->ipbmap
;
2499 struct xdlistlock
*xadlistlock
;
2503 struct pxd_lock
*pxdlock
;
2504 struct xdlistlock
*pxdlistlock
;
2508 jfs_info("txFreeMap: tblk:0x%p maplock:0x%p maptype:0x%x",
2509 tblk
, maplock
, maptype
);
2512 * free from persistent map;
2514 if (maptype
== COMMIT_PMAP
|| maptype
== COMMIT_PWMAP
) {
2515 if (maplock
->flag
& mlckFREEXADLIST
) {
2516 xadlistlock
= (struct xdlistlock
*) maplock
;
2517 xad
= xadlistlock
->xdlist
;
2518 for (n
= 0; n
< xadlistlock
->count
; n
++, xad
++) {
2519 if (!(xad
->flag
& XAD_NEW
)) {
2520 xaddr
= addressXAD(xad
);
2521 xlen
= lengthXAD(xad
);
2522 dbUpdatePMap(ipbmap
, true, xaddr
,
2524 jfs_info("freePMap: xaddr:0x%lx xlen:%d",
2525 (ulong
) xaddr
, xlen
);
2528 } else if (maplock
->flag
& mlckFREEPXD
) {
2529 pxdlock
= (struct pxd_lock
*) maplock
;
2530 xaddr
= addressPXD(&pxdlock
->pxd
);
2531 xlen
= lengthPXD(&pxdlock
->pxd
);
2532 dbUpdatePMap(ipbmap
, true, xaddr
, (s64
) xlen
,
2534 jfs_info("freePMap: xaddr:0x%lx xlen:%d",
2535 (ulong
) xaddr
, xlen
);
2536 } else { /* (maplock->flag & mlckALLOCPXDLIST) */
2538 pxdlistlock
= (struct xdlistlock
*) maplock
;
2539 pxd
= pxdlistlock
->xdlist
;
2540 for (n
= 0; n
< pxdlistlock
->count
; n
++, pxd
++) {
2541 xaddr
= addressPXD(pxd
);
2542 xlen
= lengthPXD(pxd
);
2543 dbUpdatePMap(ipbmap
, true, xaddr
,
2545 jfs_info("freePMap: xaddr:0x%lx xlen:%d",
2546 (ulong
) xaddr
, xlen
);
2552 * free from working map;
2554 if (maptype
== COMMIT_PWMAP
|| maptype
== COMMIT_WMAP
) {
2555 if (maplock
->flag
& mlckFREEXADLIST
) {
2556 xadlistlock
= (struct xdlistlock
*) maplock
;
2557 xad
= xadlistlock
->xdlist
;
2558 for (n
= 0; n
< xadlistlock
->count
; n
++, xad
++) {
2559 xaddr
= addressXAD(xad
);
2560 xlen
= lengthXAD(xad
);
2561 dbFree(ip
, xaddr
, (s64
) xlen
);
2563 jfs_info("freeWMap: xaddr:0x%lx xlen:%d",
2564 (ulong
) xaddr
, xlen
);
2566 } else if (maplock
->flag
& mlckFREEPXD
) {
2567 pxdlock
= (struct pxd_lock
*) maplock
;
2568 xaddr
= addressPXD(&pxdlock
->pxd
);
2569 xlen
= lengthPXD(&pxdlock
->pxd
);
2570 dbFree(ip
, xaddr
, (s64
) xlen
);
2571 jfs_info("freeWMap: xaddr:0x%lx xlen:%d",
2572 (ulong
) xaddr
, xlen
);
2573 } else { /* (maplock->flag & mlckFREEPXDLIST) */
2575 pxdlistlock
= (struct xdlistlock
*) maplock
;
2576 pxd
= pxdlistlock
->xdlist
;
2577 for (n
= 0; n
< pxdlistlock
->count
; n
++, pxd
++) {
2578 xaddr
= addressPXD(pxd
);
2579 xlen
= lengthPXD(pxd
);
2580 dbFree(ip
, xaddr
, (s64
) xlen
);
2581 jfs_info("freeWMap: xaddr:0x%lx xlen:%d",
2582 (ulong
) xaddr
, xlen
);
2591 * function: remove tlock from inode anonymous locklist
2593 void txFreelock(struct inode
*ip
)
2595 struct jfs_inode_info
*jfs_ip
= JFS_IP(ip
);
2596 struct tlock
*xtlck
, *tlck
;
2597 lid_t xlid
= 0, lid
;
2599 if (!jfs_ip
->atlhead
)
2603 xtlck
= (struct tlock
*) &jfs_ip
->atlhead
;
2605 while ((lid
= xtlck
->next
) != 0) {
2606 tlck
= lid_to_tlock(lid
);
2607 if (tlck
->flag
& tlckFREELOCK
) {
2608 xtlck
->next
= tlck
->next
;
2616 if (jfs_ip
->atlhead
)
2617 jfs_ip
->atltail
= xlid
;
2619 jfs_ip
->atltail
= 0;
2621 * If inode was on anon_list, remove it
2623 list_del_init(&jfs_ip
->anon_inode_list
);
2631 * function: abort tx before commit;
2633 * frees line-locks and segment locks for all
2634 * segments in comdata structure.
2635 * Optionally sets state of file-system to FM_DIRTY in super-block.
2636 * log age of page-frames in memory for which caller has
2637 * are reset to 0 (to avoid logwarap).
2639 void txAbort(tid_t tid
, int dirty
)
2642 struct metapage
*mp
;
2643 struct tblock
*tblk
= tid_to_tblock(tid
);
2647 * free tlocks of the transaction
2649 for (lid
= tblk
->next
; lid
; lid
= next
) {
2650 tlck
= lid_to_tlock(lid
);
2653 JFS_IP(tlck
->ip
)->xtlid
= 0;
2659 * reset lsn of page to avoid logwarap:
2661 * (page may have been previously committed by another
2662 * transaction(s) but has not been paged, i.e.,
2663 * it may be on logsync list even though it has not
2664 * been logged for the current tx.)
2666 if (mp
->xflag
& COMMIT_PAGE
&& mp
->lsn
)
2669 /* insert tlock at head of freelist */
2675 /* caller will free the transaction block */
2677 tblk
->next
= tblk
->last
= 0;
2680 * mark filesystem dirty
2683 jfs_error(tblk
->sb
, "\n");
2689 * txLazyCommit(void)
2691 * All transactions except those changing ipimap (COMMIT_FORCE) are
2692 * processed by this routine. This insures that the inode and block
2693 * allocation maps are updated in order. For synchronous transactions,
2694 * let the user thread finish processing after txUpdateMap() is called.
2696 static void txLazyCommit(struct tblock
* tblk
)
2698 struct jfs_log
*log
;
2700 while (((tblk
->flag
& tblkGC_READY
) == 0) &&
2701 ((tblk
->flag
& tblkGC_UNLOCKED
) == 0)) {
2702 /* We must have gotten ahead of the user thread
2704 jfs_info("jfs_lazycommit: tblk 0x%p not unlocked", tblk
);
2708 jfs_info("txLazyCommit: processing tblk 0x%p", tblk
);
2712 log
= (struct jfs_log
*) JFS_SBI(tblk
->sb
)->log
;
2714 spin_lock_irq(&log
->gclock
); // LOGGC_LOCK
2716 tblk
->flag
|= tblkGC_COMMITTED
;
2718 if (tblk
->flag
& tblkGC_READY
)
2721 wake_up_all(&tblk
->gcwait
); // LOGGC_WAKEUP
2724 * Can't release log->gclock until we've tested tblk->flag
2726 if (tblk
->flag
& tblkGC_LAZY
) {
2727 spin_unlock_irq(&log
->gclock
); // LOGGC_UNLOCK
2729 tblk
->flag
&= ~tblkGC_LAZY
;
2730 txEnd(tblk
- TxBlock
); /* Convert back to tid */
2732 spin_unlock_irq(&log
->gclock
); // LOGGC_UNLOCK
2734 jfs_info("txLazyCommit: done: tblk = 0x%p", tblk
);
2738 * jfs_lazycommit(void)
2740 * To be run as a kernel daemon. If lbmIODone is called in an interrupt
2741 * context, or where blocking is not wanted, this routine will process
2742 * committed transactions from the unlock queue.
2744 int jfs_lazycommit(void *arg
)
2747 struct tblock
*tblk
;
2748 unsigned long flags
;
2749 struct jfs_sb_info
*sbi
;
2753 jfs_commit_thread_waking
= 0; /* OK to wake another thread */
2754 while (!list_empty(&TxAnchor
.unlock_queue
)) {
2756 list_for_each_entry(tblk
, &TxAnchor
.unlock_queue
,
2759 sbi
= JFS_SBI(tblk
->sb
);
2761 * For each volume, the transactions must be
2762 * handled in order. If another commit thread
2763 * is handling a tblk for this superblock,
2766 if (sbi
->commit_state
& IN_LAZYCOMMIT
)
2769 sbi
->commit_state
|= IN_LAZYCOMMIT
;
2773 * Remove transaction from queue
2775 list_del(&tblk
->cqueue
);
2781 sbi
->commit_state
&= ~IN_LAZYCOMMIT
;
2783 * Don't continue in the for loop. (We can't
2784 * anyway, it's unsafe!) We want to go back to
2785 * the beginning of the list.
2790 /* If there was nothing to do, don't continue */
2794 /* In case a wakeup came while all threads were active */
2795 jfs_commit_thread_waking
= 0;
2797 if (freezing(current
)) {
2801 DECLARE_WAITQUEUE(wq
, current
);
2803 add_wait_queue(&jfs_commit_thread_wait
, &wq
);
2804 set_current_state(TASK_INTERRUPTIBLE
);
2807 remove_wait_queue(&jfs_commit_thread_wait
, &wq
);
2809 } while (!kthread_should_stop());
2811 if (!list_empty(&TxAnchor
.unlock_queue
))
2812 jfs_err("jfs_lazycommit being killed w/pending transactions!");
2814 jfs_info("jfs_lazycommit being killed");
2818 void txLazyUnlock(struct tblock
* tblk
)
2820 unsigned long flags
;
2824 list_add_tail(&tblk
->cqueue
, &TxAnchor
.unlock_queue
);
2826 * Don't wake up a commit thread if there is already one servicing
2827 * this superblock, or if the last one we woke up hasn't started yet.
2829 if (!(JFS_SBI(tblk
->sb
)->commit_state
& IN_LAZYCOMMIT
) &&
2830 !jfs_commit_thread_waking
) {
2831 jfs_commit_thread_waking
= 1;
2832 wake_up(&jfs_commit_thread_wait
);
2837 static void LogSyncRelease(struct metapage
* mp
)
2839 struct jfs_log
*log
= mp
->log
;
2841 assert(mp
->nohomeok
);
2843 metapage_homeok(mp
);
2849 * Block all new transactions and push anonymous transactions to
2852 * This does almost the same thing as jfs_sync below. We don't
2853 * worry about deadlocking when jfs_tlocks_low is set, since we would
2854 * expect jfs_sync to get us out of that jam.
2856 void txQuiesce(struct super_block
*sb
)
2859 struct jfs_inode_info
*jfs_ip
;
2860 struct jfs_log
*log
= JFS_SBI(sb
)->log
;
2863 set_bit(log_QUIESCE
, &log
->flag
);
2867 while (!list_empty(&TxAnchor
.anon_list
)) {
2868 jfs_ip
= list_entry(TxAnchor
.anon_list
.next
,
2869 struct jfs_inode_info
,
2871 ip
= &jfs_ip
->vfs_inode
;
2874 * inode will be removed from anonymous list
2875 * when it is committed
2878 tid
= txBegin(ip
->i_sb
, COMMIT_INODE
| COMMIT_FORCE
);
2879 mutex_lock(&jfs_ip
->commit_mutex
);
2880 txCommit(tid
, 1, &ip
, 0);
2882 mutex_unlock(&jfs_ip
->commit_mutex
);
2884 * Just to be safe. I don't know how
2885 * long we can run without blocking
2892 * If jfs_sync is running in parallel, there could be some inodes
2893 * on anon_list2. Let's check.
2895 if (!list_empty(&TxAnchor
.anon_list2
)) {
2896 list_splice_init(&TxAnchor
.anon_list2
, &TxAnchor
.anon_list
);
2902 * We may need to kick off the group commit
2904 jfs_flush_journal(log
, 0);
2910 * Allows transactions to start again following txQuiesce
2912 void txResume(struct super_block
*sb
)
2914 struct jfs_log
*log
= JFS_SBI(sb
)->log
;
2916 clear_bit(log_QUIESCE
, &log
->flag
);
2917 TXN_WAKEUP(&log
->syncwait
);
2923 * To be run as a kernel daemon. This is awakened when tlocks run low.
2924 * We write any inodes that have anonymous tlocks so they will become
2927 int jfs_sync(void *arg
)
2930 struct jfs_inode_info
*jfs_ip
;
2935 * write each inode on the anonymous inode list
2938 while (jfs_tlocks_low
&& !list_empty(&TxAnchor
.anon_list
)) {
2939 jfs_ip
= list_entry(TxAnchor
.anon_list
.next
,
2940 struct jfs_inode_info
,
2942 ip
= &jfs_ip
->vfs_inode
;
2946 * Inode is being freed
2948 list_del_init(&jfs_ip
->anon_inode_list
);
2949 } else if (mutex_trylock(&jfs_ip
->commit_mutex
)) {
2951 * inode will be removed from anonymous list
2952 * when it is committed
2955 tid
= txBegin(ip
->i_sb
, COMMIT_INODE
);
2956 txCommit(tid
, 1, &ip
, 0);
2958 mutex_unlock(&jfs_ip
->commit_mutex
);
2962 * Just to be safe. I don't know how
2963 * long we can run without blocking
2968 /* We can't get the commit mutex. It may
2969 * be held by a thread waiting for tlock's
2970 * so let's not block here. Save it to
2971 * put back on the anon_list.
2974 /* Move from anon_list to anon_list2 */
2975 list_move(&jfs_ip
->anon_inode_list
,
2976 &TxAnchor
.anon_list2
);
2983 /* Add anon_list2 back to anon_list */
2984 list_splice_init(&TxAnchor
.anon_list2
, &TxAnchor
.anon_list
);
2986 if (freezing(current
)) {
2990 set_current_state(TASK_INTERRUPTIBLE
);
2994 } while (!kthread_should_stop());
2996 jfs_info("jfs_sync being killed");
3000 #if defined(CONFIG_PROC_FS) && defined(CONFIG_JFS_DEBUG)
3001 static int jfs_txanchor_proc_show(struct seq_file
*m
, void *v
)
3008 waitqueue_active(&TxAnchor
.freewait
) ? "active" : "empty";
3010 waitqueue_active(&TxAnchor
.freelockwait
) ? "active" : "empty";
3012 waitqueue_active(&TxAnchor
.lowlockwait
) ? "active" : "empty";
3020 "freelockwait = %s\n"
3021 "lowlockwait = %s\n"
3022 "tlocksInUse = %d\n"
3023 "jfs_tlocks_low = %d\n"
3024 "unlock_queue is %sempty\n",
3030 TxAnchor
.tlocksInUse
,
3032 list_empty(&TxAnchor
.unlock_queue
) ? "" : "not ");
3036 static int jfs_txanchor_proc_open(struct inode
*inode
, struct file
*file
)
3038 return single_open(file
, jfs_txanchor_proc_show
, NULL
);
3041 const struct file_operations jfs_txanchor_proc_fops
= {
3042 .open
= jfs_txanchor_proc_open
,
3044 .llseek
= seq_lseek
,
3045 .release
= single_release
,
3049 #if defined(CONFIG_PROC_FS) && defined(CONFIG_JFS_STATISTICS)
3050 static int jfs_txstats_proc_show(struct seq_file
*m
, void *v
)
3055 "calls to txBegin = %d\n"
3056 "txBegin blocked by sync barrier = %d\n"
3057 "txBegin blocked by tlocks low = %d\n"
3058 "txBegin blocked by no free tid = %d\n"
3059 "calls to txBeginAnon = %d\n"
3060 "txBeginAnon blocked by sync barrier = %d\n"
3061 "txBeginAnon blocked by tlocks low = %d\n"
3062 "calls to txLockAlloc = %d\n"
3063 "tLockAlloc blocked by no free lock = %d\n",
3065 TxStat
.txBegin_barrier
,
3066 TxStat
.txBegin_lockslow
,
3067 TxStat
.txBegin_freetid
,
3069 TxStat
.txBeginAnon_barrier
,
3070 TxStat
.txBeginAnon_lockslow
,
3072 TxStat
.txLockAlloc_freelock
);
3076 static int jfs_txstats_proc_open(struct inode
*inode
, struct file
*file
)
3078 return single_open(file
, jfs_txstats_proc_show
, NULL
);
3081 const struct file_operations jfs_txstats_proc_fops
= {
3082 .open
= jfs_txstats_proc_open
,
3084 .llseek
= seq_lseek
,
3085 .release
= single_release
,