blob: 224ef034004b7d28a5fcdcc9d1aefe100b92ff7a [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * Copyright (C) International Business Machines Corp., 2000-2005
3 * Portions Copyright (C) Christoph Hellwig, 2001-2002
4 *
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
Dave Kleikamp63f83c92006-10-02 09:55:27 -05007 * the Free Software Foundation; either version 2 of the License, or
Linus Torvalds1da177e2005-04-16 15:20:36 -07008 * (at your option) any later version.
Dave Kleikamp63f83c92006-10-02 09:55:27 -05009 *
Linus Torvalds1da177e2005-04-16 15:20:36 -070010 * 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.
14 *
15 * You should have received a copy of the GNU General Public License
Dave Kleikamp63f83c92006-10-02 09:55:27 -050016 * along with this program; if not, write to the Free Software
Linus Torvalds1da177e2005-04-16 15:20:36 -070017 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
18 */
19
20/*
Dave Kleikampf720e3b2007-06-06 15:28:35 -050021 * jfs_txnmgr.c: transaction manager
Linus Torvalds1da177e2005-04-16 15:20:36 -070022 *
23 * notes:
24 * transaction starts with txBegin() and ends with txCommit()
25 * or txAbort().
26 *
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).
31 *
32 * special cases:
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.
36 *
37 * tlock during write()/mmap() under anonymous transaction (tid = 0):
38 * transferred (?) to transaction at commit time.
39 *
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
43 */
44
Linus Torvalds1da177e2005-04-16 15:20:36 -070045#include <linux/fs.h>
46#include <linux/vmalloc.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070047#include <linux/completion.h>
Nigel Cunningham7dfb7102006-12-06 20:34:23 -080048#include <linux/freezer.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070049#include <linux/module.h>
50#include <linux/moduleparam.h>
Christoph Hellwig91dbb4d2006-02-15 12:49:04 -060051#include <linux/kthread.h>
Alexey Dobriyanb2e03ca2008-05-13 08:22:10 -050052#include <linux/seq_file.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070053#include "jfs_incore.h"
Dave Kleikamp1868f4a2005-05-04 15:29:35 -050054#include "jfs_inode.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070055#include "jfs_filsys.h"
56#include "jfs_metapage.h"
57#include "jfs_dinode.h"
58#include "jfs_imap.h"
59#include "jfs_dmap.h"
60#include "jfs_superblock.h"
61#include "jfs_debug.h"
62
63/*
Dave Kleikampf720e3b2007-06-06 15:28:35 -050064 * transaction management structures
Linus Torvalds1da177e2005-04-16 15:20:36 -070065 */
66static struct {
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 */
79} TxAnchor;
80
81int jfs_tlocks_low; /* Indicates low number of available tlocks */
82
83#ifdef CONFIG_JFS_STATISTICS
84static struct {
85 uint txBegin;
86 uint txBegin_barrier;
87 uint txBegin_lockslow;
88 uint txBegin_freetid;
89 uint txBeginAnon;
90 uint txBeginAnon_barrier;
91 uint txBeginAnon_lockslow;
92 uint txLockAlloc;
93 uint txLockAlloc_freelock;
94} TxStat;
95#endif
96
97static int nTxBlock = -1; /* number of transaction blocks */
98module_param(nTxBlock, int, 0);
99MODULE_PARM_DESC(nTxBlock,
100 "Number of transaction blocks (max:65536)");
101
102static int nTxLock = -1; /* number of transaction locks */
103module_param(nTxLock, int, 0);
104MODULE_PARM_DESC(nTxLock,
105 "Number of transaction locks (max:65536)");
106
Dave Kleikampf720e3b2007-06-06 15:28:35 -0500107struct tblock *TxBlock; /* transaction block table */
108static int TxLockLWM; /* Low water mark for number of txLocks used */
109static int TxLockHWM; /* High water mark for number of txLocks used */
110static int TxLockVHWM; /* Very High water mark */
111struct tlock *TxLock; /* transaction lock table */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700112
Linus Torvalds1da177e2005-04-16 15:20:36 -0700113/*
Dave Kleikampf720e3b2007-06-06 15:28:35 -0500114 * transaction management lock
Linus Torvalds1da177e2005-04-16 15:20:36 -0700115 */
116static DEFINE_SPINLOCK(jfsTxnLock);
117
Dave Kleikampf720e3b2007-06-06 15:28:35 -0500118#define TXN_LOCK() spin_lock(&jfsTxnLock)
119#define TXN_UNLOCK() spin_unlock(&jfsTxnLock)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700120
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)
124
Christoph Hellwig91dbb4d2006-02-15 12:49:04 -0600125static DECLARE_WAIT_QUEUE_HEAD(jfs_commit_thread_wait);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700126static int jfs_commit_thread_waking;
127
128/*
129 * Retry logic exist outside these macros to protect from spurrious wakeups.
130 */
131static inline void TXN_SLEEP_DROP_LOCK(wait_queue_head_t * event)
132{
133 DECLARE_WAITQUEUE(wait, current);
134
135 add_wait_queue(event, &wait);
136 set_current_state(TASK_UNINTERRUPTIBLE);
137 TXN_UNLOCK();
Dave Kleikamp4aa0d232007-01-17 21:18:35 -0600138 io_schedule();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700139 remove_wait_queue(event, &wait);
140}
141
142#define TXN_SLEEP(event)\
143{\
144 TXN_SLEEP_DROP_LOCK(event);\
145 TXN_LOCK();\
146}
147
148#define TXN_WAKEUP(event) wake_up_all(event)
149
Linus Torvalds1da177e2005-04-16 15:20:36 -0700150/*
Dave Kleikampf720e3b2007-06-06 15:28:35 -0500151 * statistics
Linus Torvalds1da177e2005-04-16 15:20:36 -0700152 */
153static struct {
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 */
159} stattx;
160
Linus Torvalds1da177e2005-04-16 15:20:36 -0700161/*
162 * forward references
163 */
164static int diLog(struct jfs_log * log, struct tblock * tblk, struct lrd * lrd,
165 struct tlock * tlck, struct commit * cd);
166static int dataLog(struct jfs_log * log, struct tblock * tblk, struct lrd * lrd,
167 struct tlock * tlck);
168static void dtLog(struct jfs_log * log, struct tblock * tblk, struct lrd * lrd,
169 struct tlock * tlck);
170static void mapLog(struct jfs_log * log, struct tblock * tblk, struct lrd * lrd,
171 struct tlock * tlck);
172static void txAllocPMap(struct inode *ip, struct maplock * maplock,
173 struct tblock * tblk);
174static void txForce(struct tblock * tblk);
175static int txLog(struct jfs_log * log, struct tblock * tblk,
176 struct commit * cd);
177static void txUpdateMap(struct tblock * tblk);
178static void txRelease(struct tblock * tblk);
179static void xtLog(struct jfs_log * log, struct tblock * tblk, struct lrd * lrd,
180 struct tlock * tlck);
181static void LogSyncRelease(struct metapage * mp);
182
183/*
Dave Kleikampf720e3b2007-06-06 15:28:35 -0500184 * transaction block/lock management
185 * ---------------------------------
Linus Torvalds1da177e2005-04-16 15:20:36 -0700186 */
187
188/*
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.)
192 */
193static lid_t txLockAlloc(void)
194{
195 lid_t lid;
196
197 INCREMENT(TxStat.txLockAlloc);
198 if (!TxAnchor.freelock) {
199 INCREMENT(TxStat.txLockAlloc_freelock);
200 }
201
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");
208 jfs_tlocks_low = 1;
Christoph Hellwig91dbb4d2006-02-15 12:49:04 -0600209 wake_up_process(jfsSyncThread);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700210 }
211
212 return lid;
213}
214
215static void txLockFree(lid_t lid)
216{
Dave Kleikamp7fab4792005-05-02 12:25:02 -0600217 TxLock[lid].tid = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700218 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");
223 jfs_tlocks_low = 0;
224 TXN_WAKEUP(&TxAnchor.lowlockwait);
225 }
226 TXN_WAKEUP(&TxAnchor.freelockwait);
227}
228
229/*
Dave Kleikampf720e3b2007-06-06 15:28:35 -0500230 * NAME: txInit()
Linus Torvalds1da177e2005-04-16 15:20:36 -0700231 *
Dave Kleikampf720e3b2007-06-06 15:28:35 -0500232 * FUNCTION: initialize transaction management structures
Linus Torvalds1da177e2005-04-16 15:20:36 -0700233 *
234 * RETURN:
235 *
236 * serialization: single thread at jfs_init()
237 */
238int txInit(void)
239{
240 int k, size;
241 struct sysinfo si;
242
243 /* Set defaults for nTxLock and nTxBlock if unset */
244
245 if (nTxLock == -1) {
246 if (nTxBlock == -1) {
247 /* Base default on memory size */
248 si_meminfo(&si);
249 if (si.totalram > (256 * 1024)) /* 1 GB */
250 nTxLock = 64 * 1024;
251 else
252 nTxLock = si.totalram >> 2;
253 } else if (nTxBlock > (8 * 1024))
254 nTxLock = 64 * 1024;
255 else
256 nTxLock = nTxBlock << 3;
257 }
258 if (nTxBlock == -1)
259 nTxBlock = nTxLock >> 3;
260
261 /* Verify tunable parameters */
262 if (nTxBlock < 16)
263 nTxBlock = 16; /* No one should set it this low */
264 if (nTxBlock > 65536)
265 nTxBlock = 65536;
266 if (nTxLock < 256)
267 nTxLock = 256; /* No one should set it this low */
268 if (nTxLock > 65536)
269 nTxLock = 65536;
270
271 printk(KERN_INFO "JFS: nTxBlock = %d, nTxLock = %d\n",
272 nTxBlock, nTxLock);
273 /*
274 * initialize transaction block (tblock) table
275 *
276 * transaction id (tid) = tblock index
277 * tid = 0 is reserved.
278 */
279 TxLockLWM = (nTxLock * 4) / 10;
280 TxLockHWM = (nTxLock * 7) / 10;
281 TxLockVHWM = (nTxLock * 8) / 10;
282
283 size = sizeof(struct tblock) * nTxBlock;
Panagiotis Issarisf52720c2006-09-27 01:49:39 -0700284 TxBlock = vmalloc(size);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700285 if (TxBlock == NULL)
286 return -ENOMEM;
287
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);
292 }
293 TxBlock[k].next = 0;
294 init_waitqueue_head(&TxBlock[k].gcwait);
295 init_waitqueue_head(&TxBlock[k].waitor);
296
297 TxAnchor.freetid = 1;
298 init_waitqueue_head(&TxAnchor.freewait);
299
300 stattx.maxtid = 1; /* statistics */
301
302 /*
303 * initialize transaction lock (tlock) table
304 *
305 * transaction lock id = tlock index
306 * tlock id = 0 is reserved.
307 */
308 size = sizeof(struct tlock) * nTxLock;
Panagiotis Issarisf52720c2006-09-27 01:49:39 -0700309 TxLock = vmalloc(size);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700310 if (TxLock == NULL) {
311 vfree(TxBlock);
312 return -ENOMEM;
313 }
314
315 /* initialize tlock table */
316 for (k = 1; k < nTxLock - 1; k++)
317 TxLock[k].next = k + 1;
318 TxLock[k].next = 0;
319 init_waitqueue_head(&TxAnchor.freelockwait);
320 init_waitqueue_head(&TxAnchor.lowlockwait);
321
322 TxAnchor.freelock = 1;
323 TxAnchor.tlocksInUse = 0;
324 INIT_LIST_HEAD(&TxAnchor.anon_list);
325 INIT_LIST_HEAD(&TxAnchor.anon_list2);
326
327 LAZY_LOCK_INIT();
328 INIT_LIST_HEAD(&TxAnchor.unlock_queue);
329
330 stattx.maxlid = 1; /* statistics */
331
332 return 0;
333}
334
335/*
Dave Kleikampf720e3b2007-06-06 15:28:35 -0500336 * NAME: txExit()
Linus Torvalds1da177e2005-04-16 15:20:36 -0700337 *
Dave Kleikampf720e3b2007-06-06 15:28:35 -0500338 * FUNCTION: clean up when module is unloaded
Linus Torvalds1da177e2005-04-16 15:20:36 -0700339 */
340void txExit(void)
341{
342 vfree(TxLock);
343 TxLock = NULL;
344 vfree(TxBlock);
345 TxBlock = NULL;
346}
347
Linus Torvalds1da177e2005-04-16 15:20:36 -0700348/*
Dave Kleikampf720e3b2007-06-06 15:28:35 -0500349 * NAME: txBegin()
Linus Torvalds1da177e2005-04-16 15:20:36 -0700350 *
Dave Kleikampf720e3b2007-06-06 15:28:35 -0500351 * FUNCTION: start a transaction.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700352 *
Dave Kleikampf720e3b2007-06-06 15:28:35 -0500353 * PARAMETER: sb - superblock
354 * flag - force for nested tx;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700355 *
356 * RETURN: tid - transaction id
357 *
358 * note: flag force allows to start tx for nested tx
359 * to prevent deadlock on logsync barrier;
360 */
361tid_t txBegin(struct super_block *sb, int flag)
362{
363 tid_t t;
364 struct tblock *tblk;
365 struct jfs_log *log;
366
367 jfs_info("txBegin: flag = 0x%x", flag);
368 log = JFS_SBI(sb)->log;
369
370 TXN_LOCK();
371
372 INCREMENT(TxStat.txBegin);
373
374 retry:
375 if (!(flag & COMMIT_FORCE)) {
376 /*
377 * synchronize with logsync barrier
378 */
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);
383 goto retry;
384 }
385 }
386 if (flag == 0) {
387 /*
388 * Don't begin transaction if we're getting starved for tlocks
389 * unless COMMIT_FORCE or COMMIT_INODE (which may ultimately
390 * free tlocks)
391 */
392 if (TxAnchor.tlocksInUse > TxLockVHWM) {
393 INCREMENT(TxStat.txBegin_lockslow);
394 TXN_SLEEP(&TxAnchor.lowlockwait);
395 goto retry;
396 }
397 }
398
399 /*
400 * allocate transaction id/block
401 */
402 if ((t = TxAnchor.freetid) == 0) {
403 jfs_info("txBegin: waiting for free tid");
404 INCREMENT(TxStat.txBegin_freetid);
405 TXN_SLEEP(&TxAnchor.freewait);
406 goto retry;
407 }
408
409 tblk = tid_to_tblock(t);
410
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);
416 goto retry;
417 }
418
419 TxAnchor.freetid = tblk->next;
420
421 /*
422 * initialize transaction
423 */
424
425 /*
426 * We can't zero the whole thing or we screw up another thread being
427 * awakened after sleeping on tblk->waitor
428 *
429 * memset(tblk, 0, sizeof(struct tblock));
430 */
431 tblk->next = tblk->last = tblk->xflag = tblk->flag = tblk->lsn = 0;
432
433 tblk->sb = sb;
434 ++log->logtid;
435 tblk->logtid = log->logtid;
436
437 ++log->active;
438
439 HIGHWATERMARK(stattx.maxtid, t); /* statistics */
440 INCREMENT(stattx.ntid); /* statistics */
441
442 TXN_UNLOCK();
443
444 jfs_info("txBegin: returning tid = %d", t);
445
446 return t;
447}
448
Linus Torvalds1da177e2005-04-16 15:20:36 -0700449/*
Dave Kleikampf720e3b2007-06-06 15:28:35 -0500450 * NAME: txBeginAnon()
Linus Torvalds1da177e2005-04-16 15:20:36 -0700451 *
Dave Kleikampf720e3b2007-06-06 15:28:35 -0500452 * FUNCTION: start an anonymous transaction.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700453 * Blocks if logsync or available tlocks are low to prevent
454 * anonymous tlocks from depleting supply.
455 *
Dave Kleikampf720e3b2007-06-06 15:28:35 -0500456 * PARAMETER: sb - superblock
Linus Torvalds1da177e2005-04-16 15:20:36 -0700457 *
458 * RETURN: none
459 */
460void txBeginAnon(struct super_block *sb)
461{
462 struct jfs_log *log;
463
464 log = JFS_SBI(sb)->log;
465
466 TXN_LOCK();
467 INCREMENT(TxStat.txBeginAnon);
468
469 retry:
470 /*
471 * synchronize with logsync barrier
472 */
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);
477 goto retry;
478 }
479
480 /*
481 * Don't begin transaction if we're getting starved for tlocks
482 */
483 if (TxAnchor.tlocksInUse > TxLockVHWM) {
484 INCREMENT(TxStat.txBeginAnon_lockslow);
485 TXN_SLEEP(&TxAnchor.lowlockwait);
486 goto retry;
487 }
488 TXN_UNLOCK();
489}
490
Linus Torvalds1da177e2005-04-16 15:20:36 -0700491/*
Dave Kleikampf720e3b2007-06-06 15:28:35 -0500492 * txEnd()
Linus Torvalds1da177e2005-04-16 15:20:36 -0700493 *
494 * function: free specified transaction block.
495 *
Dave Kleikampf720e3b2007-06-06 15:28:35 -0500496 * logsync barrier processing:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700497 *
498 * serialization:
499 */
500void txEnd(tid_t tid)
501{
502 struct tblock *tblk = tid_to_tblock(tid);
503 struct jfs_log *log;
504
505 jfs_info("txEnd: tid = %d", tid);
506 TXN_LOCK();
507
508 /*
509 * wakeup transactions waiting on the page locked
510 * by the current transaction
511 */
512 TXN_WAKEUP(&tblk->waitor);
513
514 log = JFS_SBI(tblk->sb)->log;
515
516 /*
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
519 * reused.
520 *
521 * Lazy commit thread will turn off tblkGC_LAZY before calling this
522 * routine.
523 */
524 if (tblk->flag & tblkGC_LAZY) {
525 jfs_info("txEnd called w/lazy tid: %d, tblk = 0x%p", tid, tblk);
526 TXN_UNLOCK();
527
528 spin_lock_irq(&log->gclock); // LOGGC_LOCK
529 tblk->flag |= tblkGC_UNLOCKED;
530 spin_unlock_irq(&log->gclock); // LOGGC_UNLOCK
531 return;
532 }
533
534 jfs_info("txEnd: tid: %d, tblk = 0x%p", tid, tblk);
535
536 assert(tblk->next == 0);
537
538 /*
539 * insert tblock back on freelist
540 */
541 tblk->next = TxAnchor.freetid;
542 TxAnchor.freetid = tid;
543
544 /*
545 * mark the tblock not active
546 */
547 if (--log->active == 0) {
548 clear_bit(log_FLUSH, &log->flag);
549
550 /*
551 * synchronize with logsync barrier
552 */
553 if (test_bit(log_SYNCBARRIER, &log->flag)) {
Dave Kleikampcbc3d652005-07-27 09:17:57 -0500554 TXN_UNLOCK();
555
556 /* write dirty metadata & forward log syncpt */
557 jfs_syncpt(log, 1);
558
Linus Torvalds1da177e2005-04-16 15:20:36 -0700559 jfs_info("log barrier off: 0x%x", log->lsn);
560
561 /* enable new transactions start */
562 clear_bit(log_SYNCBARRIER, &log->flag);
563
564 /* wakeup all waitors for logsync barrier */
565 TXN_WAKEUP(&log->syncwait);
Dave Kleikamp1c627822005-05-02 12:25:08 -0600566
Dave Kleikamp1c627822005-05-02 12:25:08 -0600567 goto wakeup;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700568 }
569 }
570
Dave Kleikamp1c627822005-05-02 12:25:08 -0600571 TXN_UNLOCK();
572wakeup:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700573 /*
574 * wakeup all waitors for a free tblock
575 */
576 TXN_WAKEUP(&TxAnchor.freewait);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700577}
578
Linus Torvalds1da177e2005-04-16 15:20:36 -0700579/*
Dave Kleikampf720e3b2007-06-06 15:28:35 -0500580 * txLock()
Linus Torvalds1da177e2005-04-16 15:20:36 -0700581 *
582 * function: acquire a transaction lock on the specified <mp>
583 *
584 * parameter:
585 *
Dave Kleikampf720e3b2007-06-06 15:28:35 -0500586 * return: transaction lock id
Linus Torvalds1da177e2005-04-16 15:20:36 -0700587 *
588 * serialization:
589 */
590struct tlock *txLock(tid_t tid, struct inode *ip, struct metapage * mp,
591 int type)
592{
593 struct jfs_inode_info *jfs_ip = JFS_IP(ip);
594 int dir_xtree = 0;
595 lid_t lid;
596 tid_t xtid;
597 struct tlock *tlck;
598 struct xtlock *xtlck;
599 struct linelock *linelock;
600 xtpage_t *p;
601 struct tblock *tblk;
602
603 TXN_LOCK();
604
605 if (S_ISDIR(ip->i_mode) && (type & tlckXTREE) &&
606 !(mp->xflag & COMMIT_PAGE)) {
607 /*
608 * Directory inode is special. It can have both an xtree tlock
609 * and a dtree tlock associated with it.
610 */
611 dir_xtree = 1;
612 lid = jfs_ip->xtlid;
613 } else
614 lid = mp->lid;
615
616 /* is page not locked by a transaction ? */
617 if (lid == 0)
618 goto allocateLock;
619
620 jfs_info("txLock: tid:%d ip:0x%p mp:0x%p lid:%d", tid, ip, mp, lid);
621
622 /* is page locked by the requester transaction ? */
623 tlck = lid_to_tlock(lid);
Dave Kleikamp7fab4792005-05-02 12:25:02 -0600624 if ((xtid = tlck->tid) == tid) {
625 TXN_UNLOCK();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700626 goto grantLock;
Dave Kleikamp7fab4792005-05-02 12:25:02 -0600627 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700628
629 /*
630 * is page locked by anonymous transaction/lock ?
631 *
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
Lucas De Marchi25985ed2011-03-30 22:57:33 -0300638 * the committing transaction of the inode)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700639 */
640 if (xtid == 0) {
641 tlck->tid = tid;
Dave Kleikamp7fab4792005-05-02 12:25:02 -0600642 TXN_UNLOCK();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700643 tblk = tid_to_tblock(tid);
644 /*
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
649 * transaction list
650 *
651 * Note: We really need to get rid of the tid & lid and
652 * use list_head's. This code is getting UGLY!
653 */
654 if (jfs_ip->atlhead == lid) {
655 if (jfs_ip->atltail == lid) {
656 /* only anonymous txn.
657 * Remove from anon_list
658 */
Dave Kleikamp8a9cd6d2005-08-10 11:14:39 -0500659 TXN_LOCK();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700660 list_del_init(&jfs_ip->anon_inode_list);
Dave Kleikamp8a9cd6d2005-08-10 11:14:39 -0500661 TXN_UNLOCK();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700662 }
663 jfs_ip->atlhead = tlck->next;
664 } else {
665 lid_t last;
666 for (last = jfs_ip->atlhead;
667 lid_to_tlock(last)->next != lid;
668 last = lid_to_tlock(last)->next) {
669 assert(last);
670 }
671 lid_to_tlock(last)->next = tlck->next;
672 if (jfs_ip->atltail == lid)
673 jfs_ip->atltail = last;
674 }
675
676 /* insert the tlock at tail of transaction tlock list */
677
678 if (tblk->next)
679 lid_to_tlock(tblk->last)->next = lid;
680 else
681 tblk->next = lid;
682 tlck->next = 0;
683 tblk->last = lid;
684
685 goto grantLock;
686 }
687
688 goto waitLock;
689
690 /*
691 * allocate a tlock
692 */
693 allocateLock:
694 lid = txLockAlloc();
695 tlck = lid_to_tlock(lid);
696
697 /*
698 * initialize tlock
699 */
700 tlck->tid = tid;
701
Dave Kleikamp7fab4792005-05-02 12:25:02 -0600702 TXN_UNLOCK();
703
Linus Torvalds1da177e2005-04-16 15:20:36 -0700704 /* mark tlock for meta-data page */
705 if (mp->xflag & COMMIT_PAGE) {
706
707 tlck->flag = tlckPAGELOCK;
708
709 /* mark the page dirty and nohomeok */
Dave Kleikamp7fab4792005-05-02 12:25:02 -0600710 metapage_nohomeok(mp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700711
712 jfs_info("locking mp = 0x%p, nohomeok = %d tid = %d tlck = 0x%p",
Dave Kleikamp7fab4792005-05-02 12:25:02 -0600713 mp, mp->nohomeok, tid, tlck);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700714
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
718 * long a time.
719 */
720 if ((tid == 0) && mp->lsn)
721 set_cflag(COMMIT_Synclist, ip);
722 }
723 /* mark tlock for in-memory inode */
724 else
725 tlck->flag = tlckINODELOCK;
726
Dave Kleikamp438282d2005-09-20 14:58:11 -0500727 if (S_ISDIR(ip->i_mode))
728 tlck->flag |= tlckDIRECTORY;
729
Linus Torvalds1da177e2005-04-16 15:20:36 -0700730 tlck->type = 0;
731
732 /* bind the tlock and the page */
733 tlck->ip = ip;
734 tlck->mp = mp;
735 if (dir_xtree)
736 jfs_ip->xtlid = lid;
737 else
738 mp->lid = lid;
739
740 /*
741 * enqueue transaction lock to transaction/inode
742 */
743 /* insert the tlock at tail of transaction tlock list */
744 if (tid) {
745 tblk = tid_to_tblock(tid);
746 if (tblk->next)
747 lid_to_tlock(tblk->last)->next = lid;
748 else
749 tblk->next = lid;
750 tlck->next = 0;
751 tblk->last = lid;
752 }
753 /* anonymous transaction:
754 * insert the tlock at head of inode anonymous tlock list
755 */
756 else {
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;
Dave Kleikamp7fab4792005-05-02 12:25:02 -0600762 TXN_LOCK();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700763 list_add_tail(&jfs_ip->anon_inode_list,
764 &TxAnchor.anon_list);
Dave Kleikamp7fab4792005-05-02 12:25:02 -0600765 TXN_UNLOCK();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700766 }
767 }
768
769 /* initialize type dependent area for linelock */
770 linelock = (struct linelock *) & tlck->lock;
771 linelock->next = 0;
772 linelock->flag = tlckLINELOCK;
773 linelock->maxcnt = TLOCKSHORT;
774 linelock->index = 0;
775
776 switch (type & tlckTYPE) {
777 case tlckDTREE:
778 linelock->l2linesize = L2DTSLOTSIZE;
779 break;
780
781 case tlckXTREE:
782 linelock->l2linesize = L2XTSLOTSIZE;
783
784 xtlck = (struct xtlock *) linelock;
785 xtlck->header.offset = 0;
786 xtlck->header.length = 2;
787
788 if (type & tlckNEW) {
789 xtlck->lwm.offset = XTENTRYSTART;
790 } else {
791 if (mp->xflag & COMMIT_PAGE)
792 p = (xtpage_t *) mp->data;
793 else
794 p = &jfs_ip->i_xtroot;
795 xtlck->lwm.offset =
796 le16_to_cpu(p->header.nextindex);
797 }
798 xtlck->lwm.length = 0; /* ! */
799 xtlck->twm.offset = 0;
800 xtlck->hwm.offset = 0;
801
802 xtlck->index = 2;
803 break;
804
805 case tlckINODE:
806 linelock->l2linesize = L2INODESLOTSIZE;
807 break;
808
809 case tlckDATA:
810 linelock->l2linesize = L2DATASLOTSIZE;
811 break;
812
813 default:
814 jfs_err("UFO tlock:0x%p", tlck);
815 }
816
817 /*
818 * update tlock vector
819 */
820 grantLock:
821 tlck->type |= type;
822
Linus Torvalds1da177e2005-04-16 15:20:36 -0700823 return tlck;
824
825 /*
826 * page is being locked by another transaction:
827 */
828 waitLock:
829 /* Only locks on ipimap or ipaimap should reach here */
830 /* assert(jfs_ip->fileset == AGGREGATE_I); */
831 if (jfs_ip->fileset != AGGREGATE_I) {
Dave Kleikamp209e1012007-06-06 16:30:17 -0500832 printk(KERN_ERR "txLock: trying to lock locked page!");
Dave Kleikamp288e4d82007-06-13 10:17:50 -0500833 print_hex_dump(KERN_ERR, "ip: ", DUMP_PREFIX_ADDRESS, 16, 4,
834 ip, sizeof(*ip), 0);
835 print_hex_dump(KERN_ERR, "mp: ", DUMP_PREFIX_ADDRESS, 16, 4,
836 mp, sizeof(*mp), 0);
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);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700842 BUG();
843 }
844 INCREMENT(stattx.waitlock); /* statistics */
Dave Kleikamp7fab4792005-05-02 12:25:02 -0600845 TXN_UNLOCK();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700846 release_metapage(mp);
Dave Kleikamp7fab4792005-05-02 12:25:02 -0600847 TXN_LOCK();
Adrian Bunk04187262006-06-30 18:23:04 +0200848 xtid = tlck->tid; /* reacquire after dropping TXN_LOCK */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700849
850 jfs_info("txLock: in waitLock, tid = %d, xtid = %d, lid = %d",
851 tid, xtid, lid);
Dave Kleikamp7fab4792005-05-02 12:25:02 -0600852
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);
856 else
857 TXN_UNLOCK();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700858 jfs_info("txLock: awakened tid = %d, lid = %d", tid, lid);
859
860 return NULL;
861}
862
Linus Torvalds1da177e2005-04-16 15:20:36 -0700863/*
Dave Kleikampf720e3b2007-06-06 15:28:35 -0500864 * NAME: txRelease()
Linus Torvalds1da177e2005-04-16 15:20:36 -0700865 *
Dave Kleikampf720e3b2007-06-06 15:28:35 -0500866 * FUNCTION: Release buffers associated with transaction locks, but don't
Linus Torvalds1da177e2005-04-16 15:20:36 -0700867 * 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.
870 *
871 * PARAMETER:
Dave Kleikampf720e3b2007-06-06 15:28:35 -0500872 * tblk -
Linus Torvalds1da177e2005-04-16 15:20:36 -0700873 *
Dave Kleikampf720e3b2007-06-06 15:28:35 -0500874 * RETURN: Errors from subroutines.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700875 */
876static void txRelease(struct tblock * tblk)
877{
878 struct metapage *mp;
879 lid_t lid;
880 struct tlock *tlck;
881
882 TXN_LOCK();
883
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);
889 mp->lid = 0;
890 }
891 }
892
893 /*
894 * wakeup transactions waiting on a page locked
895 * by the current transaction
896 */
897 TXN_WAKEUP(&tblk->waitor);
898
899 TXN_UNLOCK();
900}
901
Linus Torvalds1da177e2005-04-16 15:20:36 -0700902/*
Dave Kleikampf720e3b2007-06-06 15:28:35 -0500903 * NAME: txUnlock()
Linus Torvalds1da177e2005-04-16 15:20:36 -0700904 *
Dave Kleikampf720e3b2007-06-06 15:28:35 -0500905 * FUNCTION: Initiates pageout of pages modified by tid in journalled
906 * objects and frees their lockwords.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700907 */
908static void txUnlock(struct tblock * tblk)
909{
910 struct tlock *tlck;
911 struct linelock *linelock;
912 lid_t lid, next, llid, k;
913 struct metapage *mp;
914 struct jfs_log *log;
915 int difft, diffp;
Dave Kleikamp7fab4792005-05-02 12:25:02 -0600916 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700917
918 jfs_info("txUnlock: tblk = 0x%p", tblk);
919 log = JFS_SBI(tblk->sb)->log;
920
921 /*
922 * mark page under tlock homeok (its log has been written):
923 */
924 for (lid = tblk->next; lid; lid = next) {
925 tlck = lid_to_tlock(lid);
926 next = tlck->next;
927
928 jfs_info("unlocking lid = %d, tlck = 0x%p", lid, tlck);
929
930 /* unbind page from tlock */
931 if ((mp = tlck->mp) != NULL &&
932 (tlck->type & tlckBTROOT) == 0) {
933 assert(mp->xflag & COMMIT_PAGE);
934
935 /* hold buffer
Linus Torvalds1da177e2005-04-16 15:20:36 -0700936 */
Dave Kleikamp7fab4792005-05-02 12:25:02 -0600937 hold_metapage(mp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700938
Dave Kleikamp7fab4792005-05-02 12:25:02 -0600939 assert(mp->nohomeok > 0);
940 _metapage_homeok(mp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700941
942 /* inherit younger/larger clsn */
Dave Kleikamp7fab4792005-05-02 12:25:02 -0600943 LOGSYNC_LOCK(log, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700944 if (mp->clsn) {
945 logdiff(difft, tblk->clsn, log);
946 logdiff(diffp, mp->clsn, log);
947 if (difft > diffp)
948 mp->clsn = tblk->clsn;
949 } else
950 mp->clsn = tblk->clsn;
Dave Kleikamp7fab4792005-05-02 12:25:02 -0600951 LOGSYNC_UNLOCK(log, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700952
953 assert(!(tlck->flag & tlckFREEPAGE));
954
Dave Kleikamp7fab4792005-05-02 12:25:02 -0600955 put_metapage(mp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700956 }
957
958 /* insert tlock, and linelock(s) of the tlock if any,
959 * at head of freelist
960 */
961 TXN_LOCK();
962
963 llid = ((struct linelock *) & tlck->lock)->next;
964 while (llid) {
965 linelock = (struct linelock *) lid_to_tlock(llid);
966 k = linelock->next;
967 txLockFree(llid);
968 llid = k;
969 }
970 txLockFree(lid);
971
972 TXN_UNLOCK();
973 }
974 tblk->next = tblk->last = 0;
975
976 /*
977 * remove tblock from logsynclist
978 * (allocation map pages inherited lsn of tblk and
979 * has been inserted in logsync list at txUpdateMap())
980 */
981 if (tblk->lsn) {
Dave Kleikamp7fab4792005-05-02 12:25:02 -0600982 LOGSYNC_LOCK(log, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700983 log->count--;
984 list_del(&tblk->synclist);
Dave Kleikamp7fab4792005-05-02 12:25:02 -0600985 LOGSYNC_UNLOCK(log, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700986 }
987}
988
Linus Torvalds1da177e2005-04-16 15:20:36 -0700989/*
Dave Kleikampf720e3b2007-06-06 15:28:35 -0500990 * txMaplock()
Linus Torvalds1da177e2005-04-16 15:20:36 -0700991 *
992 * function: allocate a transaction lock for freed page/entry;
Dave Kleikampf720e3b2007-06-06 15:28:35 -0500993 * for freed page, maplock is used as xtlock/dtlock type;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700994 */
995struct tlock *txMaplock(tid_t tid, struct inode *ip, int type)
996{
997 struct jfs_inode_info *jfs_ip = JFS_IP(ip);
998 lid_t lid;
999 struct tblock *tblk;
1000 struct tlock *tlck;
1001 struct maplock *maplock;
1002
1003 TXN_LOCK();
1004
1005 /*
1006 * allocate a tlock
1007 */
1008 lid = txLockAlloc();
1009 tlck = lid_to_tlock(lid);
1010
1011 /*
1012 * initialize tlock
1013 */
1014 tlck->tid = tid;
1015
1016 /* bind the tlock and the object */
1017 tlck->flag = tlckINODELOCK;
Dave Kleikamp438282d2005-09-20 14:58:11 -05001018 if (S_ISDIR(ip->i_mode))
1019 tlck->flag |= tlckDIRECTORY;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001020 tlck->ip = ip;
1021 tlck->mp = NULL;
1022
1023 tlck->type = type;
1024
1025 /*
1026 * enqueue transaction lock to transaction/inode
1027 */
1028 /* insert the tlock at tail of transaction tlock list */
1029 if (tid) {
1030 tblk = tid_to_tblock(tid);
1031 if (tblk->next)
1032 lid_to_tlock(tblk->last)->next = lid;
1033 else
1034 tblk->next = lid;
1035 tlck->next = 0;
1036 tblk->last = lid;
1037 }
1038 /* anonymous transaction:
1039 * insert the tlock at head of inode anonymous tlock list
1040 */
1041 else {
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);
1049 }
1050 }
1051
1052 TXN_UNLOCK();
1053
1054 /* initialize type dependent area for maplock */
1055 maplock = (struct maplock *) & tlck->lock;
1056 maplock->next = 0;
1057 maplock->maxcnt = 0;
1058 maplock->index = 0;
1059
1060 return tlck;
1061}
1062
Linus Torvalds1da177e2005-04-16 15:20:36 -07001063/*
Dave Kleikampf720e3b2007-06-06 15:28:35 -05001064 * txLinelock()
Linus Torvalds1da177e2005-04-16 15:20:36 -07001065 *
1066 * function: allocate a transaction lock for log vector list
1067 */
1068struct linelock *txLinelock(struct linelock * tlock)
1069{
1070 lid_t lid;
1071 struct tlock *tlck;
1072 struct linelock *linelock;
1073
1074 TXN_LOCK();
1075
1076 /* allocate a TxLock structure */
1077 lid = txLockAlloc();
1078 tlck = lid_to_tlock(lid);
1079
1080 TXN_UNLOCK();
1081
1082 /* initialize linelock */
1083 linelock = (struct linelock *) tlck;
1084 linelock->next = 0;
1085 linelock->flag = tlckLINELOCK;
1086 linelock->maxcnt = TLOCKLONG;
1087 linelock->index = 0;
Dave Kleikamp438282d2005-09-20 14:58:11 -05001088 if (tlck->flag & tlckDIRECTORY)
1089 linelock->flag |= tlckDIRECTORY;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001090
1091 /* append linelock after tlock */
1092 linelock->next = tlock->next;
1093 tlock->next = lid;
1094
1095 return linelock;
1096}
1097
Linus Torvalds1da177e2005-04-16 15:20:36 -07001098/*
Dave Kleikampf720e3b2007-06-06 15:28:35 -05001099 * transaction commit management
1100 * -----------------------------
Linus Torvalds1da177e2005-04-16 15:20:36 -07001101 */
1102
1103/*
Dave Kleikampf720e3b2007-06-06 15:28:35 -05001104 * NAME: txCommit()
Linus Torvalds1da177e2005-04-16 15:20:36 -07001105 *
Dave Kleikampf720e3b2007-06-06 15:28:35 -05001106 * 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).
Linus Torvalds1da177e2005-04-16 15:20:36 -07001113 *
Dave Kleikampf720e3b2007-06-06 15:28:35 -05001114 * 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.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001117 *
Dave Kleikampf720e3b2007-06-06 15:28:35 -05001118 * 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
1123 * iput and iclose).
Linus Torvalds1da177e2005-04-16 15:20:36 -07001124 *
1125 * PARAMETER:
1126 *
1127 * RETURN:
1128 *
1129 * serialization:
Dave Kleikampf720e3b2007-06-06 15:28:35 -05001130 * on entry the inode lock on each segment is assumed
1131 * to be held.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001132 *
1133 * i/o error:
1134 */
1135int txCommit(tid_t tid, /* transaction identifier */
1136 int nip, /* number of inodes to commit */
1137 struct inode **iplist, /* list of inode to commit */
1138 int flag)
1139{
1140 int rc = 0;
1141 struct commit cd;
1142 struct jfs_log *log;
1143 struct tblock *tblk;
1144 struct lrd *lrd;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001145 struct inode *ip;
1146 struct jfs_inode_info *jfs_ip;
1147 int k, n;
1148 ino_t top;
1149 struct super_block *sb;
1150
1151 jfs_info("txCommit, tid = %d, flag = %d", tid, flag);
1152 /* is read-only file system ? */
1153 if (isReadOnly(iplist[0])) {
1154 rc = -EROFS;
1155 goto TheEnd;
1156 }
1157
1158 sb = cd.sb = iplist[0]->i_sb;
1159 cd.tid = tid;
1160
1161 if (tid == 0)
1162 tid = txBegin(sb, 0);
1163 tblk = tid_to_tblock(tid);
1164
1165 /*
1166 * initialize commit structure
1167 */
1168 log = JFS_SBI(sb)->log;
1169 cd.log = log;
1170
1171 /* initialize log record descriptor in commit */
1172 lrd = &cd.lrd;
1173 lrd->logtid = cpu_to_le32(tblk->logtid);
1174 lrd->backchain = 0;
1175
1176 tblk->xflag |= flag;
1177
1178 if ((flag & (COMMIT_FORCE | COMMIT_SYNC)) == 0)
1179 tblk->xflag |= COMMIT_LAZY;
1180 /*
Dave Kleikampf720e3b2007-06-06 15:28:35 -05001181 * prepare non-journaled objects for commit
Linus Torvalds1da177e2005-04-16 15:20:36 -07001182 *
1183 * flush data pages of non-journaled file
1184 * to prevent the file getting non-initialized disk blocks
1185 * in case of crash.
1186 * (new blocks - )
1187 */
1188 cd.iplist = iplist;
1189 cd.nip = nip;
1190
1191 /*
Dave Kleikampf720e3b2007-06-06 15:28:35 -05001192 * acquire transaction lock on (on-disk) inodes
Linus Torvalds1da177e2005-04-16 15:20:36 -07001193 *
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
1197 *
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
1202 */
1203 for (k = 0; k < cd.nip; k++) {
1204 top = (cd.iplist[k])->i_ino;
1205 for (n = k + 1; n < cd.nip; n++) {
1206 ip = cd.iplist[n];
1207 if (ip->i_ino > top) {
1208 top = ip->i_ino;
1209 cd.iplist[n] = cd.iplist[k];
1210 cd.iplist[k] = ip;
1211 }
1212 }
1213
1214 ip = cd.iplist[k];
1215 jfs_ip = JFS_IP(ip);
1216
1217 /*
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.)
1224 *
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.
1228 *
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.
1234 *
1235 * if ((!S_ISDIR(ip->i_mode))
OGAWA Hirofumi28fd1292006-01-08 01:02:14 -08001236 * && (tblk->flag & COMMIT_DELETE) == 0)
1237 * filemap_write_and_wait(ip->i_mapping);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001238 */
1239
1240 /*
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
1244 */
1245 clear_cflag(COMMIT_Dirty, ip);
1246
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;
1251 if (!tblk->last)
1252 tblk->last = jfs_ip->atltail;
1253 jfs_ip->atlhead = jfs_ip->atltail = 0;
1254 TXN_LOCK();
1255 list_del_init(&jfs_ip->anon_inode_list);
1256 TXN_UNLOCK();
1257 }
1258
1259 /*
1260 * acquire transaction lock on on-disk inode page
1261 * (become first tlock of the tblk's tlock list)
1262 */
1263 if (((rc = diWrite(tid, ip))))
1264 goto out;
1265 }
1266
1267 /*
Dave Kleikampf720e3b2007-06-06 15:28:35 -05001268 * write log records from transaction locks
Linus Torvalds1da177e2005-04-16 15:20:36 -07001269 *
1270 * txUpdateMap() resets XAD_NEW in XAD.
1271 */
1272 if ((rc = txLog(log, tblk, &cd)))
1273 goto TheEnd;
1274
1275 /*
1276 * Ensure that inode isn't reused before
1277 * lazy commit thread finishes processing
1278 */
1279 if (tblk->xflag & COMMIT_DELETE) {
Al Viro7de9c6ee2010-10-23 11:11:40 -04001280 ihold(tblk->u.ip);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001281 /*
1282 * Avoid a rare deadlock
1283 *
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)
1290 */
Joern Engel1c0eeaf2007-10-16 23:30:44 -07001291 /*
1292 * I believe this code is no longer needed. Splitting I_LOCK
Christoph Hellwigeaff8072009-12-17 14:25:01 +01001293 * into two bits, I_NEW and I_SYNC should prevent this
Joern Engel1c0eeaf2007-10-16 23:30:44 -07001294 * 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.
1296 * Joern
1297 */
1298 if (tblk->u.ip->i_state & I_SYNC)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001299 tblk->xflag &= ~COMMIT_LAZY;
1300 }
1301
1302 ASSERT((!(tblk->xflag & COMMIT_DELETE)) ||
1303 ((tblk->u.ip->i_nlink == 0) &&
1304 !test_cflag(COMMIT_Nolink, tblk->u.ip)));
1305
1306 /*
Dave Kleikampf720e3b2007-06-06 15:28:35 -05001307 * write COMMIT log record
Linus Torvalds1da177e2005-04-16 15:20:36 -07001308 */
1309 lrd->type = cpu_to_le16(LOG_COMMIT);
1310 lrd->length = 0;
Dave Kleikamp3c2c2262011-06-20 13:00:27 -05001311 lmLog(log, tblk, lrd, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001312
1313 lmGroupCommit(log, tblk);
1314
1315 /*
Dave Kleikampf720e3b2007-06-06 15:28:35 -05001316 * - transaction is now committed -
Linus Torvalds1da177e2005-04-16 15:20:36 -07001317 */
1318
1319 /*
1320 * force pages in careful update
1321 * (imap addressing structure update)
1322 */
1323 if (flag & COMMIT_FORCE)
1324 txForce(tblk);
1325
1326 /*
Dave Kleikampf720e3b2007-06-06 15:28:35 -05001327 * update allocation map.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001328 *
1329 * update inode allocation map and inode:
1330 * free pager lock on memory object of inode if any.
Dave Kleikampf720e3b2007-06-06 15:28:35 -05001331 * update block allocation map.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001332 *
1333 * txUpdateMap() resets XAD_NEW in XAD.
1334 */
1335 if (tblk->xflag & COMMIT_FORCE)
1336 txUpdateMap(tblk);
1337
1338 /*
Dave Kleikampf720e3b2007-06-06 15:28:35 -05001339 * free transaction locks and pageout/free pages
Linus Torvalds1da177e2005-04-16 15:20:36 -07001340 */
1341 txRelease(tblk);
1342
1343 if ((tblk->flag & tblkGC_LAZY) == 0)
1344 txUnlock(tblk);
1345
1346
1347 /*
Dave Kleikampf720e3b2007-06-06 15:28:35 -05001348 * reset in-memory object state
Linus Torvalds1da177e2005-04-16 15:20:36 -07001349 */
1350 for (k = 0; k < cd.nip; k++) {
1351 ip = cd.iplist[k];
1352 jfs_ip = JFS_IP(ip);
1353
1354 /*
1355 * reset in-memory inode state
1356 */
1357 jfs_ip->bxflag = 0;
1358 jfs_ip->blid = 0;
1359 }
1360
1361 out:
1362 if (rc != 0)
1363 txAbort(tid, 1);
1364
1365 TheEnd:
1366 jfs_info("txCommit: tid = %d, returning %d", tid, rc);
1367 return rc;
1368}
1369
Linus Torvalds1da177e2005-04-16 15:20:36 -07001370/*
Dave Kleikampf720e3b2007-06-06 15:28:35 -05001371 * NAME: txLog()
Linus Torvalds1da177e2005-04-16 15:20:36 -07001372 *
Dave Kleikampf720e3b2007-06-06 15:28:35 -05001373 * 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.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001376 *
1377 * PARAMETERS:
1378 *
1379 * RETURN :
1380 */
1381static int txLog(struct jfs_log * log, struct tblock * tblk, struct commit * cd)
1382{
1383 int rc = 0;
1384 struct inode *ip;
1385 lid_t lid;
1386 struct tlock *tlck;
1387 struct lrd *lrd = &cd->lrd;
1388
1389 /*
1390 * write log record(s) for each tlock of transaction,
1391 */
1392 for (lid = tblk->next; lid; lid = tlck->next) {
1393 tlck = lid_to_tlock(lid);
1394
1395 tlck->flag |= tlckLOG;
1396
1397 /* initialize lrd common */
1398 ip = tlck->ip;
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);
1402
1403 /* write log record of page from the tlock */
1404 switch (tlck->type & tlckTYPE) {
1405 case tlckXTREE:
1406 xtLog(log, tblk, lrd, tlck);
1407 break;
1408
1409 case tlckDTREE:
1410 dtLog(log, tblk, lrd, tlck);
1411 break;
1412
1413 case tlckINODE:
1414 diLog(log, tblk, lrd, tlck, cd);
1415 break;
1416
1417 case tlckMAP:
1418 mapLog(log, tblk, lrd, tlck);
1419 break;
1420
1421 case tlckDATA:
1422 dataLog(log, tblk, lrd, tlck);
1423 break;
1424
1425 default:
1426 jfs_err("UFO tlock:0x%p", tlck);
1427 }
1428 }
1429
1430 return rc;
1431}
1432
Linus Torvalds1da177e2005-04-16 15:20:36 -07001433/*
Dave Kleikampf720e3b2007-06-06 15:28:35 -05001434 * diLog()
Linus Torvalds1da177e2005-04-16 15:20:36 -07001435 *
Dave Kleikampf720e3b2007-06-06 15:28:35 -05001436 * function: log inode tlock and format maplock to update bmap;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001437 */
1438static int diLog(struct jfs_log * log, struct tblock * tblk, struct lrd * lrd,
Dave Kleikampf720e3b2007-06-06 15:28:35 -05001439 struct tlock * tlck, struct commit * cd)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001440{
1441 int rc = 0;
1442 struct metapage *mp;
1443 pxd_t *pxd;
1444 struct pxd_lock *pxdlock;
1445
1446 mp = tlck->mp;
1447
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);
1451
1452 pxd = &lrd->log.redopage.pxd;
1453
1454 /*
Dave Kleikampf720e3b2007-06-06 15:28:35 -05001455 * inode after image
Linus Torvalds1da177e2005-04-16 15:20:36 -07001456 */
1457 if (tlck->type & tlckENTRY) {
1458 /* log after-image for logredo(): */
1459 lrd->type = cpu_to_le16(LOG_REDOPAGE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001460 PXDaddress(pxd, mp->index);
1461 PXDlength(pxd,
1462 mp->logical_size >> tblk->sb->s_blocksize_bits);
1463 lrd->backchain = cpu_to_le32(lmLog(log, tblk, lrd, tlck));
1464
1465 /* mark page as homeward bound */
1466 tlck->flag |= tlckWRITEPAGE;
1467 } else if (tlck->type & tlckFREE) {
1468 /*
Dave Kleikampf720e3b2007-06-06 15:28:35 -05001469 * free inode extent
Linus Torvalds1da177e2005-04-16 15:20:36 -07001470 *
1471 * (pages of the freed inode extent have been invalidated and
1472 * a maplock for free of the extent has been formatted at
1473 * txLock() time);
1474 *
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;
1479 */
1480
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;
1484 */
1485 lrd->type = cpu_to_le16(LOG_NOREDOINOEXT);
1486 /*
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].
1492 */
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]);
1497
1498 pxdlock = (struct pxd_lock *) & tlck->lock;
1499 *pxd = pxdlock->pxd;
1500 lrd->backchain = cpu_to_le32(lmLog(log, tblk, lrd, NULL));
1501
1502 /* update bmap */
1503 tlck->flag |= tlckUPDATEMAP;
1504
1505 /* mark page as homeward bound */
1506 tlck->flag |= tlckWRITEPAGE;
1507 } else
1508 jfs_err("diLog: UFO type tlck:0x%p", tlck);
1509#ifdef _JFS_WIP
1510 /*
Dave Kleikampf720e3b2007-06-06 15:28:35 -05001511 * alloc/free external EA extent
Linus Torvalds1da177e2005-04-16 15:20:36 -07001512 *
1513 * a maplock for txUpdateMap() to update bPWMAP for alloc/free
1514 * of the extent has been formatted at txLock() time;
1515 */
1516 else {
1517 assert(tlck->type & tlckEA);
1518
1519 /* log LOG_UPDATEMAP for logredo() to update bmap for
1520 * alloc of new (and free of old) external EA extent;
1521 */
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);
1529 else
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;
1534 lrd->backchain =
1535 cpu_to_le32(lmLog(log, tblk, lrd, NULL));
1536 }
1537
1538 /* update bmap */
1539 tlck->flag |= tlckUPDATEMAP;
1540 }
1541#endif /* _JFS_WIP */
1542
1543 return rc;
1544}
1545
Linus Torvalds1da177e2005-04-16 15:20:36 -07001546/*
Dave Kleikampf720e3b2007-06-06 15:28:35 -05001547 * dataLog()
Linus Torvalds1da177e2005-04-16 15:20:36 -07001548 *
Dave Kleikampf720e3b2007-06-06 15:28:35 -05001549 * function: log data tlock
Linus Torvalds1da177e2005-04-16 15:20:36 -07001550 */
1551static int dataLog(struct jfs_log * log, struct tblock * tblk, struct lrd * lrd,
1552 struct tlock * tlck)
1553{
1554 struct metapage *mp;
1555 pxd_t *pxd;
1556
1557 mp = tlck->mp;
1558
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);
1562
1563 pxd = &lrd->log.redopage.pxd;
1564
1565 /* log after-image for logredo(): */
1566 lrd->type = cpu_to_le16(LOG_REDOPAGE);
1567
1568 if (jfs_dirtable_inline(tlck->ip)) {
1569 /*
1570 * The table has been truncated, we've must have deleted
1571 * the last entry, so don't bother logging this
1572 */
1573 mp->lid = 0;
Dave Kleikamp7fab4792005-05-02 12:25:02 -06001574 grab_metapage(mp);
1575 metapage_homeok(mp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001576 discard_metapage(mp);
1577 tlck->mp = NULL;
1578 return 0;
1579 }
1580
1581 PXDaddress(pxd, mp->index);
1582 PXDlength(pxd, mp->logical_size >> tblk->sb->s_blocksize_bits);
1583
1584 lrd->backchain = cpu_to_le32(lmLog(log, tblk, lrd, tlck));
1585
1586 /* mark page as homeward bound */
1587 tlck->flag |= tlckWRITEPAGE;
1588
1589 return 0;
1590}
1591
Linus Torvalds1da177e2005-04-16 15:20:36 -07001592/*
Dave Kleikampf720e3b2007-06-06 15:28:35 -05001593 * dtLog()
Linus Torvalds1da177e2005-04-16 15:20:36 -07001594 *
Dave Kleikampf720e3b2007-06-06 15:28:35 -05001595 * function: log dtree tlock and format maplock to update bmap;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001596 */
1597static void dtLog(struct jfs_log * log, struct tblock * tblk, struct lrd * lrd,
1598 struct tlock * tlck)
1599{
1600 struct metapage *mp;
1601 struct pxd_lock *pxdlock;
1602 pxd_t *pxd;
1603
1604 mp = tlck->mp;
1605
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);
1609
1610 pxd = &lrd->log.redopage.pxd;
1611
1612 if (tlck->type & tlckBTROOT)
1613 lrd->log.redopage.type |= cpu_to_le16(LOG_BTROOT);
1614
1615 /*
Dave Kleikampf720e3b2007-06-06 15:28:35 -05001616 * 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;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001620 */
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;
1625 */
1626 lrd->type = cpu_to_le16(LOG_REDOPAGE);
1627 if (tlck->type & tlckEXTEND)
1628 lrd->log.redopage.type |= cpu_to_le16(LOG_EXTEND);
1629 else
1630 lrd->log.redopage.type |= cpu_to_le16(LOG_NEW);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001631 PXDaddress(pxd, mp->index);
1632 PXDlength(pxd,
1633 mp->logical_size >> tblk->sb->s_blocksize_bits);
1634 lrd->backchain = cpu_to_le32(lmLog(log, tblk, lrd, tlck));
1635
1636 /* format a maplock for txUpdateMap() to update bPMAP for
1637 * alloc of the new page;
1638 */
1639 if (tlck->type & tlckBTROOT)
1640 return;
1641 tlck->flag |= tlckUPDATEMAP;
1642 pxdlock = (struct pxd_lock *) & tlck->lock;
1643 pxdlock->flag = mlckALLOCPXD;
1644 pxdlock->pxd = *pxd;
1645
1646 pxdlock->index = 1;
1647
1648 /* mark page as homeward bound */
1649 tlck->flag |= tlckWRITEPAGE;
1650 return;
1651 }
1652
1653 /*
Dave Kleikampf720e3b2007-06-06 15:28:35 -05001654 * entry insertion/deletion,
1655 * sibling page link update (old right page before split);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001656 */
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);
1661 PXDlength(pxd,
1662 mp->logical_size >> tblk->sb->s_blocksize_bits);
1663 lrd->backchain = cpu_to_le32(lmLog(log, tblk, lrd, tlck));
1664
1665 /* mark page as homeward bound */
1666 tlck->flag |= tlckWRITEPAGE;
1667 return;
1668 }
1669
1670 /*
Dave Kleikampf720e3b2007-06-06 15:28:35 -05001671 * page deletion: page has been invalidated
1672 * page relocation: source extent
Linus Torvalds1da177e2005-04-16 15:20:36 -07001673 *
Dave Kleikampf720e3b2007-06-06 15:28:35 -05001674 * a maplock for free of the page has been formatted
1675 * at txLock() time);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001676 */
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
1681 */
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));
1686
1687 /* a maplock for txUpdateMap() for free of the page
1688 * has been formatted at txLock() time;
1689 */
1690 tlck->flag |= tlckUPDATEMAP;
1691 }
1692 return;
1693}
1694
Linus Torvalds1da177e2005-04-16 15:20:36 -07001695/*
Dave Kleikampf720e3b2007-06-06 15:28:35 -05001696 * xtLog()
Linus Torvalds1da177e2005-04-16 15:20:36 -07001697 *
Dave Kleikampf720e3b2007-06-06 15:28:35 -05001698 * function: log xtree tlock and format maplock to update bmap;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001699 */
1700static void xtLog(struct jfs_log * log, struct tblock * tblk, struct lrd * lrd,
1701 struct tlock * tlck)
1702{
1703 struct inode *ip;
1704 struct metapage *mp;
1705 xtpage_t *p;
1706 struct xtlock *xtlck;
1707 struct maplock *maplock;
1708 struct xdlistlock *xadlock;
1709 struct pxd_lock *pxdlock;
Dave Kleikamp66f31312005-05-02 12:24:46 -06001710 pxd_t *page_pxd;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001711 int next, lwm, hwm;
1712
1713 ip = tlck->ip;
1714 mp = tlck->mp;
1715
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);
1719
Dave Kleikamp66f31312005-05-02 12:24:46 -06001720 page_pxd = &lrd->log.redopage.pxd;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001721
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);
1728 } else
1729 p = (xtpage_t *) mp->data;
1730 next = le16_to_cpu(p->header.nextindex);
1731
1732 xtlck = (struct xtlock *) & tlck->lock;
1733
1734 maplock = (struct maplock *) & tlck->lock;
1735 xadlock = (struct xdlistlock *) maplock;
1736
1737 /*
Dave Kleikampf720e3b2007-06-06 15:28:35 -05001738 * entry insertion/extension;
1739 * sibling page link update (old right page before split);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001740 */
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.
1748 */
1749 lrd->type = cpu_to_le16(LOG_REDOPAGE);
Dave Kleikamp66f31312005-05-02 12:24:46 -06001750 PXDaddress(page_pxd, mp->index);
1751 PXDlength(page_pxd,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001752 mp->logical_size >> tblk->sb->s_blocksize_bits);
1753 lrd->backchain = cpu_to_le32(lmLog(log, tblk, lrd, tlck));
1754
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.
1759 */
1760 lwm = xtlck->lwm.offset;
1761 if (lwm == 0)
1762 lwm = XTPAGEMAXSLOT;
1763
1764 if (lwm == next)
1765 goto out;
1766 if (lwm > next) {
Joe Perchesb18db6d2016-03-30 05:23:16 -07001767 jfs_err("xtLog: lwm > next");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001768 goto out;
1769 }
1770 tlck->flag |= tlckUPDATEMAP;
1771 xadlock->flag = mlckALLOCXADLIST;
1772 xadlock->count = next - lwm;
Dave Kleikamp66f31312005-05-02 12:24:46 -06001773 if ((xadlock->count <= 4) && (tblk->xflag & COMMIT_LAZY)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001774 int i;
Dave Kleikamp66f31312005-05-02 12:24:46 -06001775 pxd_t *pxd;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001776 /*
1777 * Lazy commit may allow xtree to be modified before
1778 * txUpdateMap runs. Copy xad into linelock to
1779 * preserve correct data.
Dave Kleikamp66f31312005-05-02 12:24:46 -06001780 *
1781 * We can fit twice as may pxd's as xads in the lock
Linus Torvalds1da177e2005-04-16 15:20:36 -07001782 */
Dave Kleikamp66f31312005-05-02 12:24:46 -06001783 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]));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001788 p->xad[lwm + i].flag &=
1789 ~(XAD_NEW | XAD_EXTENDED);
Dave Kleikamp66f31312005-05-02 12:24:46 -06001790 pxd++;
1791 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001792 } else {
1793 /*
1794 * xdlist will point to into inode's xtree, ensure
1795 * that transaction is not committed lazily.
1796 */
Dave Kleikamp66f31312005-05-02 12:24:46 -06001797 xadlock->flag = mlckALLOCXADLIST;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001798 xadlock->xdlist = &p->xad[lwm];
1799 tblk->xflag &= ~COMMIT_LAZY;
1800 }
Joe Perches6ed71e92016-03-30 05:23:18 -07001801 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);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001803
1804 maplock->index = 1;
1805
1806 out:
1807 /* mark page as homeward bound */
1808 tlck->flag |= tlckWRITEPAGE;
1809
1810 return;
1811 }
1812
1813 /*
Dave Kleikampf720e3b2007-06-06 15:28:35 -05001814 * page deletion: file deletion/truncation (ref. xtTruncate())
Linus Torvalds1da177e2005-04-16 15:20:36 -07001815 *
1816 * (page will be invalidated after log is written and bmap
1817 * is updated from the page);
1818 */
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
1825 * filter;
1826 *
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;
1831 */
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;
1835 */
1836 if (tblk->xflag & COMMIT_TRUNCATE) {
1837 /* write NOREDOPAGE for the page */
1838 lrd->type = cpu_to_le16(LOG_NOREDOPAGE);
Dave Kleikamp66f31312005-05-02 12:24:46 -06001839 PXDaddress(page_pxd, mp->index);
1840 PXDlength(page_pxd,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001841 mp->logical_size >> tblk->sb->
1842 s_blocksize_bits);
1843 lrd->backchain =
1844 cpu_to_le32(lmLog(log, tblk, lrd, NULL));
1845
1846 if (tlck->type & tlckBTROOT) {
1847 /* Empty xtree must be logged */
1848 lrd->type = cpu_to_le16(LOG_REDOPAGE);
1849 lrd->backchain =
1850 cpu_to_le32(lmLog(log, tblk, lrd, tlck));
1851 }
1852 }
1853
1854 /* init LOG_UPDATEMAP of the freed extents
1855 * XAD[XTENTRYSTART:hwm) from the deleted page itself
1856 * for logredo() to update bmap;
1857 */
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;
1867 xtlck->index = 1;
1868 lrd->backchain = cpu_to_le32(lmLog(log, tblk, lrd, tlck));
1869
1870 /* format a maplock for txUpdateMap() to update bmap
1871 * to free extents of XAD[XTENTRYSTART:hwm) from the
1872 * deleted page itself;
1873 */
1874 tlck->flag |= tlckUPDATEMAP;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001875 xadlock->count = hwm - XTENTRYSTART + 1;
Dave Kleikamp66f31312005-05-02 12:24:46 -06001876 if ((xadlock->count <= 4) && (tblk->xflag & COMMIT_LAZY)) {
1877 int i;
1878 pxd_t *pxd;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001879 /*
1880 * Lazy commit may allow xtree to be modified before
1881 * txUpdateMap runs. Copy xad into linelock to
1882 * preserve correct data.
Dave Kleikamp66f31312005-05-02 12:24:46 -06001883 *
1884 * We can fit twice as may pxd's as xads in the lock
Linus Torvalds1da177e2005-04-16 15:20:36 -07001885 */
Dave Kleikamp66f31312005-05-02 12:24:46 -06001886 xadlock->flag = mlckFREEPXDLIST;
1887 pxd = xadlock->xdlist = &xtlck->pxdlock;
1888 for (i = 0; i < xadlock->count; i++) {
1889 PXDaddress(pxd,
1890 addressXAD(&p->xad[XTENTRYSTART + i]));
1891 PXDlength(pxd,
1892 lengthXAD(&p->xad[XTENTRYSTART + i]));
1893 pxd++;
1894 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001895 } else {
1896 /*
1897 * xdlist will point to into inode's xtree, ensure
1898 * that transaction is not committed lazily.
1899 */
Dave Kleikamp66f31312005-05-02 12:24:46 -06001900 xadlock->flag = mlckFREEXADLIST;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001901 xadlock->xdlist = &p->xad[XTENTRYSTART];
1902 tblk->xflag &= ~COMMIT_LAZY;
1903 }
1904 jfs_info("xtLog: free ip:0x%p mp:0x%p count:%d lwm:2",
1905 tlck->ip, mp, xadlock->count);
1906
1907 maplock->index = 1;
1908
1909 /* mark page as invalid */
1910 if (((tblk->xflag & COMMIT_PWMAP) || S_ISDIR(ip->i_mode))
1911 && !(tlck->type & tlckBTROOT))
1912 tlck->flag |= tlckFREEPAGE;
1913 /*
1914 else (tblk->xflag & COMMIT_PMAP)
1915 ? release the page;
1916 */
1917 return;
1918 }
1919
1920 /*
Dave Kleikampf720e3b2007-06-06 15:28:35 -05001921 * page/entry truncation: file truncation (ref. xtTruncate())
Linus Torvalds1da177e2005-04-16 15:20:36 -07001922 *
Dave Kleikampf720e3b2007-06-06 15:28:35 -05001923 * |----------+------+------+---------------|
1924 * | | |
1925 * | | hwm - hwm before truncation
1926 * | next - truncation point
1927 * lwm - lwm before truncation
Linus Torvalds1da177e2005-04-16 15:20:36 -07001928 * header ?
1929 */
1930 if (tlck->type & tlckTRUNCATE) {
Arnd Bergmannbacf3d22019-03-22 15:19:16 +01001931 pxd_t pxd; /* truncated extent of xad */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001932 int twm;
1933
1934 /*
1935 * For truncation the entire linelock may be used, so it would
1936 * be difficult to store xad list in linelock itself.
1937 * Therefore, we'll just force transaction to be committed
1938 * synchronously, so that xtree pages won't be changed before
1939 * txUpdateMap runs.
1940 */
1941 tblk->xflag &= ~COMMIT_LAZY;
1942 lwm = xtlck->lwm.offset;
1943 if (lwm == 0)
1944 lwm = XTPAGEMAXSLOT;
1945 hwm = xtlck->hwm.offset;
1946 twm = xtlck->twm.offset;
1947
1948 /*
Dave Kleikampf720e3b2007-06-06 15:28:35 -05001949 * write log records
Linus Torvalds1da177e2005-04-16 15:20:36 -07001950 */
1951 /* log after-image for logredo():
1952 *
1953 * logredo() will update bmap for alloc of new/extended
1954 * extents (XAD_NEW|XAD_EXTEND) of XAD[lwm:next) from
1955 * after-image of XADlist;
1956 * logredo() resets (XAD_NEW|XAD_EXTEND) flag when
1957 * applying the after-image to the meta-data page.
1958 */
1959 lrd->type = cpu_to_le16(LOG_REDOPAGE);
Dave Kleikamp66f31312005-05-02 12:24:46 -06001960 PXDaddress(page_pxd, mp->index);
1961 PXDlength(page_pxd,
1962 mp->logical_size >> tblk->sb->s_blocksize_bits);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001963 lrd->backchain = cpu_to_le32(lmLog(log, tblk, lrd, tlck));
1964
1965 /*
1966 * truncate entry XAD[twm == next - 1]:
1967 */
1968 if (twm == next - 1) {
1969 /* init LOG_UPDATEMAP for logredo() to update bmap for
1970 * free of truncated delta extent of the truncated
1971 * entry XAD[next - 1]:
1972 * (xtlck->pxdlock = truncated delta extent);
1973 */
1974 pxdlock = (struct pxd_lock *) & xtlck->pxdlock;
1975 /* assert(pxdlock->type & tlckTRUNCATE); */
1976 lrd->type = cpu_to_le16(LOG_UPDATEMAP);
1977 lrd->log.updatemap.type = cpu_to_le16(LOG_FREEPXD);
1978 lrd->log.updatemap.nxd = cpu_to_le16(1);
1979 lrd->log.updatemap.pxd = pxdlock->pxd;
Dave Kleikamp66f31312005-05-02 12:24:46 -06001980 pxd = pxdlock->pxd; /* save to format maplock */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001981 lrd->backchain =
1982 cpu_to_le32(lmLog(log, tblk, lrd, NULL));
1983 }
1984
1985 /*
1986 * free entries XAD[next:hwm]:
1987 */
1988 if (hwm >= next) {
1989 /* init LOG_UPDATEMAP of the freed extents
1990 * XAD[next:hwm] from the deleted page itself
1991 * for logredo() to update bmap;
1992 */
1993 lrd->type = cpu_to_le16(LOG_UPDATEMAP);
1994 lrd->log.updatemap.type =
1995 cpu_to_le16(LOG_FREEXADLIST);
1996 xtlck = (struct xtlock *) & tlck->lock;
1997 hwm = xtlck->hwm.offset;
1998 lrd->log.updatemap.nxd =
1999 cpu_to_le16(hwm - next + 1);
2000 /* reformat linelock for lmLog() */
2001 xtlck->header.offset = next;
2002 xtlck->header.length = hwm - next + 1;
2003 xtlck->index = 1;
2004 lrd->backchain =
2005 cpu_to_le32(lmLog(log, tblk, lrd, tlck));
2006 }
2007
2008 /*
Dave Kleikampf720e3b2007-06-06 15:28:35 -05002009 * format maplock(s) for txUpdateMap() to update bmap
Linus Torvalds1da177e2005-04-16 15:20:36 -07002010 */
2011 maplock->index = 0;
2012
2013 /*
2014 * allocate entries XAD[lwm:next):
2015 */
2016 if (lwm < next) {
2017 /* format a maplock for txUpdateMap() to update bPMAP
2018 * for alloc of new/extended extents of XAD[lwm:next)
2019 * from the page itself;
2020 * txUpdateMap() resets (XAD_NEW|XAD_EXTEND) flag.
2021 */
2022 tlck->flag |= tlckUPDATEMAP;
2023 xadlock->flag = mlckALLOCXADLIST;
2024 xadlock->count = next - lwm;
2025 xadlock->xdlist = &p->xad[lwm];
2026
Joe Perches6ed71e92016-03-30 05:23:18 -07002027 jfs_info("xtLog: alloc ip:0x%p mp:0x%p count:%d lwm:%d next:%d",
Linus Torvalds1da177e2005-04-16 15:20:36 -07002028 tlck->ip, mp, xadlock->count, lwm, next);
2029 maplock->index++;
2030 xadlock++;
2031 }
2032
2033 /*
2034 * truncate entry XAD[twm == next - 1]:
2035 */
2036 if (twm == next - 1) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002037 /* format a maplock for txUpdateMap() to update bmap
2038 * to free truncated delta extent of the truncated
2039 * entry XAD[next - 1];
2040 * (xtlck->pxdlock = truncated delta extent);
2041 */
2042 tlck->flag |= tlckUPDATEMAP;
2043 pxdlock = (struct pxd_lock *) xadlock;
2044 pxdlock->flag = mlckFREEPXD;
2045 pxdlock->count = 1;
Dave Kleikamp66f31312005-05-02 12:24:46 -06002046 pxdlock->pxd = pxd;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002047
Joe Perches6ed71e92016-03-30 05:23:18 -07002048 jfs_info("xtLog: truncate ip:0x%p mp:0x%p count:%d hwm:%d",
2049 ip, mp, pxdlock->count, hwm);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002050 maplock->index++;
2051 xadlock++;
2052 }
2053
2054 /*
2055 * free entries XAD[next:hwm]:
2056 */
2057 if (hwm >= next) {
2058 /* format a maplock for txUpdateMap() to update bmap
2059 * to free extents of XAD[next:hwm] from thedeleted
2060 * page itself;
2061 */
2062 tlck->flag |= tlckUPDATEMAP;
2063 xadlock->flag = mlckFREEXADLIST;
2064 xadlock->count = hwm - next + 1;
2065 xadlock->xdlist = &p->xad[next];
2066
Joe Perches6ed71e92016-03-30 05:23:18 -07002067 jfs_info("xtLog: free ip:0x%p mp:0x%p count:%d next:%d hwm:%d",
Linus Torvalds1da177e2005-04-16 15:20:36 -07002068 tlck->ip, mp, xadlock->count, next, hwm);
2069 maplock->index++;
2070 }
2071
2072 /* mark page as homeward bound */
2073 tlck->flag |= tlckWRITEPAGE;
2074 }
2075 return;
2076}
2077
Linus Torvalds1da177e2005-04-16 15:20:36 -07002078/*
Dave Kleikampf720e3b2007-06-06 15:28:35 -05002079 * mapLog()
Linus Torvalds1da177e2005-04-16 15:20:36 -07002080 *
Dave Kleikampf720e3b2007-06-06 15:28:35 -05002081 * function: log from maplock of freed data extents;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002082 */
Dave Kleikamp6cb12692005-09-15 23:25:41 -05002083static void mapLog(struct jfs_log * log, struct tblock * tblk, struct lrd * lrd,
2084 struct tlock * tlck)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002085{
2086 struct pxd_lock *pxdlock;
2087 int i, nlock;
2088 pxd_t *pxd;
2089
2090 /*
Dave Kleikampf720e3b2007-06-06 15:28:35 -05002091 * page relocation: free the source page extent
Linus Torvalds1da177e2005-04-16 15:20:36 -07002092 *
2093 * a maplock for txUpdateMap() for free of the page
2094 * has been formatted at txLock() time saving the src
2095 * relocated page address;
2096 */
2097 if (tlck->type & tlckRELOCATE) {
2098 /* log LOG_NOREDOPAGE of the old relocated page
2099 * for logredo() to start NoRedoPage filter;
2100 */
2101 lrd->type = cpu_to_le16(LOG_NOREDOPAGE);
2102 pxdlock = (struct pxd_lock *) & tlck->lock;
2103 pxd = &lrd->log.redopage.pxd;
2104 *pxd = pxdlock->pxd;
2105 lrd->backchain = cpu_to_le32(lmLog(log, tblk, lrd, NULL));
2106
2107 /* (N.B. currently, logredo() does NOT update bmap
2108 * for free of the page itself for (LOG_XTREE|LOG_NOREDOPAGE);
2109 * if page free from relocation, LOG_UPDATEMAP log is
2110 * specifically generated now for logredo()
2111 * to update bmap for free of src relocated page;
2112 * (new flag LOG_RELOCATE may be introduced which will
2113 * inform logredo() to start NORedoPage filter and also
2114 * update block allocation map at the same time, thus
2115 * avoiding an extra log write);
2116 */
2117 lrd->type = cpu_to_le16(LOG_UPDATEMAP);
2118 lrd->log.updatemap.type = cpu_to_le16(LOG_FREEPXD);
2119 lrd->log.updatemap.nxd = cpu_to_le16(1);
2120 lrd->log.updatemap.pxd = pxdlock->pxd;
2121 lrd->backchain = cpu_to_le32(lmLog(log, tblk, lrd, NULL));
2122
2123 /* a maplock for txUpdateMap() for free of the page
2124 * has been formatted at txLock() time;
2125 */
2126 tlck->flag |= tlckUPDATEMAP;
2127 return;
2128 }
2129 /*
2130
2131 * Otherwise it's not a relocate request
2132 *
2133 */
2134 else {
2135 /* log LOG_UPDATEMAP for logredo() to update bmap for
2136 * free of truncated/relocated delta extent of the data;
2137 * e.g.: external EA extent, relocated/truncated extent
2138 * from xtTailgate();
2139 */
2140 lrd->type = cpu_to_le16(LOG_UPDATEMAP);
2141 pxdlock = (struct pxd_lock *) & tlck->lock;
2142 nlock = pxdlock->index;
2143 for (i = 0; i < nlock; i++, pxdlock++) {
2144 if (pxdlock->flag & mlckALLOCPXD)
2145 lrd->log.updatemap.type =
2146 cpu_to_le16(LOG_ALLOCPXD);
2147 else
2148 lrd->log.updatemap.type =
2149 cpu_to_le16(LOG_FREEPXD);
2150 lrd->log.updatemap.nxd = cpu_to_le16(1);
2151 lrd->log.updatemap.pxd = pxdlock->pxd;
2152 lrd->backchain =
2153 cpu_to_le32(lmLog(log, tblk, lrd, NULL));
2154 jfs_info("mapLog: xaddr:0x%lx xlen:0x%x",
2155 (ulong) addressPXD(&pxdlock->pxd),
2156 lengthPXD(&pxdlock->pxd));
2157 }
2158
2159 /* update bmap */
2160 tlck->flag |= tlckUPDATEMAP;
2161 }
2162}
2163
Linus Torvalds1da177e2005-04-16 15:20:36 -07002164/*
Dave Kleikampf720e3b2007-06-06 15:28:35 -05002165 * txEA()
Linus Torvalds1da177e2005-04-16 15:20:36 -07002166 *
Dave Kleikampf720e3b2007-06-06 15:28:35 -05002167 * function: acquire maplock for EA/ACL extents or
2168 * set COMMIT_INLINE flag;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002169 */
2170void txEA(tid_t tid, struct inode *ip, dxd_t * oldea, dxd_t * newea)
2171{
2172 struct tlock *tlck = NULL;
2173 struct pxd_lock *maplock = NULL, *pxdlock = NULL;
2174
2175 /*
2176 * format maplock for alloc of new EA extent
2177 */
2178 if (newea) {
2179 /* Since the newea could be a completely zeroed entry we need to
2180 * check for the two flags which indicate we should actually
2181 * commit new EA data
2182 */
2183 if (newea->flag & DXD_EXTENT) {
2184 tlck = txMaplock(tid, ip, tlckMAP);
2185 maplock = (struct pxd_lock *) & tlck->lock;
2186 pxdlock = (struct pxd_lock *) maplock;
2187 pxdlock->flag = mlckALLOCPXD;
2188 PXDaddress(&pxdlock->pxd, addressDXD(newea));
2189 PXDlength(&pxdlock->pxd, lengthDXD(newea));
2190 pxdlock++;
2191 maplock->index = 1;
2192 } else if (newea->flag & DXD_INLINE) {
2193 tlck = NULL;
2194
2195 set_cflag(COMMIT_Inlineea, ip);
2196 }
2197 }
2198
2199 /*
2200 * format maplock for free of old EA extent
2201 */
2202 if (!test_cflag(COMMIT_Nolink, ip) && oldea->flag & DXD_EXTENT) {
2203 if (tlck == NULL) {
2204 tlck = txMaplock(tid, ip, tlckMAP);
2205 maplock = (struct pxd_lock *) & tlck->lock;
2206 pxdlock = (struct pxd_lock *) maplock;
2207 maplock->index = 0;
2208 }
2209 pxdlock->flag = mlckFREEPXD;
2210 PXDaddress(&pxdlock->pxd, addressDXD(oldea));
2211 PXDlength(&pxdlock->pxd, lengthDXD(oldea));
2212 maplock->index++;
2213 }
2214}
2215
Linus Torvalds1da177e2005-04-16 15:20:36 -07002216/*
Dave Kleikampf720e3b2007-06-06 15:28:35 -05002217 * txForce()
Linus Torvalds1da177e2005-04-16 15:20:36 -07002218 *
2219 * function: synchronously write pages locked by transaction
Dave Kleikampf720e3b2007-06-06 15:28:35 -05002220 * after txLog() but before txUpdateMap();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002221 */
Dave Kleikamp6cb12692005-09-15 23:25:41 -05002222static void txForce(struct tblock * tblk)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002223{
2224 struct tlock *tlck;
2225 lid_t lid, next;
2226 struct metapage *mp;
2227
2228 /*
2229 * reverse the order of transaction tlocks in
2230 * careful update order of address index pages
2231 * (right to left, bottom up)
2232 */
2233 tlck = lid_to_tlock(tblk->next);
2234 lid = tlck->next;
2235 tlck->next = 0;
2236 while (lid) {
2237 tlck = lid_to_tlock(lid);
2238 next = tlck->next;
2239 tlck->next = tblk->next;
2240 tblk->next = lid;
2241 lid = next;
2242 }
2243
2244 /*
2245 * synchronously write the page, and
2246 * hold the page for txUpdateMap();
2247 */
2248 for (lid = tblk->next; lid; lid = next) {
2249 tlck = lid_to_tlock(lid);
2250 next = tlck->next;
2251
2252 if ((mp = tlck->mp) != NULL &&
2253 (tlck->type & tlckBTROOT) == 0) {
2254 assert(mp->xflag & COMMIT_PAGE);
2255
2256 if (tlck->flag & tlckWRITEPAGE) {
2257 tlck->flag &= ~tlckWRITEPAGE;
2258
2259 /* do not release page to freelist */
Dave Kleikamp7fab4792005-05-02 12:25:02 -06002260 force_metapage(mp);
2261#if 0
Linus Torvalds1da177e2005-04-16 15:20:36 -07002262 /*
2263 * The "right" thing to do here is to
2264 * synchronously write the metadata.
2265 * With the current implementation this
2266 * is hard since write_metapage requires
2267 * us to kunmap & remap the page. If we
2268 * have tlocks pointing into the metadata
2269 * pages, we don't want to do this. I think
2270 * we can get by with synchronously writing
2271 * the pages when they are released.
2272 */
Dave Kleikamp7fab4792005-05-02 12:25:02 -06002273 assert(mp->nohomeok);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002274 set_bit(META_dirty, &mp->flag);
2275 set_bit(META_sync, &mp->flag);
Dave Kleikamp7fab4792005-05-02 12:25:02 -06002276#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07002277 }
2278 }
2279 }
2280}
2281
Linus Torvalds1da177e2005-04-16 15:20:36 -07002282/*
Dave Kleikampf720e3b2007-06-06 15:28:35 -05002283 * txUpdateMap()
Linus Torvalds1da177e2005-04-16 15:20:36 -07002284 *
Dave Kleikampf720e3b2007-06-06 15:28:35 -05002285 * function: update persistent allocation map (and working map
2286 * if appropriate);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002287 *
2288 * parameter:
2289 */
2290static void txUpdateMap(struct tblock * tblk)
2291{
2292 struct inode *ip;
2293 struct inode *ipimap;
2294 lid_t lid;
2295 struct tlock *tlck;
2296 struct maplock *maplock;
2297 struct pxd_lock pxdlock;
2298 int maptype;
2299 int k, nlock;
2300 struct metapage *mp = NULL;
2301
2302 ipimap = JFS_SBI(tblk->sb)->ipimap;
2303
2304 maptype = (tblk->xflag & COMMIT_PMAP) ? COMMIT_PMAP : COMMIT_PWMAP;
2305
2306
2307 /*
Dave Kleikampf720e3b2007-06-06 15:28:35 -05002308 * update block allocation map
Linus Torvalds1da177e2005-04-16 15:20:36 -07002309 *
2310 * update allocation state in pmap (and wmap) and
2311 * update lsn of the pmap page;
2312 */
2313 /*
2314 * scan each tlock/page of transaction for block allocation/free:
2315 *
2316 * for each tlock/page of transaction, update map.
2317 * ? are there tlock for pmap and pwmap at the same time ?
2318 */
2319 for (lid = tblk->next; lid; lid = tlck->next) {
2320 tlck = lid_to_tlock(lid);
2321
2322 if ((tlck->flag & tlckUPDATEMAP) == 0)
2323 continue;
2324
2325 if (tlck->flag & tlckFREEPAGE) {
2326 /*
2327 * Another thread may attempt to reuse freed space
2328 * immediately, so we want to get rid of the metapage
2329 * before anyone else has a chance to get it.
2330 * Lock metapage, update maps, then invalidate
2331 * the metapage.
2332 */
2333 mp = tlck->mp;
2334 ASSERT(mp->xflag & COMMIT_PAGE);
Dave Kleikamp7fab4792005-05-02 12:25:02 -06002335 grab_metapage(mp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002336 }
2337
2338 /*
2339 * extent list:
2340 * . in-line PXD list:
2341 * . out-of-line XAD list:
2342 */
2343 maplock = (struct maplock *) & tlck->lock;
2344 nlock = maplock->index;
2345
2346 for (k = 0; k < nlock; k++, maplock++) {
2347 /*
2348 * allocate blocks in persistent map:
2349 *
2350 * blocks have been allocated from wmap at alloc time;
2351 */
2352 if (maplock->flag & mlckALLOC) {
2353 txAllocPMap(ipimap, maplock, tblk);
2354 }
2355 /*
2356 * free blocks in persistent and working map:
2357 * blocks will be freed in pmap and then in wmap;
2358 *
2359 * ? tblock specifies the PMAP/PWMAP based upon
2360 * transaction
2361 *
2362 * free blocks in persistent map:
2363 * blocks will be freed from wmap at last reference
2364 * release of the object for regular files;
2365 *
2366 * Alway free blocks from both persistent & working
2367 * maps for directories
2368 */
2369 else { /* (maplock->flag & mlckFREE) */
2370
Dave Kleikamp438282d2005-09-20 14:58:11 -05002371 if (tlck->flag & tlckDIRECTORY)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002372 txFreeMap(ipimap, maplock,
2373 tblk, COMMIT_PWMAP);
2374 else
2375 txFreeMap(ipimap, maplock,
2376 tblk, maptype);
2377 }
2378 }
2379 if (tlck->flag & tlckFREEPAGE) {
2380 if (!(tblk->flag & tblkGC_LAZY)) {
2381 /* This is equivalent to txRelease */
2382 ASSERT(mp->lid == lid);
2383 tlck->mp->lid = 0;
2384 }
Dave Kleikamp7fab4792005-05-02 12:25:02 -06002385 assert(mp->nohomeok == 1);
2386 metapage_homeok(mp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002387 discard_metapage(mp);
2388 tlck->mp = NULL;
2389 }
2390 }
2391 /*
Dave Kleikampf720e3b2007-06-06 15:28:35 -05002392 * update inode allocation map
Linus Torvalds1da177e2005-04-16 15:20:36 -07002393 *
2394 * update allocation state in pmap and
2395 * update lsn of the pmap page;
2396 * update in-memory inode flag/state
2397 *
2398 * unlock mapper/write lock
2399 */
2400 if (tblk->xflag & COMMIT_CREATE) {
Richard Knutsson4d817152006-09-30 23:27:14 -07002401 diUpdatePMap(ipimap, tblk->ino, false, tblk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002402 /* update persistent block allocation map
2403 * for the allocation of inode extent;
2404 */
2405 pxdlock.flag = mlckALLOCPXD;
2406 pxdlock.pxd = tblk->u.ixpxd;
2407 pxdlock.index = 1;
2408 txAllocPMap(ipimap, (struct maplock *) & pxdlock, tblk);
2409 } else if (tblk->xflag & COMMIT_DELETE) {
2410 ip = tblk->u.ip;
Richard Knutsson4d817152006-09-30 23:27:14 -07002411 diUpdatePMap(ipimap, ip->i_ino, true, tblk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002412 iput(ip);
2413 }
2414}
2415
Linus Torvalds1da177e2005-04-16 15:20:36 -07002416/*
Dave Kleikampf720e3b2007-06-06 15:28:35 -05002417 * txAllocPMap()
Linus Torvalds1da177e2005-04-16 15:20:36 -07002418 *
2419 * function: allocate from persistent map;
2420 *
2421 * parameter:
Dave Kleikampf720e3b2007-06-06 15:28:35 -05002422 * ipbmap -
2423 * malock -
2424 * xad list:
2425 * pxd:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002426 *
Dave Kleikampf720e3b2007-06-06 15:28:35 -05002427 * maptype -
2428 * allocate from persistent map;
2429 * free from persistent map;
2430 * (e.g., tmp file - free from working map at releae
2431 * of last reference);
2432 * free from persistent and working map;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002433 *
Dave Kleikampf720e3b2007-06-06 15:28:35 -05002434 * lsn - log sequence number;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002435 */
2436static void txAllocPMap(struct inode *ip, struct maplock * maplock,
2437 struct tblock * tblk)
2438{
2439 struct inode *ipbmap = JFS_SBI(ip->i_sb)->ipbmap;
2440 struct xdlistlock *xadlistlock;
2441 xad_t *xad;
2442 s64 xaddr;
2443 int xlen;
2444 struct pxd_lock *pxdlock;
2445 struct xdlistlock *pxdlistlock;
2446 pxd_t *pxd;
2447 int n;
2448
2449 /*
2450 * allocate from persistent map;
2451 */
2452 if (maplock->flag & mlckALLOCXADLIST) {
2453 xadlistlock = (struct xdlistlock *) maplock;
2454 xad = xadlistlock->xdlist;
2455 for (n = 0; n < xadlistlock->count; n++, xad++) {
2456 if (xad->flag & (XAD_NEW | XAD_EXTENDED)) {
2457 xaddr = addressXAD(xad);
2458 xlen = lengthXAD(xad);
Richard Knutsson4d817152006-09-30 23:27:14 -07002459 dbUpdatePMap(ipbmap, false, xaddr,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002460 (s64) xlen, tblk);
2461 xad->flag &= ~(XAD_NEW | XAD_EXTENDED);
2462 jfs_info("allocPMap: xaddr:0x%lx xlen:%d",
2463 (ulong) xaddr, xlen);
2464 }
2465 }
2466 } else if (maplock->flag & mlckALLOCPXD) {
2467 pxdlock = (struct pxd_lock *) maplock;
2468 xaddr = addressPXD(&pxdlock->pxd);
2469 xlen = lengthPXD(&pxdlock->pxd);
Richard Knutsson4d817152006-09-30 23:27:14 -07002470 dbUpdatePMap(ipbmap, false, xaddr, (s64) xlen, tblk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002471 jfs_info("allocPMap: xaddr:0x%lx xlen:%d", (ulong) xaddr, xlen);
2472 } else { /* (maplock->flag & mlckALLOCPXDLIST) */
2473
2474 pxdlistlock = (struct xdlistlock *) maplock;
2475 pxd = pxdlistlock->xdlist;
2476 for (n = 0; n < pxdlistlock->count; n++, pxd++) {
2477 xaddr = addressPXD(pxd);
2478 xlen = lengthPXD(pxd);
Richard Knutsson4d817152006-09-30 23:27:14 -07002479 dbUpdatePMap(ipbmap, false, xaddr, (s64) xlen,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002480 tblk);
2481 jfs_info("allocPMap: xaddr:0x%lx xlen:%d",
2482 (ulong) xaddr, xlen);
2483 }
2484 }
2485}
2486
Linus Torvalds1da177e2005-04-16 15:20:36 -07002487/*
Dave Kleikampf720e3b2007-06-06 15:28:35 -05002488 * txFreeMap()
Linus Torvalds1da177e2005-04-16 15:20:36 -07002489 *
Dave Kleikampf720e3b2007-06-06 15:28:35 -05002490 * function: free from persistent and/or working map;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002491 *
2492 * todo: optimization
2493 */
2494void txFreeMap(struct inode *ip,
2495 struct maplock * maplock, struct tblock * tblk, int maptype)
2496{
2497 struct inode *ipbmap = JFS_SBI(ip->i_sb)->ipbmap;
2498 struct xdlistlock *xadlistlock;
2499 xad_t *xad;
2500 s64 xaddr;
2501 int xlen;
2502 struct pxd_lock *pxdlock;
2503 struct xdlistlock *pxdlistlock;
2504 pxd_t *pxd;
2505 int n;
2506
2507 jfs_info("txFreeMap: tblk:0x%p maplock:0x%p maptype:0x%x",
2508 tblk, maplock, maptype);
2509
2510 /*
2511 * free from persistent map;
2512 */
2513 if (maptype == COMMIT_PMAP || maptype == COMMIT_PWMAP) {
2514 if (maplock->flag & mlckFREEXADLIST) {
2515 xadlistlock = (struct xdlistlock *) maplock;
2516 xad = xadlistlock->xdlist;
2517 for (n = 0; n < xadlistlock->count; n++, xad++) {
2518 if (!(xad->flag & XAD_NEW)) {
2519 xaddr = addressXAD(xad);
2520 xlen = lengthXAD(xad);
Richard Knutsson4d817152006-09-30 23:27:14 -07002521 dbUpdatePMap(ipbmap, true, xaddr,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002522 (s64) xlen, tblk);
Joe Perches6ed71e92016-03-30 05:23:18 -07002523 jfs_info("freePMap: xaddr:0x%lx xlen:%d",
Linus Torvalds1da177e2005-04-16 15:20:36 -07002524 (ulong) xaddr, xlen);
2525 }
2526 }
2527 } else if (maplock->flag & mlckFREEPXD) {
2528 pxdlock = (struct pxd_lock *) maplock;
2529 xaddr = addressPXD(&pxdlock->pxd);
2530 xlen = lengthPXD(&pxdlock->pxd);
Richard Knutsson4d817152006-09-30 23:27:14 -07002531 dbUpdatePMap(ipbmap, true, xaddr, (s64) xlen,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002532 tblk);
2533 jfs_info("freePMap: xaddr:0x%lx xlen:%d",
2534 (ulong) xaddr, xlen);
2535 } else { /* (maplock->flag & mlckALLOCPXDLIST) */
2536
2537 pxdlistlock = (struct xdlistlock *) maplock;
2538 pxd = pxdlistlock->xdlist;
2539 for (n = 0; n < pxdlistlock->count; n++, pxd++) {
2540 xaddr = addressPXD(pxd);
2541 xlen = lengthPXD(pxd);
Richard Knutsson4d817152006-09-30 23:27:14 -07002542 dbUpdatePMap(ipbmap, true, xaddr,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002543 (s64) xlen, tblk);
2544 jfs_info("freePMap: xaddr:0x%lx xlen:%d",
2545 (ulong) xaddr, xlen);
2546 }
2547 }
2548 }
2549
2550 /*
2551 * free from working map;
2552 */
2553 if (maptype == COMMIT_PWMAP || maptype == COMMIT_WMAP) {
2554 if (maplock->flag & mlckFREEXADLIST) {
2555 xadlistlock = (struct xdlistlock *) maplock;
2556 xad = xadlistlock->xdlist;
2557 for (n = 0; n < xadlistlock->count; n++, xad++) {
2558 xaddr = addressXAD(xad);
2559 xlen = lengthXAD(xad);
2560 dbFree(ip, xaddr, (s64) xlen);
2561 xad->flag = 0;
2562 jfs_info("freeWMap: xaddr:0x%lx xlen:%d",
2563 (ulong) xaddr, xlen);
2564 }
2565 } else if (maplock->flag & mlckFREEPXD) {
2566 pxdlock = (struct pxd_lock *) maplock;
2567 xaddr = addressPXD(&pxdlock->pxd);
2568 xlen = lengthPXD(&pxdlock->pxd);
2569 dbFree(ip, xaddr, (s64) xlen);
2570 jfs_info("freeWMap: xaddr:0x%lx xlen:%d",
2571 (ulong) xaddr, xlen);
2572 } else { /* (maplock->flag & mlckFREEPXDLIST) */
2573
2574 pxdlistlock = (struct xdlistlock *) maplock;
2575 pxd = pxdlistlock->xdlist;
2576 for (n = 0; n < pxdlistlock->count; n++, pxd++) {
2577 xaddr = addressPXD(pxd);
2578 xlen = lengthPXD(pxd);
2579 dbFree(ip, xaddr, (s64) xlen);
2580 jfs_info("freeWMap: xaddr:0x%lx xlen:%d",
2581 (ulong) xaddr, xlen);
2582 }
2583 }
2584 }
2585}
2586
Linus Torvalds1da177e2005-04-16 15:20:36 -07002587/*
Dave Kleikampf720e3b2007-06-06 15:28:35 -05002588 * txFreelock()
Linus Torvalds1da177e2005-04-16 15:20:36 -07002589 *
Dave Kleikampf720e3b2007-06-06 15:28:35 -05002590 * function: remove tlock from inode anonymous locklist
Linus Torvalds1da177e2005-04-16 15:20:36 -07002591 */
2592void txFreelock(struct inode *ip)
2593{
2594 struct jfs_inode_info *jfs_ip = JFS_IP(ip);
2595 struct tlock *xtlck, *tlck;
2596 lid_t xlid = 0, lid;
2597
2598 if (!jfs_ip->atlhead)
2599 return;
2600
2601 TXN_LOCK();
2602 xtlck = (struct tlock *) &jfs_ip->atlhead;
2603
2604 while ((lid = xtlck->next) != 0) {
2605 tlck = lid_to_tlock(lid);
2606 if (tlck->flag & tlckFREELOCK) {
2607 xtlck->next = tlck->next;
2608 txLockFree(lid);
2609 } else {
2610 xtlck = tlck;
2611 xlid = lid;
2612 }
2613 }
2614
2615 if (jfs_ip->atlhead)
2616 jfs_ip->atltail = xlid;
2617 else {
2618 jfs_ip->atltail = 0;
2619 /*
2620 * If inode was on anon_list, remove it
2621 */
2622 list_del_init(&jfs_ip->anon_inode_list);
2623 }
2624 TXN_UNLOCK();
2625}
2626
Linus Torvalds1da177e2005-04-16 15:20:36 -07002627/*
Dave Kleikampf720e3b2007-06-06 15:28:35 -05002628 * txAbort()
Linus Torvalds1da177e2005-04-16 15:20:36 -07002629 *
2630 * function: abort tx before commit;
2631 *
2632 * frees line-locks and segment locks for all
2633 * segments in comdata structure.
2634 * Optionally sets state of file-system to FM_DIRTY in super-block.
2635 * log age of page-frames in memory for which caller has
2636 * are reset to 0 (to avoid logwarap).
2637 */
2638void txAbort(tid_t tid, int dirty)
2639{
2640 lid_t lid, next;
2641 struct metapage *mp;
2642 struct tblock *tblk = tid_to_tblock(tid);
2643 struct tlock *tlck;
2644
2645 /*
2646 * free tlocks of the transaction
2647 */
2648 for (lid = tblk->next; lid; lid = next) {
2649 tlck = lid_to_tlock(lid);
2650 next = tlck->next;
2651 mp = tlck->mp;
2652 JFS_IP(tlck->ip)->xtlid = 0;
2653
2654 if (mp) {
2655 mp->lid = 0;
2656
2657 /*
2658 * reset lsn of page to avoid logwarap:
2659 *
2660 * (page may have been previously committed by another
2661 * transaction(s) but has not been paged, i.e.,
2662 * it may be on logsync list even though it has not
2663 * been logged for the current tx.)
2664 */
2665 if (mp->xflag & COMMIT_PAGE && mp->lsn)
2666 LogSyncRelease(mp);
2667 }
2668 /* insert tlock at head of freelist */
2669 TXN_LOCK();
2670 txLockFree(lid);
2671 TXN_UNLOCK();
2672 }
2673
2674 /* caller will free the transaction block */
2675
2676 tblk->next = tblk->last = 0;
2677
2678 /*
2679 * mark filesystem dirty
2680 */
2681 if (dirty)
Joe Percheseb8630d2013-06-04 16:39:15 -07002682 jfs_error(tblk->sb, "\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002683
2684 return;
2685}
2686
2687/*
Dave Kleikampf720e3b2007-06-06 15:28:35 -05002688 * txLazyCommit(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002689 *
2690 * All transactions except those changing ipimap (COMMIT_FORCE) are
2691 * processed by this routine. This insures that the inode and block
2692 * allocation maps are updated in order. For synchronous transactions,
2693 * let the user thread finish processing after txUpdateMap() is called.
2694 */
2695static void txLazyCommit(struct tblock * tblk)
2696{
2697 struct jfs_log *log;
2698
2699 while (((tblk->flag & tblkGC_READY) == 0) &&
2700 ((tblk->flag & tblkGC_UNLOCKED) == 0)) {
2701 /* We must have gotten ahead of the user thread
2702 */
2703 jfs_info("jfs_lazycommit: tblk 0x%p not unlocked", tblk);
2704 yield();
2705 }
2706
2707 jfs_info("txLazyCommit: processing tblk 0x%p", tblk);
2708
2709 txUpdateMap(tblk);
2710
2711 log = (struct jfs_log *) JFS_SBI(tblk->sb)->log;
2712
2713 spin_lock_irq(&log->gclock); // LOGGC_LOCK
2714
2715 tblk->flag |= tblkGC_COMMITTED;
2716
2717 if (tblk->flag & tblkGC_READY)
2718 log->gcrtc--;
2719
2720 wake_up_all(&tblk->gcwait); // LOGGC_WAKEUP
2721
2722 /*
2723 * Can't release log->gclock until we've tested tblk->flag
2724 */
2725 if (tblk->flag & tblkGC_LAZY) {
2726 spin_unlock_irq(&log->gclock); // LOGGC_UNLOCK
2727 txUnlock(tblk);
2728 tblk->flag &= ~tblkGC_LAZY;
2729 txEnd(tblk - TxBlock); /* Convert back to tid */
2730 } else
2731 spin_unlock_irq(&log->gclock); // LOGGC_UNLOCK
2732
2733 jfs_info("txLazyCommit: done: tblk = 0x%p", tblk);
2734}
2735
2736/*
Dave Kleikampf720e3b2007-06-06 15:28:35 -05002737 * jfs_lazycommit(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002738 *
2739 * To be run as a kernel daemon. If lbmIODone is called in an interrupt
2740 * context, or where blocking is not wanted, this routine will process
2741 * committed transactions from the unlock queue.
2742 */
2743int jfs_lazycommit(void *arg)
2744{
2745 int WorkDone;
2746 struct tblock *tblk;
2747 unsigned long flags;
2748 struct jfs_sb_info *sbi;
2749
Linus Torvalds1da177e2005-04-16 15:20:36 -07002750 do {
2751 LAZY_LOCK(flags);
2752 jfs_commit_thread_waking = 0; /* OK to wake another thread */
2753 while (!list_empty(&TxAnchor.unlock_queue)) {
2754 WorkDone = 0;
2755 list_for_each_entry(tblk, &TxAnchor.unlock_queue,
2756 cqueue) {
2757
2758 sbi = JFS_SBI(tblk->sb);
2759 /*
2760 * For each volume, the transactions must be
2761 * handled in order. If another commit thread
2762 * is handling a tblk for this superblock,
2763 * skip it
2764 */
2765 if (sbi->commit_state & IN_LAZYCOMMIT)
2766 continue;
2767
2768 sbi->commit_state |= IN_LAZYCOMMIT;
2769 WorkDone = 1;
2770
2771 /*
2772 * Remove transaction from queue
2773 */
2774 list_del(&tblk->cqueue);
2775
2776 LAZY_UNLOCK(flags);
2777 txLazyCommit(tblk);
2778 LAZY_LOCK(flags);
2779
2780 sbi->commit_state &= ~IN_LAZYCOMMIT;
2781 /*
2782 * Don't continue in the for loop. (We can't
2783 * anyway, it's unsafe!) We want to go back to
2784 * the beginning of the list.
2785 */
2786 break;
2787 }
2788
2789 /* If there was nothing to do, don't continue */
2790 if (!WorkDone)
2791 break;
2792 }
2793 /* In case a wakeup came while all threads were active */
2794 jfs_commit_thread_waking = 0;
2795
Christoph Lameter3e1d1d22005-06-24 23:13:50 -07002796 if (freezing(current)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002797 LAZY_UNLOCK(flags);
Tejun Heoa0acae02011-11-21 12:32:22 -08002798 try_to_freeze();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002799 } else {
2800 DECLARE_WAITQUEUE(wq, current);
2801
2802 add_wait_queue(&jfs_commit_thread_wait, &wq);
2803 set_current_state(TASK_INTERRUPTIBLE);
2804 LAZY_UNLOCK(flags);
2805 schedule();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002806 remove_wait_queue(&jfs_commit_thread_wait, &wq);
2807 }
Christoph Hellwig91dbb4d2006-02-15 12:49:04 -06002808 } while (!kthread_should_stop());
Linus Torvalds1da177e2005-04-16 15:20:36 -07002809
2810 if (!list_empty(&TxAnchor.unlock_queue))
2811 jfs_err("jfs_lazycommit being killed w/pending transactions!");
2812 else
Joe Perchesb18db6d2016-03-30 05:23:16 -07002813 jfs_info("jfs_lazycommit being killed");
Christoph Hellwig91dbb4d2006-02-15 12:49:04 -06002814 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002815}
2816
2817void txLazyUnlock(struct tblock * tblk)
2818{
2819 unsigned long flags;
2820
2821 LAZY_LOCK(flags);
2822
2823 list_add_tail(&tblk->cqueue, &TxAnchor.unlock_queue);
2824 /*
2825 * Don't wake up a commit thread if there is already one servicing
2826 * this superblock, or if the last one we woke up hasn't started yet.
2827 */
2828 if (!(JFS_SBI(tblk->sb)->commit_state & IN_LAZYCOMMIT) &&
2829 !jfs_commit_thread_waking) {
2830 jfs_commit_thread_waking = 1;
2831 wake_up(&jfs_commit_thread_wait);
2832 }
2833 LAZY_UNLOCK(flags);
2834}
2835
2836static void LogSyncRelease(struct metapage * mp)
2837{
2838 struct jfs_log *log = mp->log;
2839
Dave Kleikamp7fab4792005-05-02 12:25:02 -06002840 assert(mp->nohomeok);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002841 assert(log);
Dave Kleikamp7fab4792005-05-02 12:25:02 -06002842 metapage_homeok(mp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002843}
2844
2845/*
2846 * txQuiesce
2847 *
2848 * Block all new transactions and push anonymous transactions to
2849 * completion
2850 *
2851 * This does almost the same thing as jfs_sync below. We don't
2852 * worry about deadlocking when jfs_tlocks_low is set, since we would
2853 * expect jfs_sync to get us out of that jam.
2854 */
2855void txQuiesce(struct super_block *sb)
2856{
2857 struct inode *ip;
2858 struct jfs_inode_info *jfs_ip;
2859 struct jfs_log *log = JFS_SBI(sb)->log;
2860 tid_t tid;
2861
2862 set_bit(log_QUIESCE, &log->flag);
2863
2864 TXN_LOCK();
2865restart:
2866 while (!list_empty(&TxAnchor.anon_list)) {
2867 jfs_ip = list_entry(TxAnchor.anon_list.next,
2868 struct jfs_inode_info,
2869 anon_inode_list);
2870 ip = &jfs_ip->vfs_inode;
2871
2872 /*
2873 * inode will be removed from anonymous list
2874 * when it is committed
2875 */
2876 TXN_UNLOCK();
2877 tid = txBegin(ip->i_sb, COMMIT_INODE | COMMIT_FORCE);
Ingo Molnar1de87442006-01-24 15:22:50 -06002878 mutex_lock(&jfs_ip->commit_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002879 txCommit(tid, 1, &ip, 0);
2880 txEnd(tid);
Ingo Molnar1de87442006-01-24 15:22:50 -06002881 mutex_unlock(&jfs_ip->commit_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002882 /*
2883 * Just to be safe. I don't know how
2884 * long we can run without blocking
2885 */
2886 cond_resched();
2887 TXN_LOCK();
2888 }
2889
2890 /*
2891 * If jfs_sync is running in parallel, there could be some inodes
2892 * on anon_list2. Let's check.
2893 */
2894 if (!list_empty(&TxAnchor.anon_list2)) {
Christophe JAILLET240c5182016-09-03 07:35:29 +02002895 list_splice_init(&TxAnchor.anon_list2, &TxAnchor.anon_list);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002896 goto restart;
2897 }
2898 TXN_UNLOCK();
2899
2900 /*
2901 * We may need to kick off the group commit
2902 */
2903 jfs_flush_journal(log, 0);
2904}
2905
2906/*
2907 * txResume()
2908 *
2909 * Allows transactions to start again following txQuiesce
2910 */
2911void txResume(struct super_block *sb)
2912{
2913 struct jfs_log *log = JFS_SBI(sb)->log;
2914
2915 clear_bit(log_QUIESCE, &log->flag);
2916 TXN_WAKEUP(&log->syncwait);
2917}
2918
2919/*
Dave Kleikampf720e3b2007-06-06 15:28:35 -05002920 * jfs_sync(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002921 *
2922 * To be run as a kernel daemon. This is awakened when tlocks run low.
2923 * We write any inodes that have anonymous tlocks so they will become
2924 * available.
2925 */
2926int jfs_sync(void *arg)
2927{
2928 struct inode *ip;
2929 struct jfs_inode_info *jfs_ip;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002930 tid_t tid;
2931
Linus Torvalds1da177e2005-04-16 15:20:36 -07002932 do {
2933 /*
2934 * write each inode on the anonymous inode list
2935 */
2936 TXN_LOCK();
2937 while (jfs_tlocks_low && !list_empty(&TxAnchor.anon_list)) {
2938 jfs_ip = list_entry(TxAnchor.anon_list.next,
2939 struct jfs_inode_info,
2940 anon_inode_list);
2941 ip = &jfs_ip->vfs_inode;
2942
2943 if (! igrab(ip)) {
2944 /*
2945 * Inode is being freed
2946 */
2947 list_del_init(&jfs_ip->anon_inode_list);
Evgeniy Dushistov48ce8b02006-06-05 08:21:03 -05002948 } else if (mutex_trylock(&jfs_ip->commit_mutex)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002949 /*
2950 * inode will be removed from anonymous list
2951 * when it is committed
2952 */
2953 TXN_UNLOCK();
2954 tid = txBegin(ip->i_sb, COMMIT_INODE);
Dave Kleikamp3c2c2262011-06-20 13:00:27 -05002955 txCommit(tid, 1, &ip, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002956 txEnd(tid);
Ingo Molnar1de87442006-01-24 15:22:50 -06002957 mutex_unlock(&jfs_ip->commit_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002958
2959 iput(ip);
2960 /*
2961 * Just to be safe. I don't know how
2962 * long we can run without blocking
2963 */
2964 cond_resched();
2965 TXN_LOCK();
2966 } else {
Ingo Molnar1de87442006-01-24 15:22:50 -06002967 /* We can't get the commit mutex. It may
Linus Torvalds1da177e2005-04-16 15:20:36 -07002968 * be held by a thread waiting for tlock's
2969 * so let's not block here. Save it to
2970 * put back on the anon_list.
2971 */
2972
Wei Yongjun550d6da2012-09-06 15:33:09 +08002973 /* Move from anon_list to anon_list2 */
2974 list_move(&jfs_ip->anon_inode_list,
2975 &TxAnchor.anon_list2);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002976
2977 TXN_UNLOCK();
2978 iput(ip);
2979 TXN_LOCK();
2980 }
2981 }
2982 /* Add anon_list2 back to anon_list */
2983 list_splice_init(&TxAnchor.anon_list2, &TxAnchor.anon_list);
2984
Christoph Lameter3e1d1d22005-06-24 23:13:50 -07002985 if (freezing(current)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002986 TXN_UNLOCK();
Tejun Heoa0acae02011-11-21 12:32:22 -08002987 try_to_freeze();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002988 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002989 set_current_state(TASK_INTERRUPTIBLE);
2990 TXN_UNLOCK();
2991 schedule();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002992 }
Christoph Hellwig91dbb4d2006-02-15 12:49:04 -06002993 } while (!kthread_should_stop());
Linus Torvalds1da177e2005-04-16 15:20:36 -07002994
2995 jfs_info("jfs_sync being killed");
Christoph Hellwig91dbb4d2006-02-15 12:49:04 -06002996 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002997}
2998
2999#if defined(CONFIG_PROC_FS) && defined(CONFIG_JFS_DEBUG)
Alexey Dobriyanb2e03ca2008-05-13 08:22:10 -05003000static int jfs_txanchor_proc_show(struct seq_file *m, void *v)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003001{
Linus Torvalds1da177e2005-04-16 15:20:36 -07003002 char *freewait;
3003 char *freelockwait;
3004 char *lowlockwait;
3005
3006 freewait =
3007 waitqueue_active(&TxAnchor.freewait) ? "active" : "empty";
3008 freelockwait =
3009 waitqueue_active(&TxAnchor.freelockwait) ? "active" : "empty";
3010 lowlockwait =
3011 waitqueue_active(&TxAnchor.lowlockwait) ? "active" : "empty";
3012
Alexey Dobriyanb2e03ca2008-05-13 08:22:10 -05003013 seq_printf(m,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003014 "JFS TxAnchor\n"
3015 "============\n"
3016 "freetid = %d\n"
3017 "freewait = %s\n"
3018 "freelock = %d\n"
3019 "freelockwait = %s\n"
3020 "lowlockwait = %s\n"
3021 "tlocksInUse = %d\n"
3022 "jfs_tlocks_low = %d\n"
3023 "unlock_queue is %sempty\n",
3024 TxAnchor.freetid,
3025 freewait,
3026 TxAnchor.freelock,
3027 freelockwait,
3028 lowlockwait,
3029 TxAnchor.tlocksInUse,
3030 jfs_tlocks_low,
3031 list_empty(&TxAnchor.unlock_queue) ? "" : "not ");
Alexey Dobriyanb2e03ca2008-05-13 08:22:10 -05003032 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003033}
Alexey Dobriyanb2e03ca2008-05-13 08:22:10 -05003034
3035static int jfs_txanchor_proc_open(struct inode *inode, struct file *file)
3036{
3037 return single_open(file, jfs_txanchor_proc_show, NULL);
3038}
3039
3040const struct file_operations jfs_txanchor_proc_fops = {
Alexey Dobriyanb2e03ca2008-05-13 08:22:10 -05003041 .open = jfs_txanchor_proc_open,
3042 .read = seq_read,
3043 .llseek = seq_lseek,
3044 .release = single_release,
3045};
Linus Torvalds1da177e2005-04-16 15:20:36 -07003046#endif
3047
3048#if defined(CONFIG_PROC_FS) && defined(CONFIG_JFS_STATISTICS)
Alexey Dobriyanb2e03ca2008-05-13 08:22:10 -05003049static int jfs_txstats_proc_show(struct seq_file *m, void *v)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003050{
Alexey Dobriyanb2e03ca2008-05-13 08:22:10 -05003051 seq_printf(m,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003052 "JFS TxStats\n"
3053 "===========\n"
3054 "calls to txBegin = %d\n"
3055 "txBegin blocked by sync barrier = %d\n"
3056 "txBegin blocked by tlocks low = %d\n"
3057 "txBegin blocked by no free tid = %d\n"
3058 "calls to txBeginAnon = %d\n"
3059 "txBeginAnon blocked by sync barrier = %d\n"
3060 "txBeginAnon blocked by tlocks low = %d\n"
3061 "calls to txLockAlloc = %d\n"
3062 "tLockAlloc blocked by no free lock = %d\n",
3063 TxStat.txBegin,
3064 TxStat.txBegin_barrier,
3065 TxStat.txBegin_lockslow,
3066 TxStat.txBegin_freetid,
3067 TxStat.txBeginAnon,
3068 TxStat.txBeginAnon_barrier,
3069 TxStat.txBeginAnon_lockslow,
3070 TxStat.txLockAlloc,
3071 TxStat.txLockAlloc_freelock);
Alexey Dobriyanb2e03ca2008-05-13 08:22:10 -05003072 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003073}
Alexey Dobriyanb2e03ca2008-05-13 08:22:10 -05003074
3075static int jfs_txstats_proc_open(struct inode *inode, struct file *file)
3076{
3077 return single_open(file, jfs_txstats_proc_show, NULL);
3078}
3079
3080const struct file_operations jfs_txstats_proc_fops = {
Alexey Dobriyanb2e03ca2008-05-13 08:22:10 -05003081 .open = jfs_txstats_proc_open,
3082 .read = seq_read,
3083 .llseek = seq_lseek,
3084 .release = single_release,
3085};
Linus Torvalds1da177e2005-04-16 15:20:36 -07003086#endif