blob: 68aea62ea61d770aadd6100d6ba4d0778f236ab0 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2** Write ahead logging implementation copyright Chris Mason 2000
3**
Lucas De Marchi25985ed2011-03-30 22:57:33 -03004** The background commits make this code very interrelated, and
Linus Torvalds1da177e2005-04-16 15:20:36 -07005** overly complex. I need to rethink things a bit....The major players:
6**
Jeff Mahoney0222e652009-03-30 14:02:44 -04007** journal_begin -- call with the number of blocks you expect to log.
Linus Torvalds1da177e2005-04-16 15:20:36 -07008** If the current transaction is too
Jeff Mahoney0222e652009-03-30 14:02:44 -04009** old, it will block until the current transaction is
Linus Torvalds1da177e2005-04-16 15:20:36 -070010** finished, and then start a new one.
Jeff Mahoney0222e652009-03-30 14:02:44 -040011** Usually, your transaction will get joined in with
Linus Torvalds1da177e2005-04-16 15:20:36 -070012** previous ones for speed.
13**
Jeff Mahoney0222e652009-03-30 14:02:44 -040014** journal_join -- same as journal_begin, but won't block on the current
Linus Torvalds1da177e2005-04-16 15:20:36 -070015** transaction regardless of age. Don't ever call
Jeff Mahoney0222e652009-03-30 14:02:44 -040016** this. Ever. There are only two places it should be
Linus Torvalds1da177e2005-04-16 15:20:36 -070017** called from, and they are both inside this file.
18**
Jeff Mahoney0222e652009-03-30 14:02:44 -040019** journal_mark_dirty -- adds blocks into this transaction. clears any flags
Linus Torvalds1da177e2005-04-16 15:20:36 -070020** that might make them get sent to disk
Jeff Mahoney0222e652009-03-30 14:02:44 -040021** and then marks them BH_JDirty. Puts the buffer head
22** into the current transaction hash.
Linus Torvalds1da177e2005-04-16 15:20:36 -070023**
24** journal_end -- if the current transaction is batchable, it does nothing
25** otherwise, it could do an async/synchronous commit, or
Jeff Mahoney0222e652009-03-30 14:02:44 -040026** a full flush of all log and real blocks in the
Linus Torvalds1da177e2005-04-16 15:20:36 -070027** transaction.
28**
Jeff Mahoney0222e652009-03-30 14:02:44 -040029** flush_old_commits -- if the current transaction is too old, it is ended and
30** commit blocks are sent to disk. Forces commit blocks
31** to disk for all backgrounded commits that have been
Linus Torvalds1da177e2005-04-16 15:20:36 -070032** around too long.
Jeff Mahoney0222e652009-03-30 14:02:44 -040033** -- Note, if you call this as an immediate flush from
Linus Torvalds1da177e2005-04-16 15:20:36 -070034** from within kupdate, it will ignore the immediate flag
35*/
36
Linus Torvalds1da177e2005-04-16 15:20:36 -070037#include <linux/time.h>
Matthew Wilcox6188e102008-04-18 22:21:05 -040038#include <linux/semaphore.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070039#include <linux/vmalloc.h>
Al Virof466c6f2012-03-17 01:16:43 -040040#include "reiserfs.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070041#include <linux/kernel.h>
42#include <linux/errno.h>
43#include <linux/fcntl.h>
44#include <linux/stat.h>
45#include <linux/string.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070046#include <linux/buffer_head.h>
47#include <linux/workqueue.h>
48#include <linux/writeback.h>
49#include <linux/blkdev.h>
Andrew Morton3fcfab12006-10-19 23:28:16 -070050#include <linux/backing-dev.h>
Jeff Mahoney90415de2008-07-25 01:46:40 -070051#include <linux/uaccess.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090052#include <linux/slab.h>
Jeff Mahoney90415de2008-07-25 01:46:40 -070053
Linus Torvalds1da177e2005-04-16 15:20:36 -070054
Linus Torvalds1da177e2005-04-16 15:20:36 -070055/* gets a struct reiserfs_journal_list * from a list head */
56#define JOURNAL_LIST_ENTRY(h) (list_entry((h), struct reiserfs_journal_list, \
57 j_list))
58#define JOURNAL_WORK_ENTRY(h) (list_entry((h), struct reiserfs_journal_list, \
59 j_working_list))
60
61/* the number of mounted filesystems. This is used to decide when to
62** start and kill the commit workqueue
63*/
64static int reiserfs_mounted_fs_count;
65
66static struct workqueue_struct *commit_wq;
67
Linus Torvaldsbd4c6252005-07-12 20:21:28 -070068#define JOURNAL_TRANS_HALF 1018 /* must be correct to keep the desc and commit
69 structs at 4k */
70#define BUFNR 64 /*read ahead */
Linus Torvalds1da177e2005-04-16 15:20:36 -070071
72/* cnode stat bits. Move these into reiserfs_fs.h */
73
74#define BLOCK_FREED 2 /* this block was freed, and can't be written. */
Linus Torvaldsbd4c6252005-07-12 20:21:28 -070075#define BLOCK_FREED_HOLDER 3 /* this block was freed during this transaction, and can't be written */
Linus Torvalds1da177e2005-04-16 15:20:36 -070076
77#define BLOCK_NEEDS_FLUSH 4 /* used in flush_journal_list */
78#define BLOCK_DIRTIED 5
79
Linus Torvalds1da177e2005-04-16 15:20:36 -070080/* journal list state bits */
81#define LIST_TOUCHED 1
82#define LIST_DIRTY 2
Linus Torvaldsbd4c6252005-07-12 20:21:28 -070083#define LIST_COMMIT_PENDING 4 /* someone will commit this list */
Linus Torvalds1da177e2005-04-16 15:20:36 -070084
85/* flags for do_journal_end */
86#define FLUSH_ALL 1 /* flush commit and real blocks */
87#define COMMIT_NOW 2 /* end and commit this transaction */
Linus Torvaldsbd4c6252005-07-12 20:21:28 -070088#define WAIT 4 /* wait for the log blocks to hit the disk */
Linus Torvalds1da177e2005-04-16 15:20:36 -070089
Linus Torvaldsbd4c6252005-07-12 20:21:28 -070090static int do_journal_end(struct reiserfs_transaction_handle *,
91 struct super_block *, unsigned long nblocks,
92 int flags);
93static int flush_journal_list(struct super_block *s,
94 struct reiserfs_journal_list *jl, int flushall);
95static int flush_commit_list(struct super_block *s,
96 struct reiserfs_journal_list *jl, int flushall);
97static int can_dirty(struct reiserfs_journal_cnode *cn);
98static int journal_join(struct reiserfs_transaction_handle *th,
Jeff Mahoneya9dd3642009-03-30 14:02:45 -040099 struct super_block *sb, unsigned long nblocks);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700100static int release_journal_dev(struct super_block *super,
101 struct reiserfs_journal *journal);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700102static int dirty_one_transaction(struct super_block *s,
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700103 struct reiserfs_journal_list *jl);
David Howellsc4028952006-11-22 14:57:56 +0000104static void flush_async_commits(struct work_struct *work);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700105static void queue_log_writer(struct super_block *s);
106
107/* values for join in do_journal_begin_r */
108enum {
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700109 JBEGIN_REG = 0, /* regular journal begin */
110 JBEGIN_JOIN = 1, /* join the running transaction if at all possible */
111 JBEGIN_ABORT = 2, /* called from cleanup code, ignores aborted flag */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700112};
113
114static int do_journal_begin_r(struct reiserfs_transaction_handle *th,
Jeff Mahoneya9dd3642009-03-30 14:02:45 -0400115 struct super_block *sb,
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700116 unsigned long nblocks, int join);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700117
Jeff Mahoneya9dd3642009-03-30 14:02:45 -0400118static void init_journal_hash(struct super_block *sb)
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700119{
Jeff Mahoneya9dd3642009-03-30 14:02:45 -0400120 struct reiserfs_journal *journal = SB_JOURNAL(sb);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700121 memset(journal->j_hash_table, 0,
122 JOURNAL_HASH_SIZE * sizeof(struct reiserfs_journal_cnode *));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700123}
124
125/*
126** clears BH_Dirty and sticks the buffer on the clean list. Called because I can't allow refile_buffer to
127** make schedule happen after I've freed a block. Look at remove_from_transaction and journal_mark_freed for
128** more details.
129*/
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700130static int reiserfs_clean_and_file_buffer(struct buffer_head *bh)
131{
132 if (bh) {
133 clear_buffer_dirty(bh);
134 clear_buffer_journal_test(bh);
135 }
136 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700137}
138
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700139static struct reiserfs_bitmap_node *allocate_bitmap_node(struct super_block
Jeff Mahoneya9dd3642009-03-30 14:02:45 -0400140 *sb)
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700141{
142 struct reiserfs_bitmap_node *bn;
143 static int id;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700144
Pekka Enbergd739b422006-02-01 03:06:43 -0800145 bn = kmalloc(sizeof(struct reiserfs_bitmap_node), GFP_NOFS);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700146 if (!bn) {
147 return NULL;
148 }
Jeff Mahoneya9dd3642009-03-30 14:02:45 -0400149 bn->data = kzalloc(sb->s_blocksize, GFP_NOFS);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700150 if (!bn->data) {
Pekka Enbergd739b422006-02-01 03:06:43 -0800151 kfree(bn);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700152 return NULL;
153 }
154 bn->id = id++;
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700155 INIT_LIST_HEAD(&bn->list);
156 return bn;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700157}
158
Jeff Mahoneya9dd3642009-03-30 14:02:45 -0400159static struct reiserfs_bitmap_node *get_bitmap_node(struct super_block *sb)
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700160{
Jeff Mahoneya9dd3642009-03-30 14:02:45 -0400161 struct reiserfs_journal *journal = SB_JOURNAL(sb);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700162 struct reiserfs_bitmap_node *bn = NULL;
163 struct list_head *entry = journal->j_bitmap_nodes.next;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700164
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700165 journal->j_used_bitmap_nodes++;
166 repeat:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700167
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700168 if (entry != &journal->j_bitmap_nodes) {
169 bn = list_entry(entry, struct reiserfs_bitmap_node, list);
170 list_del(entry);
Jeff Mahoneya9dd3642009-03-30 14:02:45 -0400171 memset(bn->data, 0, sb->s_blocksize);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700172 journal->j_free_bitmap_nodes--;
173 return bn;
174 }
Jeff Mahoneya9dd3642009-03-30 14:02:45 -0400175 bn = allocate_bitmap_node(sb);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700176 if (!bn) {
177 yield();
178 goto repeat;
179 }
180 return bn;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700181}
Jeff Mahoneya9dd3642009-03-30 14:02:45 -0400182static inline void free_bitmap_node(struct super_block *sb,
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700183 struct reiserfs_bitmap_node *bn)
184{
Jeff Mahoneya9dd3642009-03-30 14:02:45 -0400185 struct reiserfs_journal *journal = SB_JOURNAL(sb);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700186 journal->j_used_bitmap_nodes--;
187 if (journal->j_free_bitmap_nodes > REISERFS_MAX_BITMAP_NODES) {
Pekka Enbergd739b422006-02-01 03:06:43 -0800188 kfree(bn->data);
189 kfree(bn);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700190 } else {
191 list_add(&bn->list, &journal->j_bitmap_nodes);
192 journal->j_free_bitmap_nodes++;
193 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700194}
195
Jeff Mahoneya9dd3642009-03-30 14:02:45 -0400196static void allocate_bitmap_nodes(struct super_block *sb)
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700197{
198 int i;
Jeff Mahoneya9dd3642009-03-30 14:02:45 -0400199 struct reiserfs_journal *journal = SB_JOURNAL(sb);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700200 struct reiserfs_bitmap_node *bn = NULL;
201 for (i = 0; i < REISERFS_MIN_BITMAP_NODES; i++) {
Jeff Mahoneya9dd3642009-03-30 14:02:45 -0400202 bn = allocate_bitmap_node(sb);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700203 if (bn) {
204 list_add(&bn->list, &journal->j_bitmap_nodes);
205 journal->j_free_bitmap_nodes++;
206 } else {
Jeff Mahoney0222e652009-03-30 14:02:44 -0400207 break; /* this is ok, we'll try again when more are needed */
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700208 }
209 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700210}
211
Jeff Mahoneya9dd3642009-03-30 14:02:45 -0400212static int set_bit_in_list_bitmap(struct super_block *sb,
Jeff Mahoney3ee16672007-10-18 23:39:25 -0700213 b_blocknr_t block,
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700214 struct reiserfs_list_bitmap *jb)
215{
Jeff Mahoneya9dd3642009-03-30 14:02:45 -0400216 unsigned int bmap_nr = block / (sb->s_blocksize << 3);
217 unsigned int bit_nr = block % (sb->s_blocksize << 3);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700218
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700219 if (!jb->bitmaps[bmap_nr]) {
Jeff Mahoneya9dd3642009-03-30 14:02:45 -0400220 jb->bitmaps[bmap_nr] = get_bitmap_node(sb);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700221 }
222 set_bit(bit_nr, (unsigned long *)jb->bitmaps[bmap_nr]->data);
223 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700224}
225
Jeff Mahoneya9dd3642009-03-30 14:02:45 -0400226static void cleanup_bitmap_list(struct super_block *sb,
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700227 struct reiserfs_list_bitmap *jb)
228{
229 int i;
230 if (jb->bitmaps == NULL)
231 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700232
Jeff Mahoneya9dd3642009-03-30 14:02:45 -0400233 for (i = 0; i < reiserfs_bmap_count(sb); i++) {
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700234 if (jb->bitmaps[i]) {
Jeff Mahoneya9dd3642009-03-30 14:02:45 -0400235 free_bitmap_node(sb, jb->bitmaps[i]);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700236 jb->bitmaps[i] = NULL;
237 }
238 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700239}
240
241/*
242** only call this on FS unmount.
243*/
Jeff Mahoneya9dd3642009-03-30 14:02:45 -0400244static int free_list_bitmaps(struct super_block *sb,
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700245 struct reiserfs_list_bitmap *jb_array)
246{
247 int i;
248 struct reiserfs_list_bitmap *jb;
249 for (i = 0; i < JOURNAL_NUM_BITMAPS; i++) {
250 jb = jb_array + i;
251 jb->journal_list = NULL;
Jeff Mahoneya9dd3642009-03-30 14:02:45 -0400252 cleanup_bitmap_list(sb, jb);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700253 vfree(jb->bitmaps);
254 jb->bitmaps = NULL;
255 }
256 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700257}
258
Jeff Mahoneya9dd3642009-03-30 14:02:45 -0400259static int free_bitmap_nodes(struct super_block *sb)
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700260{
Jeff Mahoneya9dd3642009-03-30 14:02:45 -0400261 struct reiserfs_journal *journal = SB_JOURNAL(sb);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700262 struct list_head *next = journal->j_bitmap_nodes.next;
263 struct reiserfs_bitmap_node *bn;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700264
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700265 while (next != &journal->j_bitmap_nodes) {
266 bn = list_entry(next, struct reiserfs_bitmap_node, list);
267 list_del(next);
Pekka Enbergd739b422006-02-01 03:06:43 -0800268 kfree(bn->data);
269 kfree(bn);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700270 next = journal->j_bitmap_nodes.next;
271 journal->j_free_bitmap_nodes--;
272 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700273
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700274 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700275}
276
277/*
Jeff Mahoney0222e652009-03-30 14:02:44 -0400278** get memory for JOURNAL_NUM_BITMAPS worth of bitmaps.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700279** jb_array is the array to be filled in.
280*/
Jeff Mahoneya9dd3642009-03-30 14:02:45 -0400281int reiserfs_allocate_list_bitmaps(struct super_block *sb,
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700282 struct reiserfs_list_bitmap *jb_array,
Jeff Mahoney3ee16672007-10-18 23:39:25 -0700283 unsigned int bmap_nr)
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700284{
285 int i;
286 int failed = 0;
287 struct reiserfs_list_bitmap *jb;
288 int mem = bmap_nr * sizeof(struct reiserfs_bitmap_node *);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700289
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700290 for (i = 0; i < JOURNAL_NUM_BITMAPS; i++) {
291 jb = jb_array + i;
292 jb->journal_list = NULL;
Joe Perches558feb02011-05-28 10:36:33 -0700293 jb->bitmaps = vzalloc(mem);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700294 if (!jb->bitmaps) {
Jeff Mahoneya9dd3642009-03-30 14:02:45 -0400295 reiserfs_warning(sb, "clm-2000", "unable to "
Jeff Mahoney45b03d52009-03-30 14:02:21 -0400296 "allocate bitmaps for journal lists");
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700297 failed = 1;
298 break;
299 }
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700300 }
301 if (failed) {
Jeff Mahoneya9dd3642009-03-30 14:02:45 -0400302 free_list_bitmaps(sb, jb_array);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700303 return -1;
304 }
305 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700306}
307
308/*
Jeff Mahoney0222e652009-03-30 14:02:44 -0400309** find an available list bitmap. If you can't find one, flush a commit list
Linus Torvalds1da177e2005-04-16 15:20:36 -0700310** and try again
311*/
Jeff Mahoneya9dd3642009-03-30 14:02:45 -0400312static struct reiserfs_list_bitmap *get_list_bitmap(struct super_block *sb,
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700313 struct reiserfs_journal_list
314 *jl)
315{
316 int i, j;
Jeff Mahoneya9dd3642009-03-30 14:02:45 -0400317 struct reiserfs_journal *journal = SB_JOURNAL(sb);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700318 struct reiserfs_list_bitmap *jb = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700319
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700320 for (j = 0; j < (JOURNAL_NUM_BITMAPS * 3); j++) {
321 i = journal->j_list_bitmap_index;
322 journal->j_list_bitmap_index = (i + 1) % JOURNAL_NUM_BITMAPS;
323 jb = journal->j_list_bitmap + i;
324 if (journal->j_list_bitmap[i].journal_list) {
Jeff Mahoneya9dd3642009-03-30 14:02:45 -0400325 flush_commit_list(sb,
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700326 journal->j_list_bitmap[i].
327 journal_list, 1);
328 if (!journal->j_list_bitmap[i].journal_list) {
329 break;
330 }
331 } else {
332 break;
333 }
334 }
335 if (jb->journal_list) { /* double check to make sure if flushed correctly */
336 return NULL;
337 }
338 jb->journal_list = jl;
339 return jb;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700340}
341
Jeff Mahoney0222e652009-03-30 14:02:44 -0400342/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700343** allocates a new chunk of X nodes, and links them all together as a list.
344** Uses the cnode->next and cnode->prev pointers
345** returns NULL on failure
346*/
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700347static struct reiserfs_journal_cnode *allocate_cnodes(int num_cnodes)
348{
349 struct reiserfs_journal_cnode *head;
350 int i;
351 if (num_cnodes <= 0) {
352 return NULL;
353 }
Joe Perches558feb02011-05-28 10:36:33 -0700354 head = vzalloc(num_cnodes * sizeof(struct reiserfs_journal_cnode));
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700355 if (!head) {
356 return NULL;
357 }
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700358 head[0].prev = NULL;
359 head[0].next = head + 1;
360 for (i = 1; i < num_cnodes; i++) {
361 head[i].prev = head + (i - 1);
362 head[i].next = head + (i + 1); /* if last one, overwrite it after the if */
363 }
364 head[num_cnodes - 1].next = NULL;
365 return head;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700366}
367
368/*
Jeff Mahoney0222e652009-03-30 14:02:44 -0400369** pulls a cnode off the free list, or returns NULL on failure
Linus Torvalds1da177e2005-04-16 15:20:36 -0700370*/
Jeff Mahoneya9dd3642009-03-30 14:02:45 -0400371static struct reiserfs_journal_cnode *get_cnode(struct super_block *sb)
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700372{
373 struct reiserfs_journal_cnode *cn;
Jeff Mahoneya9dd3642009-03-30 14:02:45 -0400374 struct reiserfs_journal *journal = SB_JOURNAL(sb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700375
Jeff Mahoneya9dd3642009-03-30 14:02:45 -0400376 reiserfs_check_lock_depth(sb, "get_cnode");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700377
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700378 if (journal->j_cnode_free <= 0) {
379 return NULL;
380 }
381 journal->j_cnode_used++;
382 journal->j_cnode_free--;
383 cn = journal->j_cnode_free_list;
384 if (!cn) {
385 return cn;
386 }
387 if (cn->next) {
388 cn->next->prev = NULL;
389 }
390 journal->j_cnode_free_list = cn->next;
391 memset(cn, 0, sizeof(struct reiserfs_journal_cnode));
392 return cn;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700393}
394
395/*
Jeff Mahoney0222e652009-03-30 14:02:44 -0400396** returns a cnode to the free list
Linus Torvalds1da177e2005-04-16 15:20:36 -0700397*/
Jeff Mahoneya9dd3642009-03-30 14:02:45 -0400398static void free_cnode(struct super_block *sb,
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700399 struct reiserfs_journal_cnode *cn)
400{
Jeff Mahoneya9dd3642009-03-30 14:02:45 -0400401 struct reiserfs_journal *journal = SB_JOURNAL(sb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700402
Jeff Mahoneya9dd3642009-03-30 14:02:45 -0400403 reiserfs_check_lock_depth(sb, "free_cnode");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700404
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700405 journal->j_cnode_used--;
406 journal->j_cnode_free++;
407 /* memset(cn, 0, sizeof(struct reiserfs_journal_cnode)) ; */
408 cn->next = journal->j_cnode_free_list;
409 if (journal->j_cnode_free_list) {
410 journal->j_cnode_free_list->prev = cn;
411 }
412 cn->prev = NULL; /* not needed with the memset, but I might kill the memset, and forget to do this */
413 journal->j_cnode_free_list = cn;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700414}
415
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700416static void clear_prepared_bits(struct buffer_head *bh)
417{
418 clear_buffer_journal_prepared(bh);
419 clear_buffer_journal_restore_dirty(bh);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700420}
421
Linus Torvalds1da177e2005-04-16 15:20:36 -0700422/* return a cnode with same dev, block number and size in table, or null if not found */
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700423static inline struct reiserfs_journal_cnode *get_journal_hash_dev(struct
424 super_block
425 *sb,
426 struct
427 reiserfs_journal_cnode
428 **table,
429 long bl)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700430{
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700431 struct reiserfs_journal_cnode *cn;
432 cn = journal_hash(table, sb, bl);
433 while (cn) {
434 if (cn->blocknr == bl && cn->sb == sb)
435 return cn;
436 cn = cn->hnext;
437 }
438 return (struct reiserfs_journal_cnode *)0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700439}
440
441/*
442** this actually means 'can this block be reallocated yet?'. If you set search_all, a block can only be allocated
443** if it is not in the current transaction, was not freed by the current transaction, and has no chance of ever
444** being overwritten by a replay after crashing.
445**
446** If you don't set search_all, a block can only be allocated if it is not in the current transaction. Since deleting
447** a block removes it from the current transaction, this case should never happen. If you don't set search_all, make
448** sure you never write the block without logging it.
449**
450** next_zero_bit is a suggestion about the next block to try for find_forward.
451** when bl is rejected because it is set in a journal list bitmap, we search
452** for the next zero bit in the bitmap that rejected bl. Then, we return that
453** through next_zero_bit for find_forward to try.
454**
455** Just because we return something in next_zero_bit does not mean we won't
456** reject it on the next call to reiserfs_in_journal
457**
458*/
Jeff Mahoneya9dd3642009-03-30 14:02:45 -0400459int reiserfs_in_journal(struct super_block *sb,
Jeff Mahoney3ee16672007-10-18 23:39:25 -0700460 unsigned int bmap_nr, int bit_nr, int search_all,
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700461 b_blocknr_t * next_zero_bit)
462{
Jeff Mahoneya9dd3642009-03-30 14:02:45 -0400463 struct reiserfs_journal *journal = SB_JOURNAL(sb);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700464 struct reiserfs_journal_cnode *cn;
465 struct reiserfs_list_bitmap *jb;
466 int i;
467 unsigned long bl;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700468
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700469 *next_zero_bit = 0; /* always start this at zero. */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700470
Jeff Mahoneya9dd3642009-03-30 14:02:45 -0400471 PROC_INFO_INC(sb, journal.in_journal);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700472 /* If we aren't doing a search_all, this is a metablock, and it will be logged before use.
473 ** if we crash before the transaction that freed it commits, this transaction won't
474 ** have committed either, and the block will never be written
475 */
476 if (search_all) {
477 for (i = 0; i < JOURNAL_NUM_BITMAPS; i++) {
Jeff Mahoneya9dd3642009-03-30 14:02:45 -0400478 PROC_INFO_INC(sb, journal.in_journal_bitmap);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700479 jb = journal->j_list_bitmap + i;
480 if (jb->journal_list && jb->bitmaps[bmap_nr] &&
481 test_bit(bit_nr,
482 (unsigned long *)jb->bitmaps[bmap_nr]->
483 data)) {
484 *next_zero_bit =
485 find_next_zero_bit((unsigned long *)
486 (jb->bitmaps[bmap_nr]->
487 data),
Jeff Mahoneya9dd3642009-03-30 14:02:45 -0400488 sb->s_blocksize << 3,
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700489 bit_nr + 1);
490 return 1;
491 }
492 }
493 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700494
Jeff Mahoneya9dd3642009-03-30 14:02:45 -0400495 bl = bmap_nr * (sb->s_blocksize << 3) + bit_nr;
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700496 /* is it in any old transactions? */
497 if (search_all
498 && (cn =
Jeff Mahoneya9dd3642009-03-30 14:02:45 -0400499 get_journal_hash_dev(sb, journal->j_list_hash_table, bl))) {
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700500 return 1;
501 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700502
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700503 /* is it in the current transaction. This should never happen */
Jeff Mahoneya9dd3642009-03-30 14:02:45 -0400504 if ((cn = get_journal_hash_dev(sb, journal->j_hash_table, bl))) {
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700505 BUG();
506 return 1;
507 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700508
Jeff Mahoneya9dd3642009-03-30 14:02:45 -0400509 PROC_INFO_INC(sb, journal.in_journal_reusable);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700510 /* safe for reuse */
511 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700512}
513
514/* insert cn into table
515*/
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700516static inline void insert_journal_hash(struct reiserfs_journal_cnode **table,
517 struct reiserfs_journal_cnode *cn)
518{
519 struct reiserfs_journal_cnode *cn_orig;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700520
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700521 cn_orig = journal_hash(table, cn->sb, cn->blocknr);
522 cn->hnext = cn_orig;
523 cn->hprev = NULL;
524 if (cn_orig) {
525 cn_orig->hprev = cn;
526 }
527 journal_hash(table, cn->sb, cn->blocknr) = cn;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700528}
529
530/* lock the current transaction */
Jeff Mahoneya9dd3642009-03-30 14:02:45 -0400531static inline void lock_journal(struct super_block *sb)
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700532{
Jeff Mahoneya9dd3642009-03-30 14:02:45 -0400533 PROC_INFO_INC(sb, journal.lock_journal);
Frederic Weisbecker8ebc4232009-04-07 04:19:49 +0200534
535 reiserfs_mutex_lock_safe(&SB_JOURNAL(sb)->j_mutex, sb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700536}
537
538/* unlock the current transaction */
Jeff Mahoneya9dd3642009-03-30 14:02:45 -0400539static inline void unlock_journal(struct super_block *sb)
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700540{
Jeff Mahoneya9dd3642009-03-30 14:02:45 -0400541 mutex_unlock(&SB_JOURNAL(sb)->j_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700542}
543
544static inline void get_journal_list(struct reiserfs_journal_list *jl)
545{
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700546 jl->j_refcount++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700547}
548
549static inline void put_journal_list(struct super_block *s,
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700550 struct reiserfs_journal_list *jl)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700551{
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700552 if (jl->j_refcount < 1) {
Jeff Mahoneyc3a9c212009-03-30 14:02:25 -0400553 reiserfs_panic(s, "journal-2", "trans id %u, refcount at %d",
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700554 jl->j_trans_id, jl->j_refcount);
555 }
556 if (--jl->j_refcount == 0)
Pekka Enbergd739b422006-02-01 03:06:43 -0800557 kfree(jl);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700558}
559
560/*
561** this used to be much more involved, and I'm keeping it just in case things get ugly again.
562** it gets called by flush_commit_list, and cleans up any data stored about blocks freed during a
563** transaction.
564*/
Jeff Mahoneya9dd3642009-03-30 14:02:45 -0400565static void cleanup_freed_for_journal_list(struct super_block *sb,
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700566 struct reiserfs_journal_list *jl)
567{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700568
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700569 struct reiserfs_list_bitmap *jb = jl->j_list_bitmap;
570 if (jb) {
Jeff Mahoneya9dd3642009-03-30 14:02:45 -0400571 cleanup_bitmap_list(sb, jb);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700572 }
573 jl->j_list_bitmap->journal_list = NULL;
574 jl->j_list_bitmap = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700575}
576
577static int journal_list_still_alive(struct super_block *s,
Jeff Mahoney600ed412009-03-30 14:02:17 -0400578 unsigned int trans_id)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700579{
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700580 struct reiserfs_journal *journal = SB_JOURNAL(s);
581 struct list_head *entry = &journal->j_journal_list;
582 struct reiserfs_journal_list *jl;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700583
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700584 if (!list_empty(entry)) {
585 jl = JOURNAL_LIST_ENTRY(entry->next);
586 if (jl->j_trans_id <= trans_id) {
587 return 1;
588 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700589 }
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700590 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700591}
592
Chris Mason398c95b2007-10-16 23:29:44 -0700593/*
594 * If page->mapping was null, we failed to truncate this page for
595 * some reason. Most likely because it was truncated after being
596 * logged via data=journal.
597 *
598 * This does a check to see if the buffer belongs to one of these
599 * lost pages before doing the final put_bh. If page->mapping was
600 * null, it tries to free buffers on the page, which should make the
601 * final page_cache_release drop the page from the lru.
602 */
603static void release_buffer_page(struct buffer_head *bh)
604{
605 struct page *page = bh->b_page;
Nick Piggin529ae9a2008-08-02 12:01:03 +0200606 if (!page->mapping && trylock_page(page)) {
Chris Mason398c95b2007-10-16 23:29:44 -0700607 page_cache_get(page);
608 put_bh(bh);
609 if (!page->mapping)
610 try_to_free_buffers(page);
611 unlock_page(page);
612 page_cache_release(page);
613 } else {
614 put_bh(bh);
615 }
616}
617
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700618static void reiserfs_end_buffer_io_sync(struct buffer_head *bh, int uptodate)
619{
620 char b[BDEVNAME_SIZE];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700621
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700622 if (buffer_journaled(bh)) {
Jeff Mahoney45b03d52009-03-30 14:02:21 -0400623 reiserfs_warning(NULL, "clm-2084",
624 "pinned buffer %lu:%s sent to disk",
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700625 bh->b_blocknr, bdevname(bh->b_bdev, b));
626 }
627 if (uptodate)
628 set_buffer_uptodate(bh);
629 else
630 clear_buffer_uptodate(bh);
Chris Mason398c95b2007-10-16 23:29:44 -0700631
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700632 unlock_buffer(bh);
Chris Mason398c95b2007-10-16 23:29:44 -0700633 release_buffer_page(bh);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700634}
635
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700636static void reiserfs_end_ordered_io(struct buffer_head *bh, int uptodate)
637{
638 if (uptodate)
639 set_buffer_uptodate(bh);
640 else
641 clear_buffer_uptodate(bh);
642 unlock_buffer(bh);
643 put_bh(bh);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700644}
645
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700646static void submit_logged_buffer(struct buffer_head *bh)
647{
648 get_bh(bh);
649 bh->b_end_io = reiserfs_end_buffer_io_sync;
650 clear_buffer_journal_new(bh);
651 clear_buffer_dirty(bh);
652 if (!test_clear_buffer_journal_test(bh))
653 BUG();
654 if (!buffer_uptodate(bh))
655 BUG();
656 submit_bh(WRITE, bh);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700657}
658
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700659static void submit_ordered_buffer(struct buffer_head *bh)
660{
661 get_bh(bh);
662 bh->b_end_io = reiserfs_end_ordered_io;
663 clear_buffer_dirty(bh);
664 if (!buffer_uptodate(bh))
665 BUG();
666 submit_bh(WRITE, bh);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700667}
668
Linus Torvalds1da177e2005-04-16 15:20:36 -0700669#define CHUNK_SIZE 32
670struct buffer_chunk {
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700671 struct buffer_head *bh[CHUNK_SIZE];
672 int nr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700673};
674
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700675static void write_chunk(struct buffer_chunk *chunk)
676{
677 int i;
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700678 for (i = 0; i < chunk->nr; i++) {
679 submit_logged_buffer(chunk->bh[i]);
680 }
681 chunk->nr = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700682}
683
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700684static void write_ordered_chunk(struct buffer_chunk *chunk)
685{
686 int i;
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700687 for (i = 0; i < chunk->nr; i++) {
688 submit_ordered_buffer(chunk->bh[i]);
689 }
690 chunk->nr = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700691}
692
693static int add_to_chunk(struct buffer_chunk *chunk, struct buffer_head *bh,
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700694 spinlock_t * lock, void (fn) (struct buffer_chunk *))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700695{
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700696 int ret = 0;
Eric Sesterhenn14a61442006-10-03 23:36:38 +0200697 BUG_ON(chunk->nr >= CHUNK_SIZE);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700698 chunk->bh[chunk->nr++] = bh;
699 if (chunk->nr >= CHUNK_SIZE) {
700 ret = 1;
701 if (lock)
702 spin_unlock(lock);
703 fn(chunk);
704 if (lock)
705 spin_lock(lock);
706 }
707 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700708}
709
Linus Torvalds1da177e2005-04-16 15:20:36 -0700710static atomic_t nr_reiserfs_jh = ATOMIC_INIT(0);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700711static struct reiserfs_jh *alloc_jh(void)
712{
713 struct reiserfs_jh *jh;
714 while (1) {
715 jh = kmalloc(sizeof(*jh), GFP_NOFS);
716 if (jh) {
717 atomic_inc(&nr_reiserfs_jh);
718 return jh;
719 }
720 yield();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700721 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700722}
723
724/*
725 * we want to free the jh when the buffer has been written
726 * and waited on
727 */
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700728void reiserfs_free_jh(struct buffer_head *bh)
729{
730 struct reiserfs_jh *jh;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700731
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700732 jh = bh->b_private;
733 if (jh) {
734 bh->b_private = NULL;
735 jh->bh = NULL;
736 list_del_init(&jh->list);
737 kfree(jh);
738 if (atomic_read(&nr_reiserfs_jh) <= 0)
739 BUG();
740 atomic_dec(&nr_reiserfs_jh);
741 put_bh(bh);
742 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700743}
744
745static inline int __add_jh(struct reiserfs_journal *j, struct buffer_head *bh,
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700746 int tail)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700747{
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700748 struct reiserfs_jh *jh;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700749
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700750 if (bh->b_private) {
751 spin_lock(&j->j_dirty_buffers_lock);
752 if (!bh->b_private) {
753 spin_unlock(&j->j_dirty_buffers_lock);
754 goto no_jh;
755 }
756 jh = bh->b_private;
757 list_del_init(&jh->list);
758 } else {
759 no_jh:
760 get_bh(bh);
761 jh = alloc_jh();
762 spin_lock(&j->j_dirty_buffers_lock);
763 /* buffer must be locked for __add_jh, should be able to have
764 * two adds at the same time
765 */
Eric Sesterhenn14a61442006-10-03 23:36:38 +0200766 BUG_ON(bh->b_private);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700767 jh->bh = bh;
768 bh->b_private = jh;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700769 }
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700770 jh->jl = j->j_current_jl;
771 if (tail)
772 list_add_tail(&jh->list, &jh->jl->j_tail_bh_list);
773 else {
774 list_add_tail(&jh->list, &jh->jl->j_bh_list);
775 }
776 spin_unlock(&j->j_dirty_buffers_lock);
777 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700778}
779
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700780int reiserfs_add_tail_list(struct inode *inode, struct buffer_head *bh)
781{
782 return __add_jh(SB_JOURNAL(inode->i_sb), bh, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700783}
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700784int reiserfs_add_ordered_list(struct inode *inode, struct buffer_head *bh)
785{
786 return __add_jh(SB_JOURNAL(inode->i_sb), bh, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700787}
788
789#define JH_ENTRY(l) list_entry((l), struct reiserfs_jh, list)
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700790static int write_ordered_buffers(spinlock_t * lock,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700791 struct reiserfs_journal *j,
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700792 struct reiserfs_journal_list *jl,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700793 struct list_head *list)
794{
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700795 struct buffer_head *bh;
796 struct reiserfs_jh *jh;
797 int ret = j->j_errno;
798 struct buffer_chunk chunk;
799 struct list_head tmp;
800 INIT_LIST_HEAD(&tmp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700801
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700802 chunk.nr = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700803 spin_lock(lock);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700804 while (!list_empty(list)) {
805 jh = JH_ENTRY(list->next);
806 bh = jh->bh;
807 get_bh(bh);
Nick Pigginca5de402008-08-02 12:02:13 +0200808 if (!trylock_buffer(bh)) {
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700809 if (!buffer_dirty(bh)) {
Akinobu Mitaf1166292006-06-26 00:24:46 -0700810 list_move(&jh->list, &tmp);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700811 goto loop_next;
812 }
813 spin_unlock(lock);
814 if (chunk.nr)
815 write_ordered_chunk(&chunk);
816 wait_on_buffer(bh);
817 cond_resched();
818 spin_lock(lock);
819 goto loop_next;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700820 }
Chris Mason3d4492f2006-02-01 03:06:49 -0800821 /* in theory, dirty non-uptodate buffers should never get here,
822 * but the upper layer io error paths still have a few quirks.
823 * Handle them here as gracefully as we can
824 */
825 if (!buffer_uptodate(bh) && buffer_dirty(bh)) {
826 clear_buffer_dirty(bh);
827 ret = -EIO;
828 }
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700829 if (buffer_dirty(bh)) {
Akinobu Mitaf1166292006-06-26 00:24:46 -0700830 list_move(&jh->list, &tmp);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700831 add_to_chunk(&chunk, bh, lock, write_ordered_chunk);
832 } else {
833 reiserfs_free_jh(bh);
834 unlock_buffer(bh);
835 }
836 loop_next:
837 put_bh(bh);
838 cond_resched_lock(lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700839 }
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700840 if (chunk.nr) {
841 spin_unlock(lock);
842 write_ordered_chunk(&chunk);
843 spin_lock(lock);
844 }
845 while (!list_empty(&tmp)) {
846 jh = JH_ENTRY(tmp.prev);
847 bh = jh->bh;
848 get_bh(bh);
849 reiserfs_free_jh(bh);
850
851 if (buffer_locked(bh)) {
852 spin_unlock(lock);
853 wait_on_buffer(bh);
854 spin_lock(lock);
855 }
856 if (!buffer_uptodate(bh)) {
857 ret = -EIO;
858 }
Chris Masond62b1b82006-02-01 03:06:47 -0800859 /* ugly interaction with invalidatepage here.
860 * reiserfs_invalidate_page will pin any buffer that has a valid
861 * journal head from an older transaction. If someone else sets
862 * our buffer dirty after we write it in the first loop, and
863 * then someone truncates the page away, nobody will ever write
864 * the buffer. We're safe if we write the page one last time
865 * after freeing the journal header.
866 */
867 if (buffer_dirty(bh) && unlikely(bh->b_page->mapping == NULL)) {
868 spin_unlock(lock);
869 ll_rw_block(WRITE, 1, &bh);
870 spin_lock(lock);
871 }
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700872 put_bh(bh);
873 cond_resched_lock(lock);
874 }
875 spin_unlock(lock);
876 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700877}
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700878
879static int flush_older_commits(struct super_block *s,
880 struct reiserfs_journal_list *jl)
881{
882 struct reiserfs_journal *journal = SB_JOURNAL(s);
883 struct reiserfs_journal_list *other_jl;
884 struct reiserfs_journal_list *first_jl;
885 struct list_head *entry;
Jeff Mahoney600ed412009-03-30 14:02:17 -0400886 unsigned int trans_id = jl->j_trans_id;
887 unsigned int other_trans_id;
888 unsigned int first_trans_id;
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700889
890 find_first:
891 /*
892 * first we walk backwards to find the oldest uncommitted transation
893 */
894 first_jl = jl;
895 entry = jl->j_list.prev;
896 while (1) {
897 other_jl = JOURNAL_LIST_ENTRY(entry);
898 if (entry == &journal->j_journal_list ||
899 atomic_read(&other_jl->j_older_commits_done))
900 break;
901
902 first_jl = other_jl;
903 entry = other_jl->j_list.prev;
904 }
905
906 /* if we didn't find any older uncommitted transactions, return now */
907 if (first_jl == jl) {
908 return 0;
909 }
910
911 first_trans_id = first_jl->j_trans_id;
912
913 entry = &first_jl->j_list;
914 while (1) {
915 other_jl = JOURNAL_LIST_ENTRY(entry);
916 other_trans_id = other_jl->j_trans_id;
917
918 if (other_trans_id < trans_id) {
919 if (atomic_read(&other_jl->j_commit_left) != 0) {
920 flush_commit_list(s, other_jl, 0);
921
922 /* list we were called with is gone, return */
923 if (!journal_list_still_alive(s, trans_id))
924 return 1;
925
926 /* the one we just flushed is gone, this means all
927 * older lists are also gone, so first_jl is no longer
928 * valid either. Go back to the beginning.
929 */
930 if (!journal_list_still_alive
931 (s, other_trans_id)) {
932 goto find_first;
933 }
934 }
935 entry = entry->next;
936 if (entry == &journal->j_journal_list)
937 return 0;
938 } else {
939 return 0;
940 }
941 }
942 return 0;
943}
Adrian Bunkdeba0f42007-10-16 23:26:03 -0700944
945static int reiserfs_async_progress_wait(struct super_block *s)
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700946{
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700947 struct reiserfs_journal *j = SB_JOURNAL(s);
Frederic Weisbecker8ebc4232009-04-07 04:19:49 +0200948
949 if (atomic_read(&j->j_async_throttle)) {
950 reiserfs_write_unlock(s);
Jens Axboe8aa7e842009-07-09 14:52:32 +0200951 congestion_wait(BLK_RW_ASYNC, HZ / 10);
Frederic Weisbecker8ebc4232009-04-07 04:19:49 +0200952 reiserfs_write_lock(s);
953 }
954
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700955 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700956}
957
958/*
959** if this journal list still has commit blocks unflushed, send them to disk.
960**
961** log areas must be flushed in order (transaction 2 can't commit before transaction 1)
962** Before the commit block can by written, every other log block must be safely on disk
963**
964*/
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700965static int flush_commit_list(struct super_block *s,
966 struct reiserfs_journal_list *jl, int flushall)
967{
968 int i;
Jeff Mahoney3ee16672007-10-18 23:39:25 -0700969 b_blocknr_t bn;
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700970 struct buffer_head *tbh = NULL;
Jeff Mahoney600ed412009-03-30 14:02:17 -0400971 unsigned int trans_id = jl->j_trans_id;
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700972 struct reiserfs_journal *journal = SB_JOURNAL(s);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700973 int retval = 0;
Chris Masone0e851c2006-02-01 03:06:49 -0800974 int write_len;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700975
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700976 reiserfs_check_lock_depth(s, "flush_commit_list");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700977
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700978 if (atomic_read(&jl->j_older_commits_done)) {
979 return 0;
980 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700981
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700982 /* before we can put our commit blocks on disk, we have to make sure everyone older than
983 ** us is on disk too
984 */
985 BUG_ON(jl->j_len <= 0);
986 BUG_ON(trans_id == journal->j_trans_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700987
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700988 get_journal_list(jl);
989 if (flushall) {
990 if (flush_older_commits(s, jl) == 1) {
991 /* list disappeared during flush_older_commits. return */
992 goto put_jl;
993 }
994 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700995
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700996 /* make sure nobody is trying to flush this one at the same time */
Frederic Weisbecker8ebc4232009-04-07 04:19:49 +0200997 reiserfs_mutex_lock_safe(&jl->j_commit_mutex, s);
998
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700999 if (!journal_list_still_alive(s, trans_id)) {
Jeff Mahoney90415de2008-07-25 01:46:40 -07001000 mutex_unlock(&jl->j_commit_mutex);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001001 goto put_jl;
1002 }
1003 BUG_ON(jl->j_trans_id == 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001004
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001005 /* this commit is done, exit */
1006 if (atomic_read(&(jl->j_commit_left)) <= 0) {
1007 if (flushall) {
1008 atomic_set(&(jl->j_older_commits_done), 1);
1009 }
Jeff Mahoney90415de2008-07-25 01:46:40 -07001010 mutex_unlock(&jl->j_commit_mutex);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001011 goto put_jl;
1012 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001013
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001014 if (!list_empty(&jl->j_bh_list)) {
Chris Mason3d4492f2006-02-01 03:06:49 -08001015 int ret;
Frederic Weisbecker8ebc4232009-04-07 04:19:49 +02001016
1017 /*
1018 * We might sleep in numerous places inside
1019 * write_ordered_buffers. Relax the write lock.
1020 */
1021 reiserfs_write_unlock(s);
Chris Mason3d4492f2006-02-01 03:06:49 -08001022 ret = write_ordered_buffers(&journal->j_dirty_buffers_lock,
1023 journal, jl, &jl->j_bh_list);
1024 if (ret < 0 && retval == 0)
1025 retval = ret;
Frederic Weisbecker8ebc4232009-04-07 04:19:49 +02001026 reiserfs_write_lock(s);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001027 }
1028 BUG_ON(!list_empty(&jl->j_bh_list));
1029 /*
1030 * for the description block and all the log blocks, submit any buffers
Chris Masone0e851c2006-02-01 03:06:49 -08001031 * that haven't already reached the disk. Try to write at least 256
1032 * log blocks. later on, we will only wait on blocks that correspond
1033 * to this transaction, but while we're unplugging we might as well
1034 * get a chunk of data on there.
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001035 */
1036 atomic_inc(&journal->j_async_throttle);
Chris Masone0e851c2006-02-01 03:06:49 -08001037 write_len = jl->j_len + 1;
1038 if (write_len < 256)
1039 write_len = 256;
1040 for (i = 0 ; i < write_len ; i++) {
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001041 bn = SB_ONDISK_JOURNAL_1st_BLOCK(s) + (jl->j_start + i) %
1042 SB_ONDISK_JOURNAL_SIZE(s);
1043 tbh = journal_find_get_block(s, bn);
Chris Masone0e851c2006-02-01 03:06:49 -08001044 if (tbh) {
Frederic Weisbecker6e3647a2009-05-01 02:27:39 +02001045 if (buffer_dirty(tbh)) {
1046 reiserfs_write_unlock(s);
1047 ll_rw_block(WRITE, 1, &tbh);
1048 reiserfs_write_lock(s);
1049 }
Chris Masone0e851c2006-02-01 03:06:49 -08001050 put_bh(tbh) ;
1051 }
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001052 }
1053 atomic_dec(&journal->j_async_throttle);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001054
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001055 for (i = 0; i < (jl->j_len + 1); i++) {
1056 bn = SB_ONDISK_JOURNAL_1st_BLOCK(s) +
1057 (jl->j_start + i) % SB_ONDISK_JOURNAL_SIZE(s);
1058 tbh = journal_find_get_block(s, bn);
Frederic Weisbecker8ebc4232009-04-07 04:19:49 +02001059
1060 reiserfs_write_unlock(s);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001061 wait_on_buffer(tbh);
Frederic Weisbecker8ebc4232009-04-07 04:19:49 +02001062 reiserfs_write_lock(s);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001063 // since we're using ll_rw_blk above, it might have skipped over
1064 // a locked buffer. Double check here
1065 //
Frederic Weisbecker8ebc4232009-04-07 04:19:49 +02001066 /* redundant, sync_dirty_buffer() checks */
1067 if (buffer_dirty(tbh)) {
1068 reiserfs_write_unlock(s);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001069 sync_dirty_buffer(tbh);
Frederic Weisbecker8ebc4232009-04-07 04:19:49 +02001070 reiserfs_write_lock(s);
1071 }
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001072 if (unlikely(!buffer_uptodate(tbh))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001073#ifdef CONFIG_REISERFS_CHECK
Jeff Mahoney45b03d52009-03-30 14:02:21 -04001074 reiserfs_warning(s, "journal-601",
1075 "buffer write failed");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001076#endif
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001077 retval = -EIO;
1078 }
1079 put_bh(tbh); /* once for journal_find_get_block */
1080 put_bh(tbh); /* once due to original getblk in do_journal_end */
1081 atomic_dec(&(jl->j_commit_left));
1082 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001083
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001084 BUG_ON(atomic_read(&(jl->j_commit_left)) != 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001085
Christoph Hellwig7cd33ad2010-08-18 05:29:14 -04001086 /* If there was a write error in the journal - we can't commit
1087 * this transaction - it will be invalid and, if successful,
1088 * will just end up propagating the write error out to
1089 * the file system. */
1090 if (likely(!retval && !reiserfs_is_journal_aborted (journal))) {
1091 if (buffer_dirty(jl->j_commit_bh))
1092 BUG();
1093 mark_buffer_dirty(jl->j_commit_bh) ;
Frederic Weisbecker8ebc4232009-04-07 04:19:49 +02001094 reiserfs_write_unlock(s);
Christoph Hellwig7cd33ad2010-08-18 05:29:14 -04001095 if (reiserfs_barrier_flush(s))
1096 __sync_dirty_buffer(jl->j_commit_bh, WRITE_FLUSH_FUA);
1097 else
1098 sync_dirty_buffer(jl->j_commit_bh);
Frederic Weisbecker8ebc4232009-04-07 04:19:49 +02001099 reiserfs_write_lock(s);
1100 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001101
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001102 /* If there was a write error in the journal - we can't commit this
1103 * transaction - it will be invalid and, if successful, will just end
Robert P. J. Daybeb7dd82007-05-09 07:14:03 +02001104 * up propagating the write error out to the filesystem. */
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001105 if (unlikely(!buffer_uptodate(jl->j_commit_bh))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001106#ifdef CONFIG_REISERFS_CHECK
Jeff Mahoney45b03d52009-03-30 14:02:21 -04001107 reiserfs_warning(s, "journal-615", "buffer write failed");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001108#endif
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001109 retval = -EIO;
1110 }
1111 bforget(jl->j_commit_bh);
1112 if (journal->j_last_commit_id != 0 &&
1113 (jl->j_trans_id - journal->j_last_commit_id) != 1) {
Jeff Mahoney45b03d52009-03-30 14:02:21 -04001114 reiserfs_warning(s, "clm-2200", "last commit %lu, current %lu",
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001115 journal->j_last_commit_id, jl->j_trans_id);
1116 }
1117 journal->j_last_commit_id = jl->j_trans_id;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001118
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001119 /* now, every commit block is on the disk. It is safe to allow blocks freed during this transaction to be reallocated */
1120 cleanup_freed_for_journal_list(s, jl);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001121
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001122 retval = retval ? retval : journal->j_errno;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001123
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001124 /* mark the metadata dirty */
1125 if (!retval)
1126 dirty_one_transaction(s, jl);
1127 atomic_dec(&(jl->j_commit_left));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001128
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001129 if (flushall) {
1130 atomic_set(&(jl->j_older_commits_done), 1);
1131 }
Jeff Mahoney90415de2008-07-25 01:46:40 -07001132 mutex_unlock(&jl->j_commit_mutex);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001133 put_jl:
1134 put_journal_list(s, jl);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001135
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001136 if (retval)
1137 reiserfs_abort(s, retval, "Journal write error in %s",
Harvey Harrisonfbe54982008-04-28 02:16:22 -07001138 __func__);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001139 return retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001140}
1141
1142/*
Jeff Mahoney0222e652009-03-30 14:02:44 -04001143** flush_journal_list frequently needs to find a newer transaction for a given block. This does that, or
1144** returns NULL if it can't find anything
Linus Torvalds1da177e2005-04-16 15:20:36 -07001145*/
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001146static struct reiserfs_journal_list *find_newer_jl_for_cn(struct
1147 reiserfs_journal_cnode
1148 *cn)
1149{
1150 struct super_block *sb = cn->sb;
1151 b_blocknr_t blocknr = cn->blocknr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001152
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001153 cn = cn->hprev;
1154 while (cn) {
1155 if (cn->sb == sb && cn->blocknr == blocknr && cn->jlist) {
1156 return cn->jlist;
1157 }
1158 cn = cn->hprev;
1159 }
1160 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001161}
1162
Chris Masona3172022006-09-29 01:59:56 -07001163static int newer_jl_done(struct reiserfs_journal_cnode *cn)
1164{
1165 struct super_block *sb = cn->sb;
1166 b_blocknr_t blocknr = cn->blocknr;
1167
1168 cn = cn->hprev;
1169 while (cn) {
1170 if (cn->sb == sb && cn->blocknr == blocknr && cn->jlist &&
1171 atomic_read(&cn->jlist->j_commit_left) != 0)
1172 return 0;
1173 cn = cn->hprev;
1174 }
1175 return 1;
1176}
1177
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001178static void remove_journal_hash(struct super_block *,
1179 struct reiserfs_journal_cnode **,
1180 struct reiserfs_journal_list *, unsigned long,
1181 int);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001182
1183/*
1184** once all the real blocks have been flushed, it is safe to remove them from the
1185** journal list for this transaction. Aside from freeing the cnode, this also allows the
1186** block to be reallocated for data blocks if it had been deleted.
1187*/
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04001188static void remove_all_from_journal_list(struct super_block *sb,
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001189 struct reiserfs_journal_list *jl,
1190 int debug)
1191{
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04001192 struct reiserfs_journal *journal = SB_JOURNAL(sb);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001193 struct reiserfs_journal_cnode *cn, *last;
1194 cn = jl->j_realblock;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001195
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001196 /* which is better, to lock once around the whole loop, or
1197 ** to lock for each call to remove_journal_hash?
1198 */
1199 while (cn) {
1200 if (cn->blocknr != 0) {
1201 if (debug) {
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04001202 reiserfs_warning(sb, "reiserfs-2201",
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001203 "block %u, bh is %d, state %ld",
1204 cn->blocknr, cn->bh ? 1 : 0,
1205 cn->state);
1206 }
1207 cn->state = 0;
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04001208 remove_journal_hash(sb, journal->j_list_hash_table,
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001209 jl, cn->blocknr, 1);
1210 }
1211 last = cn;
1212 cn = cn->next;
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04001213 free_cnode(sb, last);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001214 }
1215 jl->j_realblock = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001216}
1217
1218/*
1219** if this timestamp is greater than the timestamp we wrote last to the header block, write it to the header block.
1220** once this is done, I can safely say the log area for this transaction won't ever be replayed, and I can start
1221** releasing blocks in this transaction for reuse as data blocks.
1222** called by flush_journal_list, before it calls remove_all_from_journal_list
1223**
1224*/
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04001225static int _update_journal_header_block(struct super_block *sb,
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001226 unsigned long offset,
Jeff Mahoney600ed412009-03-30 14:02:17 -04001227 unsigned int trans_id)
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001228{
1229 struct reiserfs_journal_header *jh;
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04001230 struct reiserfs_journal *journal = SB_JOURNAL(sb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001231
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001232 if (reiserfs_is_journal_aborted(journal))
1233 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001234
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001235 if (trans_id >= journal->j_last_flush_trans_id) {
1236 if (buffer_locked((journal->j_header_bh))) {
Frederic Weisbecker8ebc4232009-04-07 04:19:49 +02001237 reiserfs_write_unlock(sb);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001238 wait_on_buffer((journal->j_header_bh));
Frederic Weisbecker8ebc4232009-04-07 04:19:49 +02001239 reiserfs_write_lock(sb);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001240 if (unlikely(!buffer_uptodate(journal->j_header_bh))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001241#ifdef CONFIG_REISERFS_CHECK
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04001242 reiserfs_warning(sb, "journal-699",
Jeff Mahoney45b03d52009-03-30 14:02:21 -04001243 "buffer write failed");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001244#endif
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001245 return -EIO;
1246 }
1247 }
1248 journal->j_last_flush_trans_id = trans_id;
1249 journal->j_first_unflushed_offset = offset;
1250 jh = (struct reiserfs_journal_header *)(journal->j_header_bh->
1251 b_data);
1252 jh->j_last_flush_trans_id = cpu_to_le32(trans_id);
1253 jh->j_first_unflushed_offset = cpu_to_le32(offset);
1254 jh->j_mount_id = cpu_to_le32(journal->j_mount_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001255
Christoph Hellwig7cd33ad2010-08-18 05:29:14 -04001256 set_buffer_dirty(journal->j_header_bh);
1257 reiserfs_write_unlock(sb);
1258
1259 if (reiserfs_barrier_flush(sb))
1260 __sync_dirty_buffer(journal->j_header_bh, WRITE_FLUSH_FUA);
1261 else
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001262 sync_dirty_buffer(journal->j_header_bh);
Christoph Hellwig7cd33ad2010-08-18 05:29:14 -04001263
1264 reiserfs_write_lock(sb);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001265 if (!buffer_uptodate(journal->j_header_bh)) {
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04001266 reiserfs_warning(sb, "journal-837",
Jeff Mahoney45b03d52009-03-30 14:02:21 -04001267 "IO error during journal replay");
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001268 return -EIO;
1269 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001270 }
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001271 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001272}
1273
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04001274static int update_journal_header_block(struct super_block *sb,
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001275 unsigned long offset,
Jeff Mahoney600ed412009-03-30 14:02:17 -04001276 unsigned int trans_id)
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001277{
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04001278 return _update_journal_header_block(sb, offset, trans_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001279}
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001280
Jeff Mahoney0222e652009-03-30 14:02:44 -04001281/*
1282** flush any and all journal lists older than you are
Linus Torvalds1da177e2005-04-16 15:20:36 -07001283** can only be called from flush_journal_list
1284*/
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04001285static int flush_older_journal_lists(struct super_block *sb,
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001286 struct reiserfs_journal_list *jl)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001287{
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001288 struct list_head *entry;
1289 struct reiserfs_journal_list *other_jl;
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04001290 struct reiserfs_journal *journal = SB_JOURNAL(sb);
Jeff Mahoney600ed412009-03-30 14:02:17 -04001291 unsigned int trans_id = jl->j_trans_id;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001292
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001293 /* we know we are the only ones flushing things, no extra race
1294 * protection is required.
1295 */
1296 restart:
1297 entry = journal->j_journal_list.next;
1298 /* Did we wrap? */
1299 if (entry == &journal->j_journal_list)
1300 return 0;
1301 other_jl = JOURNAL_LIST_ENTRY(entry);
1302 if (other_jl->j_trans_id < trans_id) {
1303 BUG_ON(other_jl->j_refcount <= 0);
1304 /* do not flush all */
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04001305 flush_journal_list(sb, other_jl, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001306
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001307 /* other_jl is now deleted from the list */
1308 goto restart;
1309 }
1310 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001311}
1312
1313static void del_from_work_list(struct super_block *s,
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001314 struct reiserfs_journal_list *jl)
1315{
1316 struct reiserfs_journal *journal = SB_JOURNAL(s);
1317 if (!list_empty(&jl->j_working_list)) {
1318 list_del_init(&jl->j_working_list);
1319 journal->j_num_work_lists--;
1320 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001321}
1322
1323/* flush a journal list, both commit and real blocks
1324**
1325** always set flushall to 1, unless you are calling from inside
1326** flush_journal_list
1327**
Jeff Mahoney0222e652009-03-30 14:02:44 -04001328** IMPORTANT. This can only be called while there are no journal writers,
1329** and the journal is locked. That means it can only be called from
Linus Torvalds1da177e2005-04-16 15:20:36 -07001330** do_journal_end, or by journal_release
1331*/
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001332static int flush_journal_list(struct super_block *s,
1333 struct reiserfs_journal_list *jl, int flushall)
1334{
1335 struct reiserfs_journal_list *pjl;
1336 struct reiserfs_journal_cnode *cn, *last;
1337 int count;
1338 int was_jwait = 0;
1339 int was_dirty = 0;
1340 struct buffer_head *saved_bh;
1341 unsigned long j_len_saved = jl->j_len;
1342 struct reiserfs_journal *journal = SB_JOURNAL(s);
1343 int err = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001344
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001345 BUG_ON(j_len_saved <= 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001346
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001347 if (atomic_read(&journal->j_wcount) != 0) {
Jeff Mahoney45b03d52009-03-30 14:02:21 -04001348 reiserfs_warning(s, "clm-2048", "called with wcount %d",
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001349 atomic_read(&journal->j_wcount));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001350 }
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001351 BUG_ON(jl->j_trans_id == 0);
1352
1353 /* if flushall == 0, the lock is already held */
1354 if (flushall) {
Frederic Weisbecker8ebc4232009-04-07 04:19:49 +02001355 reiserfs_mutex_lock_safe(&journal->j_flush_mutex, s);
Jeff Mahoneyafe70252008-07-25 01:46:39 -07001356 } else if (mutex_trylock(&journal->j_flush_mutex)) {
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001357 BUG();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001358 }
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001359
1360 count = 0;
1361 if (j_len_saved > journal->j_trans_max) {
Jeff Mahoneyc3a9c212009-03-30 14:02:25 -04001362 reiserfs_panic(s, "journal-715", "length is %lu, trans id %lu",
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001363 j_len_saved, jl->j_trans_id);
1364 return 0;
1365 }
1366
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001367 /* if all the work is already done, get out of here */
1368 if (atomic_read(&(jl->j_nonzerolen)) <= 0 &&
1369 atomic_read(&(jl->j_commit_left)) <= 0) {
1370 goto flush_older_and_return;
1371 }
1372
Jeff Mahoney0222e652009-03-30 14:02:44 -04001373 /* start by putting the commit list on disk. This will also flush
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001374 ** the commit lists of any olders transactions
1375 */
1376 flush_commit_list(s, jl, 1);
1377
1378 if (!(jl->j_state & LIST_DIRTY)
1379 && !reiserfs_is_journal_aborted(journal))
1380 BUG();
1381
1382 /* are we done now? */
1383 if (atomic_read(&(jl->j_nonzerolen)) <= 0 &&
1384 atomic_read(&(jl->j_commit_left)) <= 0) {
1385 goto flush_older_and_return;
1386 }
1387
Jeff Mahoney0222e652009-03-30 14:02:44 -04001388 /* loop through each cnode, see if we need to write it,
1389 ** or wait on a more recent transaction, or just ignore it
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001390 */
1391 if (atomic_read(&(journal->j_wcount)) != 0) {
Jeff Mahoneyc3a9c212009-03-30 14:02:25 -04001392 reiserfs_panic(s, "journal-844", "journal list is flushing, "
1393 "wcount is not 0");
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001394 }
1395 cn = jl->j_realblock;
1396 while (cn) {
1397 was_jwait = 0;
1398 was_dirty = 0;
1399 saved_bh = NULL;
1400 /* blocknr of 0 is no longer in the hash, ignore it */
1401 if (cn->blocknr == 0) {
1402 goto free_cnode;
1403 }
1404
1405 /* This transaction failed commit. Don't write out to the disk */
1406 if (!(jl->j_state & LIST_DIRTY))
1407 goto free_cnode;
1408
1409 pjl = find_newer_jl_for_cn(cn);
1410 /* the order is important here. We check pjl to make sure we
1411 ** don't clear BH_JDirty_wait if we aren't the one writing this
1412 ** block to disk
1413 */
1414 if (!pjl && cn->bh) {
1415 saved_bh = cn->bh;
1416
Jeff Mahoney0222e652009-03-30 14:02:44 -04001417 /* we do this to make sure nobody releases the buffer while
1418 ** we are working with it
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001419 */
1420 get_bh(saved_bh);
1421
1422 if (buffer_journal_dirty(saved_bh)) {
1423 BUG_ON(!can_dirty(cn));
1424 was_jwait = 1;
1425 was_dirty = 1;
1426 } else if (can_dirty(cn)) {
1427 /* everything with !pjl && jwait should be writable */
1428 BUG();
1429 }
1430 }
1431
1432 /* if someone has this block in a newer transaction, just make
Matt LaPlante0779bf22006-11-30 05:24:39 +01001433 ** sure they are committed, and don't try writing it to disk
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001434 */
1435 if (pjl) {
1436 if (atomic_read(&pjl->j_commit_left))
1437 flush_commit_list(s, pjl, 1);
1438 goto free_cnode;
1439 }
1440
Jeff Mahoney0222e652009-03-30 14:02:44 -04001441 /* bh == NULL when the block got to disk on its own, OR,
1442 ** the block got freed in a future transaction
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001443 */
1444 if (saved_bh == NULL) {
1445 goto free_cnode;
1446 }
1447
1448 /* this should never happen. kupdate_one_transaction has this list
1449 ** locked while it works, so we should never see a buffer here that
1450 ** is not marked JDirty_wait
1451 */
1452 if ((!was_jwait) && !buffer_locked(saved_bh)) {
Jeff Mahoney45b03d52009-03-30 14:02:21 -04001453 reiserfs_warning(s, "journal-813",
1454 "BAD! buffer %llu %cdirty %cjwait, "
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001455 "not in a newer tranasction",
1456 (unsigned long long)saved_bh->
1457 b_blocknr, was_dirty ? ' ' : '!',
1458 was_jwait ? ' ' : '!');
1459 }
1460 if (was_dirty) {
1461 /* we inc again because saved_bh gets decremented at free_cnode */
1462 get_bh(saved_bh);
1463 set_bit(BLOCK_NEEDS_FLUSH, &cn->state);
1464 lock_buffer(saved_bh);
1465 BUG_ON(cn->blocknr != saved_bh->b_blocknr);
1466 if (buffer_dirty(saved_bh))
1467 submit_logged_buffer(saved_bh);
1468 else
1469 unlock_buffer(saved_bh);
1470 count++;
1471 } else {
Jeff Mahoney45b03d52009-03-30 14:02:21 -04001472 reiserfs_warning(s, "clm-2082",
1473 "Unable to flush buffer %llu in %s",
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001474 (unsigned long long)saved_bh->
Harvey Harrisonfbe54982008-04-28 02:16:22 -07001475 b_blocknr, __func__);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001476 }
1477 free_cnode:
1478 last = cn;
1479 cn = cn->next;
1480 if (saved_bh) {
1481 /* we incremented this to keep others from taking the buffer head away */
1482 put_bh(saved_bh);
1483 if (atomic_read(&(saved_bh->b_count)) < 0) {
Jeff Mahoney45b03d52009-03-30 14:02:21 -04001484 reiserfs_warning(s, "journal-945",
1485 "saved_bh->b_count < 0");
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001486 }
1487 }
1488 }
1489 if (count > 0) {
1490 cn = jl->j_realblock;
1491 while (cn) {
1492 if (test_bit(BLOCK_NEEDS_FLUSH, &cn->state)) {
1493 if (!cn->bh) {
Jeff Mahoneyc3a9c212009-03-30 14:02:25 -04001494 reiserfs_panic(s, "journal-1011",
1495 "cn->bh is NULL");
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001496 }
Frederic Weisbecker8ebc4232009-04-07 04:19:49 +02001497
1498 reiserfs_write_unlock(s);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001499 wait_on_buffer(cn->bh);
Frederic Weisbecker8ebc4232009-04-07 04:19:49 +02001500 reiserfs_write_lock(s);
1501
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001502 if (!cn->bh) {
Jeff Mahoneyc3a9c212009-03-30 14:02:25 -04001503 reiserfs_panic(s, "journal-1012",
1504 "cn->bh is NULL");
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001505 }
1506 if (unlikely(!buffer_uptodate(cn->bh))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001507#ifdef CONFIG_REISERFS_CHECK
Jeff Mahoney45b03d52009-03-30 14:02:21 -04001508 reiserfs_warning(s, "journal-949",
1509 "buffer write failed");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001510#endif
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001511 err = -EIO;
1512 }
1513 /* note, we must clear the JDirty_wait bit after the up to date
1514 ** check, otherwise we race against our flushpage routine
1515 */
1516 BUG_ON(!test_clear_buffer_journal_dirty
1517 (cn->bh));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001518
Chris Mason398c95b2007-10-16 23:29:44 -07001519 /* drop one ref for us */
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001520 put_bh(cn->bh);
Chris Mason398c95b2007-10-16 23:29:44 -07001521 /* drop one ref for journal_mark_dirty */
1522 release_buffer_page(cn->bh);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001523 }
1524 cn = cn->next;
1525 }
1526 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001527
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001528 if (err)
1529 reiserfs_abort(s, -EIO,
1530 "Write error while pushing transaction to disk in %s",
Harvey Harrisonfbe54982008-04-28 02:16:22 -07001531 __func__);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001532 flush_older_and_return:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001533
Jeff Mahoney0222e652009-03-30 14:02:44 -04001534 /* before we can update the journal header block, we _must_ flush all
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001535 ** real blocks from all older transactions to disk. This is because
1536 ** once the header block is updated, this transaction will not be
1537 ** replayed after a crash
1538 */
1539 if (flushall) {
1540 flush_older_journal_lists(s, jl);
1541 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001542
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001543 err = journal->j_errno;
Jeff Mahoney0222e652009-03-30 14:02:44 -04001544 /* before we can remove everything from the hash tables for this
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001545 ** transaction, we must make sure it can never be replayed
1546 **
1547 ** since we are only called from do_journal_end, we know for sure there
1548 ** are no allocations going on while we are flushing journal lists. So,
1549 ** we only need to update the journal header block for the last list
1550 ** being flushed
1551 */
1552 if (!err && flushall) {
1553 err =
1554 update_journal_header_block(s,
1555 (jl->j_start + jl->j_len +
1556 2) % SB_ONDISK_JOURNAL_SIZE(s),
1557 jl->j_trans_id);
1558 if (err)
1559 reiserfs_abort(s, -EIO,
1560 "Write error while updating journal header in %s",
Harvey Harrisonfbe54982008-04-28 02:16:22 -07001561 __func__);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001562 }
1563 remove_all_from_journal_list(s, jl, 0);
1564 list_del_init(&jl->j_list);
1565 journal->j_num_lists--;
1566 del_from_work_list(s, jl);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001567
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001568 if (journal->j_last_flush_id != 0 &&
1569 (jl->j_trans_id - journal->j_last_flush_id) != 1) {
Jeff Mahoney45b03d52009-03-30 14:02:21 -04001570 reiserfs_warning(s, "clm-2201", "last flush %lu, current %lu",
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001571 journal->j_last_flush_id, jl->j_trans_id);
1572 }
1573 journal->j_last_flush_id = jl->j_trans_id;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001574
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001575 /* not strictly required since we are freeing the list, but it should
1576 * help find code using dead lists later on
1577 */
1578 jl->j_len = 0;
1579 atomic_set(&(jl->j_nonzerolen), 0);
1580 jl->j_start = 0;
1581 jl->j_realblock = NULL;
1582 jl->j_commit_bh = NULL;
1583 jl->j_trans_id = 0;
1584 jl->j_state = 0;
1585 put_journal_list(s, jl);
1586 if (flushall)
Jeff Mahoneyafe70252008-07-25 01:46:39 -07001587 mutex_unlock(&journal->j_flush_mutex);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001588 return err;
1589}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001590
Chris Masona3172022006-09-29 01:59:56 -07001591static int test_transaction(struct super_block *s,
1592 struct reiserfs_journal_list *jl)
1593{
1594 struct reiserfs_journal_cnode *cn;
1595
1596 if (jl->j_len == 0 || atomic_read(&jl->j_nonzerolen) == 0)
1597 return 1;
1598
1599 cn = jl->j_realblock;
1600 while (cn) {
1601 /* if the blocknr == 0, this has been cleared from the hash,
1602 ** skip it
1603 */
1604 if (cn->blocknr == 0) {
1605 goto next;
1606 }
1607 if (cn->bh && !newer_jl_done(cn))
1608 return 0;
1609 next:
1610 cn = cn->next;
1611 cond_resched();
1612 }
1613 return 0;
1614}
1615
Linus Torvalds1da177e2005-04-16 15:20:36 -07001616static int write_one_transaction(struct super_block *s,
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001617 struct reiserfs_journal_list *jl,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001618 struct buffer_chunk *chunk)
1619{
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001620 struct reiserfs_journal_cnode *cn;
1621 int ret = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001622
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001623 jl->j_state |= LIST_TOUCHED;
1624 del_from_work_list(s, jl);
1625 if (jl->j_len == 0 || atomic_read(&jl->j_nonzerolen) == 0) {
1626 return 0;
1627 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001628
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001629 cn = jl->j_realblock;
1630 while (cn) {
1631 /* if the blocknr == 0, this has been cleared from the hash,
1632 ** skip it
1633 */
1634 if (cn->blocknr == 0) {
1635 goto next;
1636 }
1637 if (cn->bh && can_dirty(cn) && buffer_dirty(cn->bh)) {
1638 struct buffer_head *tmp_bh;
1639 /* we can race against journal_mark_freed when we try
1640 * to lock_buffer(cn->bh), so we have to inc the buffer
1641 * count, and recheck things after locking
1642 */
1643 tmp_bh = cn->bh;
1644 get_bh(tmp_bh);
1645 lock_buffer(tmp_bh);
1646 if (cn->bh && can_dirty(cn) && buffer_dirty(tmp_bh)) {
1647 if (!buffer_journal_dirty(tmp_bh) ||
1648 buffer_journal_prepared(tmp_bh))
1649 BUG();
1650 add_to_chunk(chunk, tmp_bh, NULL, write_chunk);
1651 ret++;
1652 } else {
1653 /* note, cn->bh might be null now */
1654 unlock_buffer(tmp_bh);
1655 }
1656 put_bh(tmp_bh);
1657 }
1658 next:
1659 cn = cn->next;
1660 cond_resched();
1661 }
1662 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001663}
1664
1665/* used by flush_commit_list */
1666static int dirty_one_transaction(struct super_block *s,
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001667 struct reiserfs_journal_list *jl)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001668{
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001669 struct reiserfs_journal_cnode *cn;
1670 struct reiserfs_journal_list *pjl;
1671 int ret = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001672
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001673 jl->j_state |= LIST_DIRTY;
1674 cn = jl->j_realblock;
1675 while (cn) {
1676 /* look for a more recent transaction that logged this
1677 ** buffer. Only the most recent transaction with a buffer in
1678 ** it is allowed to send that buffer to disk
1679 */
1680 pjl = find_newer_jl_for_cn(cn);
1681 if (!pjl && cn->blocknr && cn->bh
1682 && buffer_journal_dirty(cn->bh)) {
1683 BUG_ON(!can_dirty(cn));
1684 /* if the buffer is prepared, it will either be logged
1685 * or restored. If restored, we need to make sure
1686 * it actually gets marked dirty
1687 */
1688 clear_buffer_journal_new(cn->bh);
1689 if (buffer_journal_prepared(cn->bh)) {
1690 set_buffer_journal_restore_dirty(cn->bh);
1691 } else {
1692 set_buffer_journal_test(cn->bh);
1693 mark_buffer_dirty(cn->bh);
1694 }
1695 }
1696 cn = cn->next;
1697 }
1698 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001699}
1700
1701static int kupdate_transactions(struct super_block *s,
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001702 struct reiserfs_journal_list *jl,
1703 struct reiserfs_journal_list **next_jl,
Jeff Mahoney600ed412009-03-30 14:02:17 -04001704 unsigned int *next_trans_id,
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001705 int num_blocks, int num_trans)
1706{
1707 int ret = 0;
1708 int written = 0;
1709 int transactions_flushed = 0;
Jeff Mahoney600ed412009-03-30 14:02:17 -04001710 unsigned int orig_trans_id = jl->j_trans_id;
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001711 struct buffer_chunk chunk;
1712 struct list_head *entry;
1713 struct reiserfs_journal *journal = SB_JOURNAL(s);
1714 chunk.nr = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001715
Frederic Weisbeckera412f9e2009-04-14 00:10:35 +02001716 reiserfs_mutex_lock_safe(&journal->j_flush_mutex, s);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001717 if (!journal_list_still_alive(s, orig_trans_id)) {
1718 goto done;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001719 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001720
Jeff Mahoneyafe70252008-07-25 01:46:39 -07001721 /* we've got j_flush_mutex held, nobody is going to delete any
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001722 * of these lists out from underneath us
1723 */
1724 while ((num_trans && transactions_flushed < num_trans) ||
1725 (!num_trans && written < num_blocks)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001726
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001727 if (jl->j_len == 0 || (jl->j_state & LIST_TOUCHED) ||
1728 atomic_read(&jl->j_commit_left)
1729 || !(jl->j_state & LIST_DIRTY)) {
1730 del_from_work_list(s, jl);
1731 break;
1732 }
1733 ret = write_one_transaction(s, jl, &chunk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001734
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001735 if (ret < 0)
1736 goto done;
1737 transactions_flushed++;
1738 written += ret;
1739 entry = jl->j_list.next;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001740
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001741 /* did we wrap? */
1742 if (entry == &journal->j_journal_list) {
1743 break;
1744 }
1745 jl = JOURNAL_LIST_ENTRY(entry);
1746
1747 /* don't bother with older transactions */
1748 if (jl->j_trans_id <= orig_trans_id)
1749 break;
1750 }
1751 if (chunk.nr) {
1752 write_chunk(&chunk);
1753 }
1754
1755 done:
Jeff Mahoneyafe70252008-07-25 01:46:39 -07001756 mutex_unlock(&journal->j_flush_mutex);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001757 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001758}
1759
1760/* for o_sync and fsync heavy applications, they tend to use
1761** all the journa list slots with tiny transactions. These
1762** trigger lots and lots of calls to update the header block, which
1763** adds seeks and slows things down.
1764**
1765** This function tries to clear out a large chunk of the journal lists
1766** at once, which makes everything faster since only the newest journal
1767** list updates the header block
1768*/
1769static int flush_used_journal_lists(struct super_block *s,
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001770 struct reiserfs_journal_list *jl)
1771{
1772 unsigned long len = 0;
1773 unsigned long cur_len;
1774 int ret;
1775 int i;
1776 int limit = 256;
1777 struct reiserfs_journal_list *tjl;
1778 struct reiserfs_journal_list *flush_jl;
Jeff Mahoney600ed412009-03-30 14:02:17 -04001779 unsigned int trans_id;
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001780 struct reiserfs_journal *journal = SB_JOURNAL(s);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001781
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001782 flush_jl = tjl = jl;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001783
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001784 /* in data logging mode, try harder to flush a lot of blocks */
1785 if (reiserfs_data_log(s))
1786 limit = 1024;
1787 /* flush for 256 transactions or limit blocks, whichever comes first */
1788 for (i = 0; i < 256 && len < limit; i++) {
1789 if (atomic_read(&tjl->j_commit_left) ||
1790 tjl->j_trans_id < jl->j_trans_id) {
1791 break;
1792 }
1793 cur_len = atomic_read(&tjl->j_nonzerolen);
1794 if (cur_len > 0) {
1795 tjl->j_state &= ~LIST_TOUCHED;
1796 }
1797 len += cur_len;
1798 flush_jl = tjl;
1799 if (tjl->j_list.next == &journal->j_journal_list)
1800 break;
1801 tjl = JOURNAL_LIST_ENTRY(tjl->j_list.next);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001802 }
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001803 /* try to find a group of blocks we can flush across all the
1804 ** transactions, but only bother if we've actually spanned
1805 ** across multiple lists
1806 */
1807 if (flush_jl != jl) {
1808 ret = kupdate_transactions(s, jl, &tjl, &trans_id, len, i);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001809 }
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001810 flush_journal_list(s, flush_jl, 1);
1811 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001812}
1813
1814/*
1815** removes any nodes in table with name block and dev as bh.
1816** only touchs the hnext and hprev pointers.
1817*/
1818void remove_journal_hash(struct super_block *sb,
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001819 struct reiserfs_journal_cnode **table,
1820 struct reiserfs_journal_list *jl,
1821 unsigned long block, int remove_freed)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001822{
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001823 struct reiserfs_journal_cnode *cur;
1824 struct reiserfs_journal_cnode **head;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001825
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001826 head = &(journal_hash(table, sb, block));
1827 if (!head) {
1828 return;
1829 }
1830 cur = *head;
1831 while (cur) {
1832 if (cur->blocknr == block && cur->sb == sb
1833 && (jl == NULL || jl == cur->jlist)
1834 && (!test_bit(BLOCK_FREED, &cur->state) || remove_freed)) {
1835 if (cur->hnext) {
1836 cur->hnext->hprev = cur->hprev;
1837 }
1838 if (cur->hprev) {
1839 cur->hprev->hnext = cur->hnext;
1840 } else {
1841 *head = cur->hnext;
1842 }
1843 cur->blocknr = 0;
1844 cur->sb = NULL;
1845 cur->state = 0;
1846 if (cur->bh && cur->jlist) /* anybody who clears the cur->bh will also dec the nonzerolen */
1847 atomic_dec(&(cur->jlist->j_nonzerolen));
1848 cur->bh = NULL;
1849 cur->jlist = NULL;
1850 }
1851 cur = cur->hnext;
1852 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001853}
1854
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04001855static void free_journal_ram(struct super_block *sb)
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001856{
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04001857 struct reiserfs_journal *journal = SB_JOURNAL(sb);
Pekka Enbergd739b422006-02-01 03:06:43 -08001858 kfree(journal->j_current_jl);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001859 journal->j_num_lists--;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001860
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001861 vfree(journal->j_cnode_free_orig);
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04001862 free_list_bitmaps(sb, journal->j_list_bitmap);
1863 free_bitmap_nodes(sb); /* must be after free_list_bitmaps */
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001864 if (journal->j_header_bh) {
1865 brelse(journal->j_header_bh);
1866 }
1867 /* j_header_bh is on the journal dev, make sure not to release the journal
1868 * dev until we brelse j_header_bh
1869 */
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04001870 release_journal_dev(sb, journal);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001871 vfree(journal);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001872}
1873
1874/*
1875** call on unmount. Only set error to 1 if you haven't made your way out
1876** of read_super() yet. Any other caller must keep error at 0.
1877*/
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001878static int do_journal_release(struct reiserfs_transaction_handle *th,
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04001879 struct super_block *sb, int error)
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001880{
1881 struct reiserfs_transaction_handle myth;
1882 int flushed = 0;
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04001883 struct reiserfs_journal *journal = SB_JOURNAL(sb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001884
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001885 /* we only want to flush out transactions if we were called with error == 0
1886 */
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04001887 if (!error && !(sb->s_flags & MS_RDONLY)) {
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001888 /* end the current trans */
1889 BUG_ON(!th->t_trans_id);
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04001890 do_journal_end(th, sb, 10, FLUSH_ALL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001891
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001892 /* make sure something gets logged to force our way into the flush code */
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04001893 if (!journal_join(&myth, sb, 1)) {
1894 reiserfs_prepare_for_journal(sb,
1895 SB_BUFFER_WITH_SB(sb),
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001896 1);
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04001897 journal_mark_dirty(&myth, sb,
1898 SB_BUFFER_WITH_SB(sb));
1899 do_journal_end(&myth, sb, 1, FLUSH_ALL);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001900 flushed = 1;
1901 }
1902 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001903
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001904 /* this also catches errors during the do_journal_end above */
1905 if (!error && reiserfs_is_journal_aborted(journal)) {
1906 memset(&myth, 0, sizeof(myth));
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04001907 if (!journal_join_abort(&myth, sb, 1)) {
1908 reiserfs_prepare_for_journal(sb,
1909 SB_BUFFER_WITH_SB(sb),
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001910 1);
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04001911 journal_mark_dirty(&myth, sb,
1912 SB_BUFFER_WITH_SB(sb));
1913 do_journal_end(&myth, sb, 1, FLUSH_ALL);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001914 }
1915 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001916
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001917 reiserfs_mounted_fs_count--;
1918 /* wait for all commits to finish */
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04001919 cancel_delayed_work(&SB_JOURNAL(sb)->j_work);
Frederic Weisbecker8ebc4232009-04-07 04:19:49 +02001920
1921 /*
1922 * We must release the write lock here because
1923 * the workqueue job (flush_async_commit) needs this lock
1924 */
1925 reiserfs_write_unlock(sb);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001926 flush_workqueue(commit_wq);
Frederic Weisbecker8ebc4232009-04-07 04:19:49 +02001927
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001928 if (!reiserfs_mounted_fs_count) {
1929 destroy_workqueue(commit_wq);
1930 commit_wq = NULL;
1931 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001932
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04001933 free_journal_ram(sb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001934
Frederic Weisbecker05236762009-12-30 05:56:08 +01001935 reiserfs_write_lock(sb);
1936
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001937 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001938}
1939
1940/*
1941** call on unmount. flush all journal trans, release all alloc'd ram
1942*/
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001943int journal_release(struct reiserfs_transaction_handle *th,
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04001944 struct super_block *sb)
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001945{
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04001946 return do_journal_release(th, sb, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001947}
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001948
Linus Torvalds1da177e2005-04-16 15:20:36 -07001949/*
1950** only call from an error condition inside reiserfs_read_super!
1951*/
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001952int journal_release_error(struct reiserfs_transaction_handle *th,
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04001953 struct super_block *sb)
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001954{
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04001955 return do_journal_release(th, sb, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001956}
1957
1958/* compares description block with commit block. returns 1 if they differ, 0 if they are the same */
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04001959static int journal_compare_desc_commit(struct super_block *sb,
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001960 struct reiserfs_journal_desc *desc,
1961 struct reiserfs_journal_commit *commit)
1962{
1963 if (get_commit_trans_id(commit) != get_desc_trans_id(desc) ||
1964 get_commit_trans_len(commit) != get_desc_trans_len(desc) ||
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04001965 get_commit_trans_len(commit) > SB_JOURNAL(sb)->j_trans_max ||
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001966 get_commit_trans_len(commit) <= 0) {
1967 return 1;
1968 }
1969 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001970}
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001971
Jeff Mahoney0222e652009-03-30 14:02:44 -04001972/* returns 0 if it did not find a description block
Linus Torvalds1da177e2005-04-16 15:20:36 -07001973** returns -1 if it found a corrupt commit block
Jeff Mahoney0222e652009-03-30 14:02:44 -04001974** returns 1 if both desc and commit were valid
Linus Torvalds1da177e2005-04-16 15:20:36 -07001975*/
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04001976static int journal_transaction_is_valid(struct super_block *sb,
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001977 struct buffer_head *d_bh,
Jeff Mahoney600ed412009-03-30 14:02:17 -04001978 unsigned int *oldest_invalid_trans_id,
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001979 unsigned long *newest_mount_id)
1980{
1981 struct reiserfs_journal_desc *desc;
1982 struct reiserfs_journal_commit *commit;
1983 struct buffer_head *c_bh;
1984 unsigned long offset;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001985
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001986 if (!d_bh)
1987 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001988
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001989 desc = (struct reiserfs_journal_desc *)d_bh->b_data;
1990 if (get_desc_trans_len(desc) > 0
1991 && !memcmp(get_journal_desc_magic(d_bh), JOURNAL_DESC_MAGIC, 8)) {
1992 if (oldest_invalid_trans_id && *oldest_invalid_trans_id
1993 && get_desc_trans_id(desc) > *oldest_invalid_trans_id) {
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04001994 reiserfs_debug(sb, REISERFS_DEBUG_CODE,
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001995 "journal-986: transaction "
1996 "is valid returning because trans_id %d is greater than "
1997 "oldest_invalid %lu",
1998 get_desc_trans_id(desc),
1999 *oldest_invalid_trans_id);
2000 return 0;
2001 }
2002 if (newest_mount_id
2003 && *newest_mount_id > get_desc_mount_id(desc)) {
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04002004 reiserfs_debug(sb, REISERFS_DEBUG_CODE,
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002005 "journal-1087: transaction "
2006 "is valid returning because mount_id %d is less than "
2007 "newest_mount_id %lu",
2008 get_desc_mount_id(desc),
2009 *newest_mount_id);
2010 return -1;
2011 }
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04002012 if (get_desc_trans_len(desc) > SB_JOURNAL(sb)->j_trans_max) {
2013 reiserfs_warning(sb, "journal-2018",
Jeff Mahoney45b03d52009-03-30 14:02:21 -04002014 "Bad transaction length %d "
2015 "encountered, ignoring transaction",
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002016 get_desc_trans_len(desc));
2017 return -1;
2018 }
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04002019 offset = d_bh->b_blocknr - SB_ONDISK_JOURNAL_1st_BLOCK(sb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002020
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002021 /* ok, we have a journal description block, lets see if the transaction was valid */
2022 c_bh =
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04002023 journal_bread(sb,
2024 SB_ONDISK_JOURNAL_1st_BLOCK(sb) +
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002025 ((offset + get_desc_trans_len(desc) +
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04002026 1) % SB_ONDISK_JOURNAL_SIZE(sb)));
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002027 if (!c_bh)
2028 return 0;
2029 commit = (struct reiserfs_journal_commit *)c_bh->b_data;
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04002030 if (journal_compare_desc_commit(sb, desc, commit)) {
2031 reiserfs_debug(sb, REISERFS_DEBUG_CODE,
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002032 "journal_transaction_is_valid, commit offset %ld had bad "
2033 "time %d or length %d",
2034 c_bh->b_blocknr -
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04002035 SB_ONDISK_JOURNAL_1st_BLOCK(sb),
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002036 get_commit_trans_id(commit),
2037 get_commit_trans_len(commit));
2038 brelse(c_bh);
2039 if (oldest_invalid_trans_id) {
2040 *oldest_invalid_trans_id =
2041 get_desc_trans_id(desc);
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04002042 reiserfs_debug(sb, REISERFS_DEBUG_CODE,
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002043 "journal-1004: "
2044 "transaction_is_valid setting oldest invalid trans_id "
2045 "to %d",
2046 get_desc_trans_id(desc));
2047 }
2048 return -1;
2049 }
2050 brelse(c_bh);
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04002051 reiserfs_debug(sb, REISERFS_DEBUG_CODE,
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002052 "journal-1006: found valid "
2053 "transaction start offset %llu, len %d id %d",
2054 d_bh->b_blocknr -
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04002055 SB_ONDISK_JOURNAL_1st_BLOCK(sb),
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002056 get_desc_trans_len(desc),
2057 get_desc_trans_id(desc));
2058 return 1;
2059 } else {
2060 return 0;
2061 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002062}
2063
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002064static void brelse_array(struct buffer_head **heads, int num)
2065{
2066 int i;
2067 for (i = 0; i < num; i++) {
2068 brelse(heads[i]);
2069 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002070}
2071
2072/*
2073** given the start, and values for the oldest acceptable transactions,
2074** this either reads in a replays a transaction, or returns because the transaction
2075** is invalid, or too old.
2076*/
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04002077static int journal_read_transaction(struct super_block *sb,
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002078 unsigned long cur_dblock,
2079 unsigned long oldest_start,
Jeff Mahoney600ed412009-03-30 14:02:17 -04002080 unsigned int oldest_trans_id,
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002081 unsigned long newest_mount_id)
2082{
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04002083 struct reiserfs_journal *journal = SB_JOURNAL(sb);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002084 struct reiserfs_journal_desc *desc;
2085 struct reiserfs_journal_commit *commit;
Jeff Mahoney600ed412009-03-30 14:02:17 -04002086 unsigned int trans_id = 0;
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002087 struct buffer_head *c_bh;
2088 struct buffer_head *d_bh;
2089 struct buffer_head **log_blocks = NULL;
2090 struct buffer_head **real_blocks = NULL;
Jeff Mahoney600ed412009-03-30 14:02:17 -04002091 unsigned int trans_offset;
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002092 int i;
2093 int trans_half;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002094
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04002095 d_bh = journal_bread(sb, cur_dblock);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002096 if (!d_bh)
2097 return 1;
2098 desc = (struct reiserfs_journal_desc *)d_bh->b_data;
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04002099 trans_offset = d_bh->b_blocknr - SB_ONDISK_JOURNAL_1st_BLOCK(sb);
2100 reiserfs_debug(sb, REISERFS_DEBUG_CODE, "journal-1037: "
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002101 "journal_read_transaction, offset %llu, len %d mount_id %d",
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04002102 d_bh->b_blocknr - SB_ONDISK_JOURNAL_1st_BLOCK(sb),
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002103 get_desc_trans_len(desc), get_desc_mount_id(desc));
2104 if (get_desc_trans_id(desc) < oldest_trans_id) {
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04002105 reiserfs_debug(sb, REISERFS_DEBUG_CODE, "journal-1039: "
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002106 "journal_read_trans skipping because %lu is too old",
2107 cur_dblock -
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04002108 SB_ONDISK_JOURNAL_1st_BLOCK(sb));
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002109 brelse(d_bh);
2110 return 1;
2111 }
2112 if (get_desc_mount_id(desc) != newest_mount_id) {
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04002113 reiserfs_debug(sb, REISERFS_DEBUG_CODE, "journal-1146: "
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002114 "journal_read_trans skipping because %d is != "
2115 "newest_mount_id %lu", get_desc_mount_id(desc),
2116 newest_mount_id);
2117 brelse(d_bh);
2118 return 1;
2119 }
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04002120 c_bh = journal_bread(sb, SB_ONDISK_JOURNAL_1st_BLOCK(sb) +
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002121 ((trans_offset + get_desc_trans_len(desc) + 1) %
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04002122 SB_ONDISK_JOURNAL_SIZE(sb)));
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002123 if (!c_bh) {
2124 brelse(d_bh);
2125 return 1;
2126 }
2127 commit = (struct reiserfs_journal_commit *)c_bh->b_data;
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04002128 if (journal_compare_desc_commit(sb, desc, commit)) {
2129 reiserfs_debug(sb, REISERFS_DEBUG_CODE,
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002130 "journal_read_transaction, "
2131 "commit offset %llu had bad time %d or length %d",
2132 c_bh->b_blocknr -
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04002133 SB_ONDISK_JOURNAL_1st_BLOCK(sb),
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002134 get_commit_trans_id(commit),
2135 get_commit_trans_len(commit));
2136 brelse(c_bh);
2137 brelse(d_bh);
2138 return 1;
2139 }
Jeff Mahoney3f8b5ee2010-03-23 13:35:39 -07002140
2141 if (bdev_read_only(sb->s_bdev)) {
2142 reiserfs_warning(sb, "clm-2076",
2143 "device is readonly, unable to replay log");
2144 brelse(c_bh);
2145 brelse(d_bh);
2146 return -EROFS;
2147 }
2148
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002149 trans_id = get_desc_trans_id(desc);
2150 /* now we know we've got a good transaction, and it was inside the valid time ranges */
Pekka Enbergd739b422006-02-01 03:06:43 -08002151 log_blocks = kmalloc(get_desc_trans_len(desc) *
2152 sizeof(struct buffer_head *), GFP_NOFS);
2153 real_blocks = kmalloc(get_desc_trans_len(desc) *
2154 sizeof(struct buffer_head *), GFP_NOFS);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002155 if (!log_blocks || !real_blocks) {
2156 brelse(c_bh);
2157 brelse(d_bh);
Pekka Enbergd739b422006-02-01 03:06:43 -08002158 kfree(log_blocks);
2159 kfree(real_blocks);
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04002160 reiserfs_warning(sb, "journal-1169",
Jeff Mahoney45b03d52009-03-30 14:02:21 -04002161 "kmalloc failed, unable to mount FS");
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002162 return -1;
2163 }
2164 /* get all the buffer heads */
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04002165 trans_half = journal_trans_half(sb->s_blocksize);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002166 for (i = 0; i < get_desc_trans_len(desc); i++) {
2167 log_blocks[i] =
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04002168 journal_getblk(sb,
2169 SB_ONDISK_JOURNAL_1st_BLOCK(sb) +
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002170 (trans_offset + 1 +
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04002171 i) % SB_ONDISK_JOURNAL_SIZE(sb));
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002172 if (i < trans_half) {
2173 real_blocks[i] =
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04002174 sb_getblk(sb,
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002175 le32_to_cpu(desc->j_realblock[i]));
2176 } else {
2177 real_blocks[i] =
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04002178 sb_getblk(sb,
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002179 le32_to_cpu(commit->
2180 j_realblock[i - trans_half]));
2181 }
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04002182 if (real_blocks[i]->b_blocknr > SB_BLOCK_COUNT(sb)) {
2183 reiserfs_warning(sb, "journal-1207",
Jeff Mahoney45b03d52009-03-30 14:02:21 -04002184 "REPLAY FAILURE fsck required! "
2185 "Block to replay is outside of "
2186 "filesystem");
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002187 goto abort_replay;
2188 }
2189 /* make sure we don't try to replay onto log or reserved area */
2190 if (is_block_in_log_or_reserved_area
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04002191 (sb, real_blocks[i]->b_blocknr)) {
2192 reiserfs_warning(sb, "journal-1204",
Jeff Mahoney45b03d52009-03-30 14:02:21 -04002193 "REPLAY FAILURE fsck required! "
2194 "Trying to replay onto a log block");
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002195 abort_replay:
2196 brelse_array(log_blocks, i);
2197 brelse_array(real_blocks, i);
2198 brelse(c_bh);
2199 brelse(d_bh);
Pekka Enbergd739b422006-02-01 03:06:43 -08002200 kfree(log_blocks);
2201 kfree(real_blocks);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002202 return -1;
2203 }
2204 }
2205 /* read in the log blocks, memcpy to the corresponding real block */
2206 ll_rw_block(READ, get_desc_trans_len(desc), log_blocks);
2207 for (i = 0; i < get_desc_trans_len(desc); i++) {
Frederic Weisbecker8ebc4232009-04-07 04:19:49 +02002208
2209 reiserfs_write_unlock(sb);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002210 wait_on_buffer(log_blocks[i]);
Frederic Weisbecker8ebc4232009-04-07 04:19:49 +02002211 reiserfs_write_lock(sb);
2212
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002213 if (!buffer_uptodate(log_blocks[i])) {
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04002214 reiserfs_warning(sb, "journal-1212",
Jeff Mahoney45b03d52009-03-30 14:02:21 -04002215 "REPLAY FAILURE fsck required! "
2216 "buffer write failed");
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002217 brelse_array(log_blocks + i,
2218 get_desc_trans_len(desc) - i);
2219 brelse_array(real_blocks, get_desc_trans_len(desc));
2220 brelse(c_bh);
2221 brelse(d_bh);
Pekka Enbergd739b422006-02-01 03:06:43 -08002222 kfree(log_blocks);
2223 kfree(real_blocks);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002224 return -1;
2225 }
2226 memcpy(real_blocks[i]->b_data, log_blocks[i]->b_data,
2227 real_blocks[i]->b_size);
2228 set_buffer_uptodate(real_blocks[i]);
2229 brelse(log_blocks[i]);
2230 }
2231 /* flush out the real blocks */
2232 for (i = 0; i < get_desc_trans_len(desc); i++) {
2233 set_buffer_dirty(real_blocks[i]);
Christoph Hellwig9cb569d2010-08-11 17:06:24 +02002234 write_dirty_buffer(real_blocks[i], WRITE);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002235 }
2236 for (i = 0; i < get_desc_trans_len(desc); i++) {
2237 wait_on_buffer(real_blocks[i]);
2238 if (!buffer_uptodate(real_blocks[i])) {
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04002239 reiserfs_warning(sb, "journal-1226",
Jeff Mahoney45b03d52009-03-30 14:02:21 -04002240 "REPLAY FAILURE, fsck required! "
2241 "buffer write failed");
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002242 brelse_array(real_blocks + i,
2243 get_desc_trans_len(desc) - i);
2244 brelse(c_bh);
2245 brelse(d_bh);
Pekka Enbergd739b422006-02-01 03:06:43 -08002246 kfree(log_blocks);
2247 kfree(real_blocks);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002248 return -1;
2249 }
2250 brelse(real_blocks[i]);
2251 }
2252 cur_dblock =
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04002253 SB_ONDISK_JOURNAL_1st_BLOCK(sb) +
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002254 ((trans_offset + get_desc_trans_len(desc) +
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04002255 2) % SB_ONDISK_JOURNAL_SIZE(sb));
2256 reiserfs_debug(sb, REISERFS_DEBUG_CODE,
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002257 "journal-1095: setting journal " "start to offset %ld",
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04002258 cur_dblock - SB_ONDISK_JOURNAL_1st_BLOCK(sb));
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002259
2260 /* init starting values for the first transaction, in case this is the last transaction to be replayed. */
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04002261 journal->j_start = cur_dblock - SB_ONDISK_JOURNAL_1st_BLOCK(sb);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002262 journal->j_last_flush_trans_id = trans_id;
2263 journal->j_trans_id = trans_id + 1;
Alexander Zarochentseva44c94a2006-03-25 03:06:59 -08002264 /* check for trans_id overflow */
2265 if (journal->j_trans_id == 0)
2266 journal->j_trans_id = 10;
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002267 brelse(c_bh);
2268 brelse(d_bh);
Pekka Enbergd739b422006-02-01 03:06:43 -08002269 kfree(log_blocks);
2270 kfree(real_blocks);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002271 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002272}
2273
2274/* This function reads blocks starting from block and to max_block of bufsize
2275 size (but no more than BUFNR blocks at a time). This proved to improve
2276 mounting speed on self-rebuilding raid5 arrays at least.
2277 Right now it is only used from journal code. But later we might use it
2278 from other places.
2279 Note: Do not use journal_getblk/sb_getblk functions here! */
Jeff Mahoney3ee16672007-10-18 23:39:25 -07002280static struct buffer_head *reiserfs_breada(struct block_device *dev,
2281 b_blocknr_t block, int bufsize,
2282 b_blocknr_t max_block)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002283{
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002284 struct buffer_head *bhlist[BUFNR];
Linus Torvalds1da177e2005-04-16 15:20:36 -07002285 unsigned int blocks = BUFNR;
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002286 struct buffer_head *bh;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002287 int i, j;
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002288
2289 bh = __getblk(dev, block, bufsize);
2290 if (buffer_uptodate(bh))
2291 return (bh);
2292
Linus Torvalds1da177e2005-04-16 15:20:36 -07002293 if (block + BUFNR > max_block) {
2294 blocks = max_block - block;
2295 }
2296 bhlist[0] = bh;
2297 j = 1;
2298 for (i = 1; i < blocks; i++) {
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002299 bh = __getblk(dev, block + i, bufsize);
2300 if (buffer_uptodate(bh)) {
2301 brelse(bh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002302 break;
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002303 } else
2304 bhlist[j++] = bh;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002305 }
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002306 ll_rw_block(READ, j, bhlist);
2307 for (i = 1; i < j; i++)
2308 brelse(bhlist[i]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002309 bh = bhlist[0];
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002310 wait_on_buffer(bh);
2311 if (buffer_uptodate(bh))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002312 return bh;
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002313 brelse(bh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002314 return NULL;
2315}
2316
2317/*
2318** read and replay the log
2319** on a clean unmount, the journal header's next unflushed pointer will be to an invalid
2320** transaction. This tests that before finding all the transactions in the log, which makes normal mount times fast.
2321**
2322** After a crash, this starts with the next unflushed transaction, and replays until it finds one too old, or invalid.
2323**
2324** On exit, it sets things up so the first transaction will work correctly.
2325*/
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04002326static int journal_read(struct super_block *sb)
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002327{
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04002328 struct reiserfs_journal *journal = SB_JOURNAL(sb);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002329 struct reiserfs_journal_desc *desc;
Jeff Mahoney600ed412009-03-30 14:02:17 -04002330 unsigned int oldest_trans_id = 0;
2331 unsigned int oldest_invalid_trans_id = 0;
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002332 time_t start;
2333 unsigned long oldest_start = 0;
2334 unsigned long cur_dblock = 0;
2335 unsigned long newest_mount_id = 9;
2336 struct buffer_head *d_bh;
2337 struct reiserfs_journal_header *jh;
2338 int valid_journal_header = 0;
2339 int replay_count = 0;
2340 int continue_replay = 1;
2341 int ret;
2342 char b[BDEVNAME_SIZE];
Linus Torvalds1da177e2005-04-16 15:20:36 -07002343
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04002344 cur_dblock = SB_ONDISK_JOURNAL_1st_BLOCK(sb);
2345 reiserfs_info(sb, "checking transaction log (%s)\n",
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002346 bdevname(journal->j_dev_bd, b));
2347 start = get_seconds();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002348
Jeff Mahoney0222e652009-03-30 14:02:44 -04002349 /* step 1, read in the journal header block. Check the transaction it says
2350 ** is the first unflushed, and if that transaction is not valid,
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002351 ** replay is done
2352 */
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04002353 journal->j_header_bh = journal_bread(sb,
2354 SB_ONDISK_JOURNAL_1st_BLOCK(sb)
2355 + SB_ONDISK_JOURNAL_SIZE(sb));
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002356 if (!journal->j_header_bh) {
2357 return 1;
2358 }
2359 jh = (struct reiserfs_journal_header *)(journal->j_header_bh->b_data);
Vladimir V. Savelievc499ec22006-03-02 02:54:39 -08002360 if (le32_to_cpu(jh->j_first_unflushed_offset) <
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04002361 SB_ONDISK_JOURNAL_SIZE(sb)
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002362 && le32_to_cpu(jh->j_last_flush_trans_id) > 0) {
2363 oldest_start =
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04002364 SB_ONDISK_JOURNAL_1st_BLOCK(sb) +
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002365 le32_to_cpu(jh->j_first_unflushed_offset);
2366 oldest_trans_id = le32_to_cpu(jh->j_last_flush_trans_id) + 1;
2367 newest_mount_id = le32_to_cpu(jh->j_mount_id);
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04002368 reiserfs_debug(sb, REISERFS_DEBUG_CODE,
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002369 "journal-1153: found in "
2370 "header: first_unflushed_offset %d, last_flushed_trans_id "
2371 "%lu", le32_to_cpu(jh->j_first_unflushed_offset),
2372 le32_to_cpu(jh->j_last_flush_trans_id));
2373 valid_journal_header = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002374
Jeff Mahoney0222e652009-03-30 14:02:44 -04002375 /* now, we try to read the first unflushed offset. If it is not valid,
2376 ** there is nothing more we can do, and it makes no sense to read
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002377 ** through the whole log.
2378 */
2379 d_bh =
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04002380 journal_bread(sb,
2381 SB_ONDISK_JOURNAL_1st_BLOCK(sb) +
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002382 le32_to_cpu(jh->j_first_unflushed_offset));
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04002383 ret = journal_transaction_is_valid(sb, d_bh, NULL, NULL);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002384 if (!ret) {
2385 continue_replay = 0;
2386 }
2387 brelse(d_bh);
2388 goto start_log_replay;
2389 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002390
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002391 /* ok, there are transactions that need to be replayed. start with the first log block, find
2392 ** all the valid transactions, and pick out the oldest.
2393 */
2394 while (continue_replay
2395 && cur_dblock <
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04002396 (SB_ONDISK_JOURNAL_1st_BLOCK(sb) +
2397 SB_ONDISK_JOURNAL_SIZE(sb))) {
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002398 /* Note that it is required for blocksize of primary fs device and journal
2399 device to be the same */
2400 d_bh =
2401 reiserfs_breada(journal->j_dev_bd, cur_dblock,
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04002402 sb->s_blocksize,
2403 SB_ONDISK_JOURNAL_1st_BLOCK(sb) +
2404 SB_ONDISK_JOURNAL_SIZE(sb));
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002405 ret =
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04002406 journal_transaction_is_valid(sb, d_bh,
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002407 &oldest_invalid_trans_id,
2408 &newest_mount_id);
2409 if (ret == 1) {
2410 desc = (struct reiserfs_journal_desc *)d_bh->b_data;
2411 if (oldest_start == 0) { /* init all oldest_ values */
2412 oldest_trans_id = get_desc_trans_id(desc);
2413 oldest_start = d_bh->b_blocknr;
2414 newest_mount_id = get_desc_mount_id(desc);
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04002415 reiserfs_debug(sb, REISERFS_DEBUG_CODE,
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002416 "journal-1179: Setting "
2417 "oldest_start to offset %llu, trans_id %lu",
2418 oldest_start -
2419 SB_ONDISK_JOURNAL_1st_BLOCK
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04002420 (sb), oldest_trans_id);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002421 } else if (oldest_trans_id > get_desc_trans_id(desc)) {
2422 /* one we just read was older */
2423 oldest_trans_id = get_desc_trans_id(desc);
2424 oldest_start = d_bh->b_blocknr;
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04002425 reiserfs_debug(sb, REISERFS_DEBUG_CODE,
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002426 "journal-1180: Resetting "
2427 "oldest_start to offset %lu, trans_id %lu",
2428 oldest_start -
2429 SB_ONDISK_JOURNAL_1st_BLOCK
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04002430 (sb), oldest_trans_id);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002431 }
2432 if (newest_mount_id < get_desc_mount_id(desc)) {
2433 newest_mount_id = get_desc_mount_id(desc);
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04002434 reiserfs_debug(sb, REISERFS_DEBUG_CODE,
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002435 "journal-1299: Setting "
2436 "newest_mount_id to %d",
2437 get_desc_mount_id(desc));
2438 }
2439 cur_dblock += get_desc_trans_len(desc) + 2;
2440 } else {
2441 cur_dblock++;
2442 }
2443 brelse(d_bh);
2444 }
2445
2446 start_log_replay:
2447 cur_dblock = oldest_start;
2448 if (oldest_trans_id) {
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04002449 reiserfs_debug(sb, REISERFS_DEBUG_CODE,
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002450 "journal-1206: Starting replay "
2451 "from offset %llu, trans_id %lu",
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04002452 cur_dblock - SB_ONDISK_JOURNAL_1st_BLOCK(sb),
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002453 oldest_trans_id);
2454
2455 }
2456 replay_count = 0;
2457 while (continue_replay && oldest_trans_id > 0) {
2458 ret =
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04002459 journal_read_transaction(sb, cur_dblock, oldest_start,
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002460 oldest_trans_id, newest_mount_id);
2461 if (ret < 0) {
2462 return ret;
2463 } else if (ret != 0) {
2464 break;
2465 }
2466 cur_dblock =
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04002467 SB_ONDISK_JOURNAL_1st_BLOCK(sb) + journal->j_start;
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002468 replay_count++;
2469 if (cur_dblock == oldest_start)
2470 break;
2471 }
2472
2473 if (oldest_trans_id == 0) {
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04002474 reiserfs_debug(sb, REISERFS_DEBUG_CODE,
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002475 "journal-1225: No valid " "transactions found");
2476 }
2477 /* j_start does not get set correctly if we don't replay any transactions.
2478 ** if we had a valid journal_header, set j_start to the first unflushed transaction value,
2479 ** copy the trans_id from the header
2480 */
2481 if (valid_journal_header && replay_count == 0) {
2482 journal->j_start = le32_to_cpu(jh->j_first_unflushed_offset);
2483 journal->j_trans_id =
2484 le32_to_cpu(jh->j_last_flush_trans_id) + 1;
Alexander Zarochentseva44c94a2006-03-25 03:06:59 -08002485 /* check for trans_id overflow */
2486 if (journal->j_trans_id == 0)
2487 journal->j_trans_id = 10;
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002488 journal->j_last_flush_trans_id =
2489 le32_to_cpu(jh->j_last_flush_trans_id);
2490 journal->j_mount_id = le32_to_cpu(jh->j_mount_id) + 1;
2491 } else {
2492 journal->j_mount_id = newest_mount_id + 1;
2493 }
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04002494 reiserfs_debug(sb, REISERFS_DEBUG_CODE, "journal-1299: Setting "
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002495 "newest_mount_id to %lu", journal->j_mount_id);
2496 journal->j_first_unflushed_offset = journal->j_start;
2497 if (replay_count > 0) {
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04002498 reiserfs_info(sb,
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002499 "replayed %d transactions in %lu seconds\n",
2500 replay_count, get_seconds() - start);
2501 }
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04002502 if (!bdev_read_only(sb->s_bdev) &&
2503 _update_journal_header_block(sb, journal->j_start,
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002504 journal->j_last_flush_trans_id)) {
2505 /* replay failed, caller must call free_journal_ram and abort
2506 ** the mount
2507 */
2508 return -1;
2509 }
2510 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002511}
2512
2513static struct reiserfs_journal_list *alloc_journal_list(struct super_block *s)
2514{
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002515 struct reiserfs_journal_list *jl;
Pekka Enberg8c777cc2006-02-01 03:06:43 -08002516 jl = kzalloc(sizeof(struct reiserfs_journal_list),
2517 GFP_NOFS | __GFP_NOFAIL);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002518 INIT_LIST_HEAD(&jl->j_list);
2519 INIT_LIST_HEAD(&jl->j_working_list);
2520 INIT_LIST_HEAD(&jl->j_tail_bh_list);
2521 INIT_LIST_HEAD(&jl->j_bh_list);
Jeff Mahoney90415de2008-07-25 01:46:40 -07002522 mutex_init(&jl->j_commit_mutex);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002523 SB_JOURNAL(s)->j_num_lists++;
2524 get_journal_list(jl);
2525 return jl;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002526}
2527
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04002528static void journal_list_init(struct super_block *sb)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002529{
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04002530 SB_JOURNAL(sb)->j_current_jl = alloc_journal_list(sb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002531}
2532
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002533static int release_journal_dev(struct super_block *super,
2534 struct reiserfs_journal *journal)
2535{
2536 int result;
2537
2538 result = 0;
2539
Christoph Hellwig86098fa2008-04-30 00:54:46 -07002540 if (journal->j_dev_bd != NULL) {
Al Viroe5eb8ca2007-10-08 13:24:05 -04002541 result = blkdev_put(journal->j_dev_bd, journal->j_dev_mode);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002542 journal->j_dev_bd = NULL;
2543 }
2544
2545 if (result != 0) {
Jeff Mahoney45b03d52009-03-30 14:02:21 -04002546 reiserfs_warning(super, "sh-457",
2547 "Cannot release journal device: %i", result);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002548 }
2549 return result;
2550}
2551
2552static int journal_init_dev(struct super_block *super,
2553 struct reiserfs_journal *journal,
2554 const char *jdev_name)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002555{
2556 int result;
2557 dev_t jdev;
Tejun Heoe525fd82010-11-13 11:55:17 +01002558 fmode_t blkdev_mode = FMODE_READ | FMODE_WRITE | FMODE_EXCL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002559 char b[BDEVNAME_SIZE];
2560
2561 result = 0;
2562
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002563 journal->j_dev_bd = NULL;
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002564 jdev = SB_ONDISK_JOURNAL_DEVICE(super) ?
2565 new_decode_dev(SB_ONDISK_JOURNAL_DEVICE(super)) : super->s_dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002566
2567 if (bdev_read_only(super->s_bdev))
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002568 blkdev_mode = FMODE_READ;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002569
2570 /* there is no "jdev" option and journal is on separate device */
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002571 if ((!jdev_name || !jdev_name[0])) {
Tejun Heoe525fd82010-11-13 11:55:17 +01002572 if (jdev == super->s_dev)
2573 blkdev_mode &= ~FMODE_EXCL;
Tejun Heod4d77622010-11-13 11:55:18 +01002574 journal->j_dev_bd = blkdev_get_by_dev(jdev, blkdev_mode,
2575 journal);
Al Viroe5eb8ca2007-10-08 13:24:05 -04002576 journal->j_dev_mode = blkdev_mode;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002577 if (IS_ERR(journal->j_dev_bd)) {
2578 result = PTR_ERR(journal->j_dev_bd);
2579 journal->j_dev_bd = NULL;
Jeff Mahoney45b03d52009-03-30 14:02:21 -04002580 reiserfs_warning(super, "sh-458",
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002581 "cannot init journal device '%s': %i",
2582 __bdevname(jdev, b), result);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002583 return result;
Tejun Heoe525fd82010-11-13 11:55:17 +01002584 } else if (jdev != super->s_dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002585 set_blocksize(journal->j_dev_bd, super->s_blocksize);
Christoph Hellwig86098fa2008-04-30 00:54:46 -07002586
Linus Torvalds1da177e2005-04-16 15:20:36 -07002587 return 0;
2588 }
2589
Al Viroe5eb8ca2007-10-08 13:24:05 -04002590 journal->j_dev_mode = blkdev_mode;
Tejun Heod4d77622010-11-13 11:55:18 +01002591 journal->j_dev_bd = blkdev_get_by_path(jdev_name, blkdev_mode, journal);
Christoph Hellwig86098fa2008-04-30 00:54:46 -07002592 if (IS_ERR(journal->j_dev_bd)) {
2593 result = PTR_ERR(journal->j_dev_bd);
2594 journal->j_dev_bd = NULL;
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002595 reiserfs_warning(super,
2596 "journal_init_dev: Cannot open '%s': %i",
2597 jdev_name, result);
Christoph Hellwig86098fa2008-04-30 00:54:46 -07002598 return result;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002599 }
Christoph Hellwig86098fa2008-04-30 00:54:46 -07002600
2601 set_blocksize(journal->j_dev_bd, super->s_blocksize);
2602 reiserfs_info(super,
2603 "journal_init_dev: journal device: %s\n",
2604 bdevname(journal->j_dev_bd, b));
2605 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002606}
2607
Edward Shishkincf3d0b82007-10-16 23:30:30 -07002608/**
2609 * When creating/tuning a file system user can assign some
2610 * journal params within boundaries which depend on the ratio
2611 * blocksize/standard_blocksize.
2612 *
2613 * For blocks >= standard_blocksize transaction size should
2614 * be not less then JOURNAL_TRANS_MIN_DEFAULT, and not more
2615 * then JOURNAL_TRANS_MAX_DEFAULT.
2616 *
2617 * For blocks < standard_blocksize these boundaries should be
2618 * decreased proportionally.
2619 */
2620#define REISERFS_STANDARD_BLKSIZE (4096)
2621
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04002622static int check_advise_trans_params(struct super_block *sb,
Edward Shishkincf3d0b82007-10-16 23:30:30 -07002623 struct reiserfs_journal *journal)
2624{
2625 if (journal->j_trans_max) {
2626 /* Non-default journal params.
2627 Do sanity check for them. */
2628 int ratio = 1;
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04002629 if (sb->s_blocksize < REISERFS_STANDARD_BLKSIZE)
2630 ratio = REISERFS_STANDARD_BLKSIZE / sb->s_blocksize;
Edward Shishkincf3d0b82007-10-16 23:30:30 -07002631
2632 if (journal->j_trans_max > JOURNAL_TRANS_MAX_DEFAULT / ratio ||
2633 journal->j_trans_max < JOURNAL_TRANS_MIN_DEFAULT / ratio ||
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04002634 SB_ONDISK_JOURNAL_SIZE(sb) / journal->j_trans_max <
Edward Shishkincf3d0b82007-10-16 23:30:30 -07002635 JOURNAL_MIN_RATIO) {
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04002636 reiserfs_warning(sb, "sh-462",
Jeff Mahoney45b03d52009-03-30 14:02:21 -04002637 "bad transaction max size (%u). "
2638 "FSCK?", journal->j_trans_max);
Edward Shishkincf3d0b82007-10-16 23:30:30 -07002639 return 1;
2640 }
2641 if (journal->j_max_batch != (journal->j_trans_max) *
2642 JOURNAL_MAX_BATCH_DEFAULT/JOURNAL_TRANS_MAX_DEFAULT) {
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04002643 reiserfs_warning(sb, "sh-463",
Jeff Mahoney45b03d52009-03-30 14:02:21 -04002644 "bad transaction max batch (%u). "
2645 "FSCK?", journal->j_max_batch);
Edward Shishkincf3d0b82007-10-16 23:30:30 -07002646 return 1;
2647 }
2648 } else {
2649 /* Default journal params.
2650 The file system was created by old version
2651 of mkreiserfs, so some fields contain zeros,
2652 and we need to advise proper values for them */
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04002653 if (sb->s_blocksize != REISERFS_STANDARD_BLKSIZE) {
2654 reiserfs_warning(sb, "sh-464", "bad blocksize (%u)",
2655 sb->s_blocksize);
Jeff Mahoney45b03d52009-03-30 14:02:21 -04002656 return 1;
2657 }
Edward Shishkincf3d0b82007-10-16 23:30:30 -07002658 journal->j_trans_max = JOURNAL_TRANS_MAX_DEFAULT;
2659 journal->j_max_batch = JOURNAL_MAX_BATCH_DEFAULT;
2660 journal->j_max_commit_age = JOURNAL_MAX_COMMIT_AGE;
2661 }
2662 return 0;
2663}
2664
Linus Torvalds1da177e2005-04-16 15:20:36 -07002665/*
2666** must be called once on fs mount. calls journal_read for you
2667*/
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04002668int journal_init(struct super_block *sb, const char *j_dev_name,
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002669 int old_format, unsigned int commit_max_age)
2670{
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04002671 int num_cnodes = SB_ONDISK_JOURNAL_SIZE(sb) * 2;
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002672 struct buffer_head *bhjh;
2673 struct reiserfs_super_block *rs;
2674 struct reiserfs_journal_header *jh;
2675 struct reiserfs_journal *journal;
2676 struct reiserfs_journal_list *jl;
2677 char b[BDEVNAME_SIZE];
Frederic Weisbecker98ea3f52009-12-29 21:51:15 +01002678 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002679
Joe Perches558feb02011-05-28 10:36:33 -07002680 journal = SB_JOURNAL(sb) = vzalloc(sizeof(struct reiserfs_journal));
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002681 if (!journal) {
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04002682 reiserfs_warning(sb, "journal-1256",
Jeff Mahoney45b03d52009-03-30 14:02:21 -04002683 "unable to get memory for journal structure");
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002684 return 1;
2685 }
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002686 INIT_LIST_HEAD(&journal->j_bitmap_nodes);
2687 INIT_LIST_HEAD(&journal->j_prealloc_list);
2688 INIT_LIST_HEAD(&journal->j_working_list);
2689 INIT_LIST_HEAD(&journal->j_journal_list);
2690 journal->j_persistent_trans = 0;
Frederic Weisbecker37c69b92012-01-10 15:11:09 -08002691 if (reiserfs_allocate_list_bitmaps(sb, journal->j_list_bitmap,
2692 reiserfs_bmap_count(sb)))
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002693 goto free_and_return;
Frederic Weisbecker98ea3f52009-12-29 21:51:15 +01002694
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04002695 allocate_bitmap_nodes(sb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002696
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002697 /* reserved for journal area support */
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04002698 SB_JOURNAL_1st_RESERVED_BLOCK(sb) = (old_format ?
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002699 REISERFS_OLD_DISK_OFFSET_IN_BYTES
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04002700 / sb->s_blocksize +
2701 reiserfs_bmap_count(sb) +
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002702 1 :
2703 REISERFS_DISK_OFFSET_IN_BYTES /
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04002704 sb->s_blocksize + 2);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002705
Lucas De Marchi25985ed2011-03-30 22:57:33 -03002706 /* Sanity check to see is the standard journal fitting within first bitmap
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002707 (actual for small blocksizes) */
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04002708 if (!SB_ONDISK_JOURNAL_DEVICE(sb) &&
2709 (SB_JOURNAL_1st_RESERVED_BLOCK(sb) +
2710 SB_ONDISK_JOURNAL_SIZE(sb) > sb->s_blocksize * 8)) {
2711 reiserfs_warning(sb, "journal-1393",
Jeff Mahoney45b03d52009-03-30 14:02:21 -04002712 "journal does not fit for area addressed "
2713 "by first of bitmap blocks. It starts at "
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002714 "%u and its size is %u. Block size %ld",
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04002715 SB_JOURNAL_1st_RESERVED_BLOCK(sb),
2716 SB_ONDISK_JOURNAL_SIZE(sb),
2717 sb->s_blocksize);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002718 goto free_and_return;
2719 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002720
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04002721 if (journal_init_dev(sb, journal, j_dev_name) != 0) {
2722 reiserfs_warning(sb, "sh-462",
Jeff Mahoney45b03d52009-03-30 14:02:21 -04002723 "unable to initialize jornal device");
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002724 goto free_and_return;
2725 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002726
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04002727 rs = SB_DISK_SUPER_BLOCK(sb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002728
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002729 /* read journal header */
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04002730 bhjh = journal_bread(sb,
2731 SB_ONDISK_JOURNAL_1st_BLOCK(sb) +
2732 SB_ONDISK_JOURNAL_SIZE(sb));
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002733 if (!bhjh) {
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04002734 reiserfs_warning(sb, "sh-459",
Jeff Mahoney45b03d52009-03-30 14:02:21 -04002735 "unable to read journal header");
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002736 goto free_and_return;
2737 }
2738 jh = (struct reiserfs_journal_header *)(bhjh->b_data);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002739
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002740 /* make sure that journal matches to the super block */
2741 if (is_reiserfs_jr(rs)
2742 && (le32_to_cpu(jh->jh_journal.jp_journal_magic) !=
2743 sb_jp_journal_magic(rs))) {
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04002744 reiserfs_warning(sb, "sh-460",
Jeff Mahoney45b03d52009-03-30 14:02:21 -04002745 "journal header magic %x (device %s) does "
2746 "not match to magic found in super block %x",
2747 jh->jh_journal.jp_journal_magic,
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002748 bdevname(journal->j_dev_bd, b),
2749 sb_jp_journal_magic(rs));
2750 brelse(bhjh);
2751 goto free_and_return;
2752 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002753
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002754 journal->j_trans_max = le32_to_cpu(jh->jh_journal.jp_journal_trans_max);
2755 journal->j_max_batch = le32_to_cpu(jh->jh_journal.jp_journal_max_batch);
2756 journal->j_max_commit_age =
2757 le32_to_cpu(jh->jh_journal.jp_journal_max_commit_age);
2758 journal->j_max_trans_age = JOURNAL_MAX_TRANS_AGE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002759
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04002760 if (check_advise_trans_params(sb, journal) != 0)
Edward Shishkincf3d0b82007-10-16 23:30:30 -07002761 goto free_and_return;
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002762 journal->j_default_max_commit_age = journal->j_max_commit_age;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002763
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002764 if (commit_max_age != 0) {
2765 journal->j_max_commit_age = commit_max_age;
2766 journal->j_max_trans_age = commit_max_age;
2767 }
2768
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04002769 reiserfs_info(sb, "journal params: device %s, size %u, "
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002770 "journal first block %u, max trans len %u, max batch %u, "
2771 "max commit age %u, max trans age %u\n",
2772 bdevname(journal->j_dev_bd, b),
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04002773 SB_ONDISK_JOURNAL_SIZE(sb),
2774 SB_ONDISK_JOURNAL_1st_BLOCK(sb),
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002775 journal->j_trans_max,
2776 journal->j_max_batch,
2777 journal->j_max_commit_age, journal->j_max_trans_age);
2778
2779 brelse(bhjh);
2780
2781 journal->j_list_bitmap_index = 0;
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04002782 journal_list_init(sb);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002783
2784 memset(journal->j_list_hash_table, 0,
2785 JOURNAL_HASH_SIZE * sizeof(struct reiserfs_journal_cnode *));
2786
2787 INIT_LIST_HEAD(&journal->j_dirty_buffers);
2788 spin_lock_init(&journal->j_dirty_buffers_lock);
2789
2790 journal->j_start = 0;
2791 journal->j_len = 0;
2792 journal->j_len_alloc = 0;
2793 atomic_set(&(journal->j_wcount), 0);
2794 atomic_set(&(journal->j_async_throttle), 0);
2795 journal->j_bcount = 0;
2796 journal->j_trans_start_time = 0;
2797 journal->j_last = NULL;
2798 journal->j_first = NULL;
2799 init_waitqueue_head(&(journal->j_join_wait));
Jeff Mahoneyf68215c2008-07-25 01:46:38 -07002800 mutex_init(&journal->j_mutex);
Jeff Mahoneyafe70252008-07-25 01:46:39 -07002801 mutex_init(&journal->j_flush_mutex);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002802
2803 journal->j_trans_id = 10;
2804 journal->j_mount_id = 10;
2805 journal->j_state = 0;
2806 atomic_set(&(journal->j_jlock), 0);
2807 journal->j_cnode_free_list = allocate_cnodes(num_cnodes);
2808 journal->j_cnode_free_orig = journal->j_cnode_free_list;
2809 journal->j_cnode_free = journal->j_cnode_free_list ? num_cnodes : 0;
2810 journal->j_cnode_used = 0;
2811 journal->j_must_wait = 0;
2812
Jeff Mahoney576f6d72005-11-29 19:34:39 -08002813 if (journal->j_cnode_free == 0) {
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04002814 reiserfs_warning(sb, "journal-2004", "Journal cnode memory "
Jeff Mahoney576f6d72005-11-29 19:34:39 -08002815 "allocation failed (%ld bytes). Journal is "
2816 "too large for available memory. Usually "
2817 "this is due to a journal that is too large.",
2818 sizeof (struct reiserfs_journal_cnode) * num_cnodes);
2819 goto free_and_return;
2820 }
2821
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04002822 init_journal_hash(sb);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002823 jl = journal->j_current_jl;
Frederic Weisbecker37c69b92012-01-10 15:11:09 -08002824
2825 /*
2826 * get_list_bitmap() may call flush_commit_list() which
2827 * requires the lock. Calling flush_commit_list() shouldn't happen
2828 * this early but I like to be paranoid.
2829 */
2830 reiserfs_write_lock(sb);
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04002831 jl->j_list_bitmap = get_list_bitmap(sb, jl);
Frederic Weisbecker37c69b92012-01-10 15:11:09 -08002832 reiserfs_write_unlock(sb);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002833 if (!jl->j_list_bitmap) {
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04002834 reiserfs_warning(sb, "journal-2005",
Jeff Mahoney45b03d52009-03-30 14:02:21 -04002835 "get_list_bitmap failed for journal list 0");
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002836 goto free_and_return;
2837 }
Frederic Weisbecker37c69b92012-01-10 15:11:09 -08002838
2839 /*
2840 * Journal_read needs to be inspected in order to push down
2841 * the lock further inside (or even remove it).
2842 */
2843 reiserfs_write_lock(sb);
2844 ret = journal_read(sb);
2845 reiserfs_write_unlock(sb);
2846 if (ret < 0) {
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04002847 reiserfs_warning(sb, "reiserfs-2006",
Jeff Mahoney45b03d52009-03-30 14:02:21 -04002848 "Replay Failure, unable to mount");
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002849 goto free_and_return;
2850 }
2851
2852 reiserfs_mounted_fs_count++;
Frederic Weisbecker37c69b92012-01-10 15:11:09 -08002853 if (reiserfs_mounted_fs_count <= 1)
Tejun Heo28aadf52011-02-01 11:42:42 +01002854 commit_wq = alloc_workqueue("reiserfs", WQ_MEM_RECLAIM, 0);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002855
David Howellsc4028952006-11-22 14:57:56 +00002856 INIT_DELAYED_WORK(&journal->j_work, flush_async_commits);
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04002857 journal->j_work_sb = sb;
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002858 return 0;
2859 free_and_return:
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04002860 free_journal_ram(sb);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002861 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002862}
2863
2864/*
2865** test for a polite end of the current transaction. Used by file_write, and should
2866** be used by delete to make sure they don't write more than can fit inside a single
2867** transaction
2868*/
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002869int journal_transaction_should_end(struct reiserfs_transaction_handle *th,
2870 int new_alloc)
2871{
2872 struct reiserfs_journal *journal = SB_JOURNAL(th->t_super);
2873 time_t now = get_seconds();
2874 /* cannot restart while nested */
2875 BUG_ON(!th->t_trans_id);
2876 if (th->t_refcount > 1)
2877 return 0;
2878 if (journal->j_must_wait > 0 ||
2879 (journal->j_len_alloc + new_alloc) >= journal->j_max_batch ||
2880 atomic_read(&(journal->j_jlock)) ||
2881 (now - journal->j_trans_start_time) > journal->j_max_trans_age ||
2882 journal->j_cnode_free < (journal->j_trans_max * 3)) {
2883 return 1;
2884 }
Davidlohr Buesob18c1c62012-01-10 15:11:05 -08002885
Chris Mason6ae1ea42006-02-01 03:06:50 -08002886 journal->j_len_alloc += new_alloc;
2887 th->t_blocks_allocated += new_alloc ;
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002888 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002889}
2890
Davidlohr Buesob18c1c62012-01-10 15:11:05 -08002891/* this must be called inside a transaction
Linus Torvalds1da177e2005-04-16 15:20:36 -07002892*/
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002893void reiserfs_block_writes(struct reiserfs_transaction_handle *th)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002894{
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002895 struct reiserfs_journal *journal = SB_JOURNAL(th->t_super);
2896 BUG_ON(!th->t_trans_id);
2897 journal->j_must_wait = 1;
2898 set_bit(J_WRITERS_BLOCKED, &journal->j_state);
2899 return;
2900}
2901
Davidlohr Buesob18c1c62012-01-10 15:11:05 -08002902/* this must be called without a transaction started
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002903*/
2904void reiserfs_allow_writes(struct super_block *s)
2905{
2906 struct reiserfs_journal *journal = SB_JOURNAL(s);
2907 clear_bit(J_WRITERS_BLOCKED, &journal->j_state);
2908 wake_up(&journal->j_join_wait);
2909}
2910
Davidlohr Buesob18c1c62012-01-10 15:11:05 -08002911/* this must be called without a transaction started
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002912*/
2913void reiserfs_wait_on_write_block(struct super_block *s)
2914{
2915 struct reiserfs_journal *journal = SB_JOURNAL(s);
2916 wait_event(journal->j_join_wait,
2917 !test_bit(J_WRITERS_BLOCKED, &journal->j_state));
2918}
2919
2920static void queue_log_writer(struct super_block *s)
2921{
2922 wait_queue_t wait;
2923 struct reiserfs_journal *journal = SB_JOURNAL(s);
2924 set_bit(J_WRITERS_QUEUED, &journal->j_state);
2925
2926 /*
2927 * we don't want to use wait_event here because
2928 * we only want to wait once.
2929 */
2930 init_waitqueue_entry(&wait, current);
2931 add_wait_queue(&journal->j_join_wait, &wait);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002932 set_current_state(TASK_UNINTERRUPTIBLE);
Frederic Weisbecker8ebc4232009-04-07 04:19:49 +02002933 if (test_bit(J_WRITERS_QUEUED, &journal->j_state)) {
2934 reiserfs_write_unlock(s);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002935 schedule();
Frederic Weisbecker8ebc4232009-04-07 04:19:49 +02002936 reiserfs_write_lock(s);
2937 }
Milind Arun Choudhary5ab2f7e2007-05-08 00:30:51 -07002938 __set_current_state(TASK_RUNNING);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002939 remove_wait_queue(&journal->j_join_wait, &wait);
2940}
2941
2942static void wake_queued_writers(struct super_block *s)
2943{
2944 struct reiserfs_journal *journal = SB_JOURNAL(s);
2945 if (test_and_clear_bit(J_WRITERS_QUEUED, &journal->j_state))
2946 wake_up(&journal->j_join_wait);
2947}
2948
Jeff Mahoney600ed412009-03-30 14:02:17 -04002949static void let_transaction_grow(struct super_block *sb, unsigned int trans_id)
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002950{
2951 struct reiserfs_journal *journal = SB_JOURNAL(sb);
2952 unsigned long bcount = journal->j_bcount;
2953 while (1) {
Frederic Weisbecker8ebc4232009-04-07 04:19:49 +02002954 reiserfs_write_unlock(sb);
Nishanth Aravamudan041e0e32005-09-10 00:27:23 -07002955 schedule_timeout_uninterruptible(1);
Frederic Weisbecker8ebc4232009-04-07 04:19:49 +02002956 reiserfs_write_lock(sb);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002957 journal->j_current_jl->j_state |= LIST_COMMIT_PENDING;
2958 while ((atomic_read(&journal->j_wcount) > 0 ||
2959 atomic_read(&journal->j_jlock)) &&
2960 journal->j_trans_id == trans_id) {
2961 queue_log_writer(sb);
2962 }
2963 if (journal->j_trans_id != trans_id)
2964 break;
2965 if (bcount == journal->j_bcount)
2966 break;
2967 bcount = journal->j_bcount;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002968 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002969}
2970
2971/* join == true if you must join an existing transaction.
2972** join == false if you can deal with waiting for others to finish
2973**
2974** this will block until the transaction is joinable. send the number of blocks you
2975** expect to use in nblocks.
2976*/
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002977static int do_journal_begin_r(struct reiserfs_transaction_handle *th,
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04002978 struct super_block *sb, unsigned long nblocks,
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002979 int join)
2980{
2981 time_t now = get_seconds();
Jeff Mahoney600ed412009-03-30 14:02:17 -04002982 unsigned int old_trans_id;
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04002983 struct reiserfs_journal *journal = SB_JOURNAL(sb);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002984 struct reiserfs_transaction_handle myth;
2985 int sched_count = 0;
2986 int retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002987
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04002988 reiserfs_check_lock_depth(sb, "journal_begin");
Eric Sesterhenn14a61442006-10-03 23:36:38 +02002989 BUG_ON(nblocks > journal->j_trans_max);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002990
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04002991 PROC_INFO_INC(sb, journal.journal_being);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002992 /* set here for journal_join */
2993 th->t_refcount = 1;
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04002994 th->t_super = sb;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002995
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002996 relock:
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04002997 lock_journal(sb);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002998 if (join != JBEGIN_ABORT && reiserfs_is_journal_aborted(journal)) {
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04002999 unlock_journal(sb);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003000 retval = journal->j_errno;
3001 goto out_fail;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003002 }
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003003 journal->j_bcount++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003004
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003005 if (test_bit(J_WRITERS_BLOCKED, &journal->j_state)) {
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04003006 unlock_journal(sb);
Frederic Weisbecker8ebc4232009-04-07 04:19:49 +02003007 reiserfs_write_unlock(sb);
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04003008 reiserfs_wait_on_write_block(sb);
Frederic Weisbecker8ebc4232009-04-07 04:19:49 +02003009 reiserfs_write_lock(sb);
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04003010 PROC_INFO_INC(sb, journal.journal_relock_writers);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003011 goto relock;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003012 }
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003013 now = get_seconds();
Linus Torvalds1da177e2005-04-16 15:20:36 -07003014
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003015 /* if there is no room in the journal OR
Jeff Mahoney0222e652009-03-30 14:02:44 -04003016 ** if this transaction is too old, and we weren't called joinable, wait for it to finish before beginning
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003017 ** we don't sleep if there aren't other writers
3018 */
3019
3020 if ((!join && journal->j_must_wait > 0) ||
3021 (!join
3022 && (journal->j_len_alloc + nblocks + 2) >= journal->j_max_batch)
3023 || (!join && atomic_read(&journal->j_wcount) > 0
3024 && journal->j_trans_start_time > 0
3025 && (now - journal->j_trans_start_time) >
3026 journal->j_max_trans_age) || (!join
3027 && atomic_read(&journal->j_jlock))
3028 || (!join && journal->j_cnode_free < (journal->j_trans_max * 3))) {
3029
3030 old_trans_id = journal->j_trans_id;
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04003031 unlock_journal(sb); /* allow others to finish this transaction */
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003032
3033 if (!join && (journal->j_len_alloc + nblocks + 2) >=
3034 journal->j_max_batch &&
3035 ((journal->j_len + nblocks + 2) * 100) <
3036 (journal->j_len_alloc * 75)) {
3037 if (atomic_read(&journal->j_wcount) > 10) {
3038 sched_count++;
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04003039 queue_log_writer(sb);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003040 goto relock;
3041 }
3042 }
3043 /* don't mess with joining the transaction if all we have to do is
3044 * wait for someone else to do a commit
3045 */
3046 if (atomic_read(&journal->j_jlock)) {
3047 while (journal->j_trans_id == old_trans_id &&
3048 atomic_read(&journal->j_jlock)) {
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04003049 queue_log_writer(sb);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003050 }
3051 goto relock;
3052 }
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04003053 retval = journal_join(&myth, sb, 1);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003054 if (retval)
3055 goto out_fail;
3056
3057 /* someone might have ended the transaction while we joined */
3058 if (old_trans_id != journal->j_trans_id) {
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04003059 retval = do_journal_end(&myth, sb, 1, 0);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003060 } else {
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04003061 retval = do_journal_end(&myth, sb, 1, COMMIT_NOW);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003062 }
3063
3064 if (retval)
3065 goto out_fail;
3066
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04003067 PROC_INFO_INC(sb, journal.journal_relock_wcount);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003068 goto relock;
3069 }
3070 /* we are the first writer, set trans_id */
3071 if (journal->j_trans_start_time == 0) {
3072 journal->j_trans_start_time = get_seconds();
3073 }
3074 atomic_inc(&(journal->j_wcount));
3075 journal->j_len_alloc += nblocks;
3076 th->t_blocks_logged = 0;
3077 th->t_blocks_allocated = nblocks;
3078 th->t_trans_id = journal->j_trans_id;
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04003079 unlock_journal(sb);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003080 INIT_LIST_HEAD(&th->t_list);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003081 return 0;
3082
3083 out_fail:
3084 memset(th, 0, sizeof(*th));
3085 /* Re-set th->t_super, so we can properly keep track of how many
3086 * persistent transactions there are. We need to do this so if this
3087 * call is part of a failed restart_transaction, we can free it later */
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04003088 th->t_super = sb;
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003089 return retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003090}
3091
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003092struct reiserfs_transaction_handle *reiserfs_persistent_transaction(struct
3093 super_block
3094 *s,
3095 int nblocks)
3096{
3097 int ret;
3098 struct reiserfs_transaction_handle *th;
3099
3100 /* if we're nesting into an existing transaction. It will be
3101 ** persistent on its own
3102 */
3103 if (reiserfs_transaction_running(s)) {
3104 th = current->journal_info;
3105 th->t_refcount++;
Eric Sesterhenn14a61442006-10-03 23:36:38 +02003106 BUG_ON(th->t_refcount < 2);
3107
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003108 return th;
3109 }
Pekka Enbergd739b422006-02-01 03:06:43 -08003110 th = kmalloc(sizeof(struct reiserfs_transaction_handle), GFP_NOFS);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003111 if (!th)
3112 return NULL;
3113 ret = journal_begin(th, s, nblocks);
3114 if (ret) {
Pekka Enbergd739b422006-02-01 03:06:43 -08003115 kfree(th);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003116 return NULL;
3117 }
3118
3119 SB_JOURNAL(s)->j_persistent_trans++;
3120 return th;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003121}
3122
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003123int reiserfs_end_persistent_transaction(struct reiserfs_transaction_handle *th)
3124{
3125 struct super_block *s = th->t_super;
3126 int ret = 0;
3127 if (th->t_trans_id)
3128 ret = journal_end(th, th->t_super, th->t_blocks_allocated);
3129 else
3130 ret = -EIO;
3131 if (th->t_refcount == 0) {
3132 SB_JOURNAL(s)->j_persistent_trans--;
Pekka Enbergd739b422006-02-01 03:06:43 -08003133 kfree(th);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003134 }
3135 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003136}
3137
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003138static int journal_join(struct reiserfs_transaction_handle *th,
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04003139 struct super_block *sb, unsigned long nblocks)
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003140{
3141 struct reiserfs_transaction_handle *cur_th = current->journal_info;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003142
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003143 /* this keeps do_journal_end from NULLing out the current->journal_info
3144 ** pointer
3145 */
3146 th->t_handle_save = cur_th;
Eric Sesterhenn14a61442006-10-03 23:36:38 +02003147 BUG_ON(cur_th && cur_th->t_refcount > 1);
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04003148 return do_journal_begin_r(th, sb, nblocks, JBEGIN_JOIN);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003149}
3150
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003151int journal_join_abort(struct reiserfs_transaction_handle *th,
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04003152 struct super_block *sb, unsigned long nblocks)
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003153{
3154 struct reiserfs_transaction_handle *cur_th = current->journal_info;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003155
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003156 /* this keeps do_journal_end from NULLing out the current->journal_info
3157 ** pointer
3158 */
3159 th->t_handle_save = cur_th;
Eric Sesterhenn14a61442006-10-03 23:36:38 +02003160 BUG_ON(cur_th && cur_th->t_refcount > 1);
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04003161 return do_journal_begin_r(th, sb, nblocks, JBEGIN_ABORT);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003162}
3163
3164int journal_begin(struct reiserfs_transaction_handle *th,
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04003165 struct super_block *sb, unsigned long nblocks)
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003166{
3167 struct reiserfs_transaction_handle *cur_th = current->journal_info;
3168 int ret;
3169
3170 th->t_handle_save = NULL;
3171 if (cur_th) {
3172 /* we are nesting into the current transaction */
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04003173 if (cur_th->t_super == sb) {
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003174 BUG_ON(!cur_th->t_refcount);
3175 cur_th->t_refcount++;
3176 memcpy(th, cur_th, sizeof(*th));
3177 if (th->t_refcount <= 1)
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04003178 reiserfs_warning(sb, "reiserfs-2005",
Jeff Mahoney45b03d52009-03-30 14:02:21 -04003179 "BAD: refcount <= 1, but "
3180 "journal_info != 0");
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003181 return 0;
3182 } else {
3183 /* we've ended up with a handle from a different filesystem.
3184 ** save it and restore on journal_end. This should never
3185 ** really happen...
3186 */
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04003187 reiserfs_warning(sb, "clm-2100",
Jeff Mahoney45b03d52009-03-30 14:02:21 -04003188 "nesting info a different FS");
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003189 th->t_handle_save = current->journal_info;
3190 current->journal_info = th;
3191 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003192 } else {
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003193 current->journal_info = th;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003194 }
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04003195 ret = do_journal_begin_r(th, sb, nblocks, JBEGIN_REG);
Eric Sesterhenn14a61442006-10-03 23:36:38 +02003196 BUG_ON(current->journal_info != th);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003197
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003198 /* I guess this boils down to being the reciprocal of clm-2100 above.
3199 * If do_journal_begin_r fails, we need to put it back, since journal_end
3200 * won't be called to do it. */
3201 if (ret)
3202 current->journal_info = th->t_handle_save;
3203 else
3204 BUG_ON(!th->t_refcount);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003205
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003206 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003207}
3208
3209/*
3210** puts bh into the current transaction. If it was already there, reorders removes the
3211** old pointers from the hash, and puts new ones in (to make sure replay happen in the right order).
3212**
3213** if it was dirty, cleans and files onto the clean list. I can't let it be dirty again until the
3214** transaction is committed.
Jeff Mahoney0222e652009-03-30 14:02:44 -04003215**
Linus Torvalds1da177e2005-04-16 15:20:36 -07003216** if j_len, is bigger than j_len_alloc, it pushes j_len_alloc to 10 + j_len.
3217*/
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003218int journal_mark_dirty(struct reiserfs_transaction_handle *th,
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04003219 struct super_block *sb, struct buffer_head *bh)
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003220{
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04003221 struct reiserfs_journal *journal = SB_JOURNAL(sb);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003222 struct reiserfs_journal_cnode *cn = NULL;
3223 int count_already_incd = 0;
3224 int prepared = 0;
3225 BUG_ON(!th->t_trans_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003226
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04003227 PROC_INFO_INC(sb, journal.mark_dirty);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003228 if (th->t_trans_id != journal->j_trans_id) {
Jeff Mahoneyc3a9c212009-03-30 14:02:25 -04003229 reiserfs_panic(th->t_super, "journal-1577",
3230 "handle trans id %ld != current trans id %ld",
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003231 th->t_trans_id, journal->j_trans_id);
3232 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003233
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04003234 sb->s_dirt = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003235
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003236 prepared = test_clear_buffer_journal_prepared(bh);
3237 clear_buffer_journal_restore_dirty(bh);
3238 /* already in this transaction, we are done */
3239 if (buffer_journaled(bh)) {
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04003240 PROC_INFO_INC(sb, journal.mark_dirty_already);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003241 return 0;
3242 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003243
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003244 /* this must be turned into a panic instead of a warning. We can't allow
3245 ** a dirty or journal_dirty or locked buffer to be logged, as some changes
3246 ** could get to disk too early. NOT GOOD.
3247 */
3248 if (!prepared || buffer_dirty(bh)) {
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04003249 reiserfs_warning(sb, "journal-1777",
Jeff Mahoney45b03d52009-03-30 14:02:21 -04003250 "buffer %llu bad state "
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003251 "%cPREPARED %cLOCKED %cDIRTY %cJDIRTY_WAIT",
3252 (unsigned long long)bh->b_blocknr,
3253 prepared ? ' ' : '!',
3254 buffer_locked(bh) ? ' ' : '!',
3255 buffer_dirty(bh) ? ' ' : '!',
3256 buffer_journal_dirty(bh) ? ' ' : '!');
3257 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003258
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003259 if (atomic_read(&(journal->j_wcount)) <= 0) {
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04003260 reiserfs_warning(sb, "journal-1409",
Jeff Mahoney45b03d52009-03-30 14:02:21 -04003261 "returning because j_wcount was %d",
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003262 atomic_read(&(journal->j_wcount)));
3263 return 1;
3264 }
Jeff Mahoney0222e652009-03-30 14:02:44 -04003265 /* this error means I've screwed up, and we've overflowed the transaction.
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003266 ** Nothing can be done here, except make the FS readonly or panic.
3267 */
3268 if (journal->j_len >= journal->j_trans_max) {
Jeff Mahoneyc3a9c212009-03-30 14:02:25 -04003269 reiserfs_panic(th->t_super, "journal-1413",
3270 "j_len (%lu) is too big",
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003271 journal->j_len);
3272 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003273
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003274 if (buffer_journal_dirty(bh)) {
3275 count_already_incd = 1;
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04003276 PROC_INFO_INC(sb, journal.mark_dirty_notjournal);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003277 clear_buffer_journal_dirty(bh);
3278 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003279
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003280 if (journal->j_len > journal->j_len_alloc) {
3281 journal->j_len_alloc = journal->j_len + JOURNAL_PER_BALANCE_CNT;
3282 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003283
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003284 set_buffer_journaled(bh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003285
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003286 /* now put this guy on the end */
3287 if (!cn) {
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04003288 cn = get_cnode(sb);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003289 if (!cn) {
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04003290 reiserfs_panic(sb, "journal-4", "get_cnode failed!");
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003291 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003292
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003293 if (th->t_blocks_logged == th->t_blocks_allocated) {
3294 th->t_blocks_allocated += JOURNAL_PER_BALANCE_CNT;
3295 journal->j_len_alloc += JOURNAL_PER_BALANCE_CNT;
3296 }
3297 th->t_blocks_logged++;
3298 journal->j_len++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003299
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003300 cn->bh = bh;
3301 cn->blocknr = bh->b_blocknr;
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04003302 cn->sb = sb;
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003303 cn->jlist = NULL;
3304 insert_journal_hash(journal->j_hash_table, cn);
3305 if (!count_already_incd) {
3306 get_bh(bh);
3307 }
3308 }
3309 cn->next = NULL;
3310 cn->prev = journal->j_last;
3311 cn->bh = bh;
3312 if (journal->j_last) {
3313 journal->j_last->next = cn;
3314 journal->j_last = cn;
3315 } else {
3316 journal->j_first = cn;
3317 journal->j_last = cn;
3318 }
3319 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003320}
3321
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003322int journal_end(struct reiserfs_transaction_handle *th,
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04003323 struct super_block *sb, unsigned long nblocks)
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003324{
3325 if (!current->journal_info && th->t_refcount > 1)
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04003326 reiserfs_warning(sb, "REISER-NESTING",
Jeff Mahoney45b03d52009-03-30 14:02:21 -04003327 "th NULL, refcount %d", th->t_refcount);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003328
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003329 if (!th->t_trans_id) {
3330 WARN_ON(1);
3331 return -EIO;
3332 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003333
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003334 th->t_refcount--;
3335 if (th->t_refcount > 0) {
3336 struct reiserfs_transaction_handle *cur_th =
3337 current->journal_info;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003338
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003339 /* we aren't allowed to close a nested transaction on a different
3340 ** filesystem from the one in the task struct
3341 */
Eric Sesterhenn14a61442006-10-03 23:36:38 +02003342 BUG_ON(cur_th->t_super != th->t_super);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003343
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003344 if (th != cur_th) {
3345 memcpy(current->journal_info, th, sizeof(*th));
3346 th->t_trans_id = 0;
3347 }
3348 return 0;
3349 } else {
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04003350 return do_journal_end(th, sb, nblocks, 0);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003351 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003352}
3353
Jeff Mahoney0222e652009-03-30 14:02:44 -04003354/* removes from the current transaction, relsing and descrementing any counters.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003355** also files the removed buffer directly onto the clean list
3356**
3357** called by journal_mark_freed when a block has been deleted
3358**
3359** returns 1 if it cleaned and relsed the buffer. 0 otherwise
3360*/
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04003361static int remove_from_transaction(struct super_block *sb,
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003362 b_blocknr_t blocknr, int already_cleaned)
3363{
3364 struct buffer_head *bh;
3365 struct reiserfs_journal_cnode *cn;
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04003366 struct reiserfs_journal *journal = SB_JOURNAL(sb);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003367 int ret = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003368
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04003369 cn = get_journal_hash_dev(sb, journal->j_hash_table, blocknr);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003370 if (!cn || !cn->bh) {
3371 return ret;
3372 }
3373 bh = cn->bh;
3374 if (cn->prev) {
3375 cn->prev->next = cn->next;
3376 }
3377 if (cn->next) {
3378 cn->next->prev = cn->prev;
3379 }
3380 if (cn == journal->j_first) {
3381 journal->j_first = cn->next;
3382 }
3383 if (cn == journal->j_last) {
3384 journal->j_last = cn->prev;
3385 }
3386 if (bh)
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04003387 remove_journal_hash(sb, journal->j_hash_table, NULL,
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003388 bh->b_blocknr, 0);
3389 clear_buffer_journaled(bh); /* don't log this one */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003390
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003391 if (!already_cleaned) {
3392 clear_buffer_journal_dirty(bh);
3393 clear_buffer_dirty(bh);
3394 clear_buffer_journal_test(bh);
3395 put_bh(bh);
3396 if (atomic_read(&(bh->b_count)) < 0) {
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04003397 reiserfs_warning(sb, "journal-1752",
Jeff Mahoney45b03d52009-03-30 14:02:21 -04003398 "b_count < 0");
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003399 }
3400 ret = 1;
3401 }
3402 journal->j_len--;
3403 journal->j_len_alloc--;
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04003404 free_cnode(sb, cn);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003405 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003406}
3407
3408/*
3409** for any cnode in a journal list, it can only be dirtied of all the
Matt LaPlante0779bf22006-11-30 05:24:39 +01003410** transactions that include it are committed to disk.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003411** this checks through each transaction, and returns 1 if you are allowed to dirty,
3412** and 0 if you aren't
3413**
3414** it is called by dirty_journal_list, which is called after flush_commit_list has gotten all the log
3415** blocks for a given transaction on disk
3416**
3417*/
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003418static int can_dirty(struct reiserfs_journal_cnode *cn)
3419{
3420 struct super_block *sb = cn->sb;
3421 b_blocknr_t blocknr = cn->blocknr;
3422 struct reiserfs_journal_cnode *cur = cn->hprev;
3423 int can_dirty = 1;
3424
3425 /* first test hprev. These are all newer than cn, so any node here
3426 ** with the same block number and dev means this node can't be sent
3427 ** to disk right now.
3428 */
3429 while (cur && can_dirty) {
3430 if (cur->jlist && cur->bh && cur->blocknr && cur->sb == sb &&
3431 cur->blocknr == blocknr) {
3432 can_dirty = 0;
3433 }
3434 cur = cur->hprev;
3435 }
3436 /* then test hnext. These are all older than cn. As long as they
3437 ** are committed to the log, it is safe to write cn to disk
3438 */
3439 cur = cn->hnext;
3440 while (cur && can_dirty) {
3441 if (cur->jlist && cur->jlist->j_len > 0 &&
3442 atomic_read(&(cur->jlist->j_commit_left)) > 0 && cur->bh &&
3443 cur->blocknr && cur->sb == sb && cur->blocknr == blocknr) {
3444 can_dirty = 0;
3445 }
3446 cur = cur->hnext;
3447 }
3448 return can_dirty;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003449}
3450
3451/* syncs the commit blocks, but does not force the real buffers to disk
Jeff Mahoney0222e652009-03-30 14:02:44 -04003452** will wait until the current transaction is done/committed before returning
Linus Torvalds1da177e2005-04-16 15:20:36 -07003453*/
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003454int journal_end_sync(struct reiserfs_transaction_handle *th,
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04003455 struct super_block *sb, unsigned long nblocks)
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003456{
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04003457 struct reiserfs_journal *journal = SB_JOURNAL(sb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003458
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003459 BUG_ON(!th->t_trans_id);
3460 /* you can sync while nested, very, very bad */
Eric Sesterhenn14a61442006-10-03 23:36:38 +02003461 BUG_ON(th->t_refcount > 1);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003462 if (journal->j_len == 0) {
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04003463 reiserfs_prepare_for_journal(sb, SB_BUFFER_WITH_SB(sb),
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003464 1);
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04003465 journal_mark_dirty(th, sb, SB_BUFFER_WITH_SB(sb));
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003466 }
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04003467 return do_journal_end(th, sb, nblocks, COMMIT_NOW | WAIT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003468}
3469
3470/*
3471** writeback the pending async commits to disk
3472*/
David Howellsc4028952006-11-22 14:57:56 +00003473static void flush_async_commits(struct work_struct *work)
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003474{
David Howellsc4028952006-11-22 14:57:56 +00003475 struct reiserfs_journal *journal =
3476 container_of(work, struct reiserfs_journal, j_work.work);
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04003477 struct super_block *sb = journal->j_work_sb;
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003478 struct reiserfs_journal_list *jl;
3479 struct list_head *entry;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003480
Frederic Weisbecker8ebc4232009-04-07 04:19:49 +02003481 reiserfs_write_lock(sb);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003482 if (!list_empty(&journal->j_journal_list)) {
3483 /* last entry is the youngest, commit it and you get everything */
3484 entry = journal->j_journal_list.prev;
3485 jl = JOURNAL_LIST_ENTRY(entry);
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04003486 flush_commit_list(sb, jl, 1);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003487 }
Frederic Weisbecker8ebc4232009-04-07 04:19:49 +02003488 reiserfs_write_unlock(sb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003489}
3490
3491/*
3492** flushes any old transactions to disk
3493** ends the current transaction if it is too old
3494*/
Artem Bityutskiy25729b02012-06-01 17:18:05 +03003495void reiserfs_flush_old_commits(struct super_block *sb)
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003496{
3497 time_t now;
3498 struct reiserfs_transaction_handle th;
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04003499 struct reiserfs_journal *journal = SB_JOURNAL(sb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003500
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003501 now = get_seconds();
3502 /* safety check so we don't flush while we are replaying the log during
3503 * mount
3504 */
Artem Bityutskiy25729b02012-06-01 17:18:05 +03003505 if (list_empty(&journal->j_journal_list))
3506 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003507
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003508 /* check the current transaction. If there are no writers, and it is
3509 * too old, finish it, and force the commit blocks to disk
3510 */
3511 if (atomic_read(&journal->j_wcount) <= 0 &&
3512 journal->j_trans_start_time > 0 &&
3513 journal->j_len > 0 &&
3514 (now - journal->j_trans_start_time) > journal->j_max_trans_age) {
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04003515 if (!journal_join(&th, sb, 1)) {
3516 reiserfs_prepare_for_journal(sb,
3517 SB_BUFFER_WITH_SB(sb),
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003518 1);
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04003519 journal_mark_dirty(&th, sb,
3520 SB_BUFFER_WITH_SB(sb));
Linus Torvalds1da177e2005-04-16 15:20:36 -07003521
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003522 /* we're only being called from kreiserfsd, it makes no sense to do
3523 ** an async commit so that kreiserfsd can do it later
3524 */
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04003525 do_journal_end(&th, sb, 1, COMMIT_NOW | WAIT);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003526 }
3527 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003528}
3529
3530/*
3531** returns 0 if do_journal_end should return right away, returns 1 if do_journal_end should finish the commit
Jeff Mahoney0222e652009-03-30 14:02:44 -04003532**
3533** if the current transaction is too old, but still has writers, this will wait on j_join_wait until all
Linus Torvalds1da177e2005-04-16 15:20:36 -07003534** the writers are done. By the time it wakes up, the transaction it was called has already ended, so it just
3535** flushes the commit list and returns 0.
3536**
3537** Won't batch when flush or commit_now is set. Also won't batch when others are waiting on j_join_wait.
Jeff Mahoney0222e652009-03-30 14:02:44 -04003538**
Linus Torvalds1da177e2005-04-16 15:20:36 -07003539** Note, we can't allow the journal_end to proceed while there are still writers in the log.
3540*/
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003541static int check_journal_end(struct reiserfs_transaction_handle *th,
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04003542 struct super_block *sb, unsigned long nblocks,
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003543 int flags)
3544{
Linus Torvalds1da177e2005-04-16 15:20:36 -07003545
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003546 time_t now;
3547 int flush = flags & FLUSH_ALL;
3548 int commit_now = flags & COMMIT_NOW;
3549 int wait_on_commit = flags & WAIT;
3550 struct reiserfs_journal_list *jl;
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04003551 struct reiserfs_journal *journal = SB_JOURNAL(sb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003552
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003553 BUG_ON(!th->t_trans_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003554
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003555 if (th->t_trans_id != journal->j_trans_id) {
Jeff Mahoneyc3a9c212009-03-30 14:02:25 -04003556 reiserfs_panic(th->t_super, "journal-1577",
3557 "handle trans id %ld != current trans id %ld",
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003558 th->t_trans_id, journal->j_trans_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003559 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003560
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003561 journal->j_len_alloc -= (th->t_blocks_allocated - th->t_blocks_logged);
3562 if (atomic_read(&(journal->j_wcount)) > 0) { /* <= 0 is allowed. unmounting might not call begin */
3563 atomic_dec(&(journal->j_wcount));
3564 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003565
Jeff Mahoney0222e652009-03-30 14:02:44 -04003566 /* BUG, deal with case where j_len is 0, but people previously freed blocks need to be released
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003567 ** will be dealt with by next transaction that actually writes something, but should be taken
3568 ** care of in this trans
3569 */
Eric Sesterhenn14a61442006-10-03 23:36:38 +02003570 BUG_ON(journal->j_len == 0);
3571
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003572 /* if wcount > 0, and we are called to with flush or commit_now,
3573 ** we wait on j_join_wait. We will wake up when the last writer has
3574 ** finished the transaction, and started it on its way to the disk.
Jeff Mahoney0222e652009-03-30 14:02:44 -04003575 ** Then, we flush the commit or journal list, and just return 0
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003576 ** because the rest of journal end was already done for this transaction.
3577 */
3578 if (atomic_read(&(journal->j_wcount)) > 0) {
3579 if (flush || commit_now) {
3580 unsigned trans_id;
3581
3582 jl = journal->j_current_jl;
3583 trans_id = jl->j_trans_id;
3584 if (wait_on_commit)
3585 jl->j_state |= LIST_COMMIT_PENDING;
3586 atomic_set(&(journal->j_jlock), 1);
3587 if (flush) {
3588 journal->j_next_full_flush = 1;
3589 }
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04003590 unlock_journal(sb);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003591
3592 /* sleep while the current transaction is still j_jlocked */
3593 while (journal->j_trans_id == trans_id) {
3594 if (atomic_read(&journal->j_jlock)) {
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04003595 queue_log_writer(sb);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003596 } else {
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04003597 lock_journal(sb);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003598 if (journal->j_trans_id == trans_id) {
3599 atomic_set(&(journal->j_jlock),
3600 1);
3601 }
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04003602 unlock_journal(sb);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003603 }
3604 }
Eric Sesterhenn14a61442006-10-03 23:36:38 +02003605 BUG_ON(journal->j_trans_id == trans_id);
3606
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003607 if (commit_now
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04003608 && journal_list_still_alive(sb, trans_id)
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003609 && wait_on_commit) {
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04003610 flush_commit_list(sb, jl, 1);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003611 }
3612 return 0;
3613 }
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04003614 unlock_journal(sb);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003615 return 0;
3616 }
3617
3618 /* deal with old transactions where we are the last writers */
3619 now = get_seconds();
3620 if ((now - journal->j_trans_start_time) > journal->j_max_trans_age) {
3621 commit_now = 1;
3622 journal->j_next_async_flush = 1;
3623 }
3624 /* don't batch when someone is waiting on j_join_wait */
3625 /* don't batch when syncing the commit or flushing the whole trans */
3626 if (!(journal->j_must_wait > 0) && !(atomic_read(&(journal->j_jlock)))
3627 && !flush && !commit_now && (journal->j_len < journal->j_max_batch)
3628 && journal->j_len_alloc < journal->j_max_batch
3629 && journal->j_cnode_free > (journal->j_trans_max * 3)) {
3630 journal->j_bcount++;
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04003631 unlock_journal(sb);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003632 return 0;
3633 }
3634
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04003635 if (journal->j_start > SB_ONDISK_JOURNAL_SIZE(sb)) {
3636 reiserfs_panic(sb, "journal-003",
Jeff Mahoneyc3a9c212009-03-30 14:02:25 -04003637 "j_start (%ld) is too high",
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003638 journal->j_start);
3639 }
3640 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003641}
3642
3643/*
3644** Does all the work that makes deleting blocks safe.
3645** when deleting a block mark BH_JNew, just remove it from the current transaction, clean it's buffer_head and move on.
Jeff Mahoney0222e652009-03-30 14:02:44 -04003646**
Linus Torvalds1da177e2005-04-16 15:20:36 -07003647** otherwise:
3648** set a bit for the block in the journal bitmap. That will prevent it from being allocated for unformatted nodes
3649** before this transaction has finished.
3650**
3651** mark any cnodes for this block as BLOCK_FREED, and clear their bh pointers. That will prevent any old transactions with
3652** this block from trying to flush to the real location. Since we aren't removing the cnode from the journal_list_hash,
3653** the block can't be reallocated yet.
3654**
3655** Then remove it from the current transaction, decrementing any counters and filing it on the clean list.
3656*/
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003657int journal_mark_freed(struct reiserfs_transaction_handle *th,
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04003658 struct super_block *sb, b_blocknr_t blocknr)
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003659{
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04003660 struct reiserfs_journal *journal = SB_JOURNAL(sb);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003661 struct reiserfs_journal_cnode *cn = NULL;
3662 struct buffer_head *bh = NULL;
3663 struct reiserfs_list_bitmap *jb = NULL;
3664 int cleaned = 0;
3665 BUG_ON(!th->t_trans_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003666
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04003667 cn = get_journal_hash_dev(sb, journal->j_hash_table, blocknr);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003668 if (cn && cn->bh) {
3669 bh = cn->bh;
3670 get_bh(bh);
3671 }
3672 /* if it is journal new, we just remove it from this transaction */
3673 if (bh && buffer_journal_new(bh)) {
3674 clear_buffer_journal_new(bh);
3675 clear_prepared_bits(bh);
3676 reiserfs_clean_and_file_buffer(bh);
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04003677 cleaned = remove_from_transaction(sb, blocknr, cleaned);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003678 } else {
3679 /* set the bit for this block in the journal bitmap for this transaction */
3680 jb = journal->j_current_jl->j_list_bitmap;
3681 if (!jb) {
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04003682 reiserfs_panic(sb, "journal-1702",
Jeff Mahoneyc3a9c212009-03-30 14:02:25 -04003683 "journal_list_bitmap is NULL");
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003684 }
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04003685 set_bit_in_list_bitmap(sb, blocknr, jb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003686
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003687 /* Note, the entire while loop is not allowed to schedule. */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003688
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003689 if (bh) {
3690 clear_prepared_bits(bh);
3691 reiserfs_clean_and_file_buffer(bh);
3692 }
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04003693 cleaned = remove_from_transaction(sb, blocknr, cleaned);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003694
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003695 /* find all older transactions with this block, make sure they don't try to write it out */
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04003696 cn = get_journal_hash_dev(sb, journal->j_list_hash_table,
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003697 blocknr);
3698 while (cn) {
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04003699 if (sb == cn->sb && blocknr == cn->blocknr) {
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003700 set_bit(BLOCK_FREED, &cn->state);
3701 if (cn->bh) {
3702 if (!cleaned) {
3703 /* remove_from_transaction will brelse the buffer if it was
3704 ** in the current trans
3705 */
3706 clear_buffer_journal_dirty(cn->
3707 bh);
3708 clear_buffer_dirty(cn->bh);
3709 clear_buffer_journal_test(cn->
3710 bh);
3711 cleaned = 1;
3712 put_bh(cn->bh);
3713 if (atomic_read
3714 (&(cn->bh->b_count)) < 0) {
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04003715 reiserfs_warning(sb,
Jeff Mahoney45b03d52009-03-30 14:02:21 -04003716 "journal-2138",
3717 "cn->bh->b_count < 0");
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003718 }
3719 }
3720 if (cn->jlist) { /* since we are clearing the bh, we MUST dec nonzerolen */
3721 atomic_dec(&
3722 (cn->jlist->
3723 j_nonzerolen));
3724 }
3725 cn->bh = NULL;
3726 }
3727 }
3728 cn = cn->hnext;
3729 }
3730 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003731
Chris Mason398c95b2007-10-16 23:29:44 -07003732 if (bh)
3733 release_buffer_page(bh); /* get_hash grabs the buffer */
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003734 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003735}
3736
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003737void reiserfs_update_inode_transaction(struct inode *inode)
3738{
3739 struct reiserfs_journal *journal = SB_JOURNAL(inode->i_sb);
3740 REISERFS_I(inode)->i_jl = journal->j_current_jl;
3741 REISERFS_I(inode)->i_trans_id = journal->j_trans_id;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003742}
3743
3744/*
3745 * returns -1 on error, 0 if no commits/barriers were done and 1
3746 * if a transaction was actually committed and the barrier was done
3747 */
3748static int __commit_trans_jl(struct inode *inode, unsigned long id,
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003749 struct reiserfs_journal_list *jl)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003750{
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003751 struct reiserfs_transaction_handle th;
3752 struct super_block *sb = inode->i_sb;
3753 struct reiserfs_journal *journal = SB_JOURNAL(sb);
3754 int ret = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003755
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003756 /* is it from the current transaction, or from an unknown transaction? */
3757 if (id == journal->j_trans_id) {
3758 jl = journal->j_current_jl;
3759 /* try to let other writers come in and grow this transaction */
3760 let_transaction_grow(sb, id);
3761 if (journal->j_trans_id != id) {
3762 goto flush_commit_only;
3763 }
3764
3765 ret = journal_begin(&th, sb, 1);
3766 if (ret)
3767 return ret;
3768
3769 /* someone might have ended this transaction while we joined */
3770 if (journal->j_trans_id != id) {
3771 reiserfs_prepare_for_journal(sb, SB_BUFFER_WITH_SB(sb),
3772 1);
3773 journal_mark_dirty(&th, sb, SB_BUFFER_WITH_SB(sb));
3774 ret = journal_end(&th, sb, 1);
3775 goto flush_commit_only;
3776 }
3777
3778 ret = journal_end_sync(&th, sb, 1);
3779 if (!ret)
3780 ret = 1;
3781
3782 } else {
3783 /* this gets tricky, we have to make sure the journal list in
3784 * the inode still exists. We know the list is still around
3785 * if we've got a larger transaction id than the oldest list
3786 */
3787 flush_commit_only:
3788 if (journal_list_still_alive(inode->i_sb, id)) {
3789 /*
3790 * we only set ret to 1 when we know for sure
3791 * the barrier hasn't been started yet on the commit
3792 * block.
3793 */
3794 if (atomic_read(&jl->j_commit_left) > 1)
3795 ret = 1;
3796 flush_commit_list(sb, jl, 1);
3797 if (journal->j_errno)
3798 ret = journal->j_errno;
3799 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003800 }
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003801 /* otherwise the list is gone, and long since committed */
3802 return ret;
3803}
Linus Torvalds1da177e2005-04-16 15:20:36 -07003804
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003805int reiserfs_commit_for_inode(struct inode *inode)
3806{
Jeff Mahoney600ed412009-03-30 14:02:17 -04003807 unsigned int id = REISERFS_I(inode)->i_trans_id;
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003808 struct reiserfs_journal_list *jl = REISERFS_I(inode)->i_jl;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003809
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003810 /* for the whole inode, assume unset id means it was
3811 * changed in the current transaction. More conservative
Linus Torvalds1da177e2005-04-16 15:20:36 -07003812 */
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003813 if (!id || !jl) {
3814 reiserfs_update_inode_transaction(inode);
3815 id = REISERFS_I(inode)->i_trans_id;
3816 /* jl will be updated in __commit_trans_jl */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003817 }
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003818
3819 return __commit_trans_jl(inode, id, jl);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003820}
3821
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04003822void reiserfs_restore_prepared_buffer(struct super_block *sb,
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003823 struct buffer_head *bh)
3824{
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04003825 struct reiserfs_journal *journal = SB_JOURNAL(sb);
3826 PROC_INFO_INC(sb, journal.restore_prepared);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003827 if (!bh) {
3828 return;
3829 }
3830 if (test_clear_buffer_journal_restore_dirty(bh) &&
3831 buffer_journal_dirty(bh)) {
3832 struct reiserfs_journal_cnode *cn;
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04003833 cn = get_journal_hash_dev(sb,
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003834 journal->j_list_hash_table,
3835 bh->b_blocknr);
3836 if (cn && can_dirty(cn)) {
3837 set_buffer_journal_test(bh);
3838 mark_buffer_dirty(bh);
3839 }
3840 }
3841 clear_buffer_journal_prepared(bh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003842}
3843
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003844extern struct tree_balance *cur_tb;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003845/*
3846** before we can change a metadata block, we have to make sure it won't
3847** be written to disk while we are altering it. So, we must:
3848** clean it
3849** wait on it.
Jeff Mahoney0222e652009-03-30 14:02:44 -04003850**
Linus Torvalds1da177e2005-04-16 15:20:36 -07003851*/
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04003852int reiserfs_prepare_for_journal(struct super_block *sb,
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003853 struct buffer_head *bh, int wait)
3854{
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04003855 PROC_INFO_INC(sb, journal.prepare);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003856
Nick Pigginca5de402008-08-02 12:02:13 +02003857 if (!trylock_buffer(bh)) {
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003858 if (!wait)
3859 return 0;
3860 lock_buffer(bh);
3861 }
3862 set_buffer_journal_prepared(bh);
3863 if (test_clear_buffer_dirty(bh) && buffer_journal_dirty(bh)) {
3864 clear_buffer_journal_test(bh);
3865 set_buffer_journal_restore_dirty(bh);
3866 }
3867 unlock_buffer(bh);
3868 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003869}
3870
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003871static void flush_old_journal_lists(struct super_block *s)
3872{
3873 struct reiserfs_journal *journal = SB_JOURNAL(s);
3874 struct reiserfs_journal_list *jl;
3875 struct list_head *entry;
3876 time_t now = get_seconds();
Linus Torvalds1da177e2005-04-16 15:20:36 -07003877
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003878 while (!list_empty(&journal->j_journal_list)) {
3879 entry = journal->j_journal_list.next;
3880 jl = JOURNAL_LIST_ENTRY(entry);
3881 /* this check should always be run, to send old lists to disk */
Chris Masona3172022006-09-29 01:59:56 -07003882 if (jl->j_timestamp < (now - (JOURNAL_MAX_TRANS_AGE * 4)) &&
3883 atomic_read(&jl->j_commit_left) == 0 &&
3884 test_transaction(s, jl)) {
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003885 flush_used_journal_lists(s, jl);
3886 } else {
3887 break;
3888 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003889 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003890}
3891
Jeff Mahoney0222e652009-03-30 14:02:44 -04003892/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003893** long and ugly. If flush, will not return until all commit
3894** blocks and all real buffers in the trans are on disk.
3895** If no_async, won't return until all commit blocks are on disk.
3896**
3897** keep reading, there are comments as you go along
3898**
3899** If the journal is aborted, we just clean up. Things like flushing
3900** journal lists, etc just won't happen.
3901*/
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003902static int do_journal_end(struct reiserfs_transaction_handle *th,
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04003903 struct super_block *sb, unsigned long nblocks,
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003904 int flags)
3905{
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04003906 struct reiserfs_journal *journal = SB_JOURNAL(sb);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003907 struct reiserfs_journal_cnode *cn, *next, *jl_cn;
3908 struct reiserfs_journal_cnode *last_cn = NULL;
3909 struct reiserfs_journal_desc *desc;
3910 struct reiserfs_journal_commit *commit;
3911 struct buffer_head *c_bh; /* commit bh */
3912 struct buffer_head *d_bh; /* desc bh */
3913 int cur_write_start = 0; /* start index of current log write */
3914 int old_start;
3915 int i;
Alexander Zarochentseva44c94a2006-03-25 03:06:59 -08003916 int flush;
3917 int wait_on_commit;
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003918 struct reiserfs_journal_list *jl, *temp_jl;
3919 struct list_head *entry, *safe;
3920 unsigned long jindex;
Jeff Mahoney600ed412009-03-30 14:02:17 -04003921 unsigned int commit_trans_id;
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003922 int trans_half;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003923
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003924 BUG_ON(th->t_refcount > 1);
3925 BUG_ON(!th->t_trans_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003926
Alexander Zarochentseva44c94a2006-03-25 03:06:59 -08003927 /* protect flush_older_commits from doing mistakes if the
3928 transaction ID counter gets overflowed. */
Jeff Mahoney600ed412009-03-30 14:02:17 -04003929 if (th->t_trans_id == ~0U)
Alexander Zarochentseva44c94a2006-03-25 03:06:59 -08003930 flags |= FLUSH_ALL | COMMIT_NOW | WAIT;
3931 flush = flags & FLUSH_ALL;
3932 wait_on_commit = flags & WAIT;
3933
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003934 current->journal_info = th->t_handle_save;
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04003935 reiserfs_check_lock_depth(sb, "journal end");
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003936 if (journal->j_len == 0) {
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04003937 reiserfs_prepare_for_journal(sb, SB_BUFFER_WITH_SB(sb),
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003938 1);
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04003939 journal_mark_dirty(th, sb, SB_BUFFER_WITH_SB(sb));
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003940 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003941
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04003942 lock_journal(sb);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003943 if (journal->j_next_full_flush) {
3944 flags |= FLUSH_ALL;
3945 flush = 1;
3946 }
3947 if (journal->j_next_async_flush) {
3948 flags |= COMMIT_NOW | WAIT;
3949 wait_on_commit = 1;
3950 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003951
Jeff Mahoney0222e652009-03-30 14:02:44 -04003952 /* check_journal_end locks the journal, and unlocks if it does not return 1
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003953 ** it tells us if we should continue with the journal_end, or just return
3954 */
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04003955 if (!check_journal_end(th, sb, nblocks, flags)) {
3956 sb->s_dirt = 1;
3957 wake_queued_writers(sb);
3958 reiserfs_async_progress_wait(sb);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003959 goto out;
3960 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003961
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003962 /* check_journal_end might set these, check again */
3963 if (journal->j_next_full_flush) {
3964 flush = 1;
3965 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003966
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003967 /*
3968 ** j must wait means we have to flush the log blocks, and the real blocks for
3969 ** this transaction
3970 */
3971 if (journal->j_must_wait > 0) {
3972 flush = 1;
3973 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003974#ifdef REISERFS_PREALLOCATE
Jan Karaef43bc42006-01-11 12:17:40 -08003975 /* quota ops might need to nest, setup the journal_info pointer for them
3976 * and raise the refcount so that it is > 0. */
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003977 current->journal_info = th;
Jan Karaef43bc42006-01-11 12:17:40 -08003978 th->t_refcount++;
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003979 reiserfs_discard_all_prealloc(th); /* it should not involve new blocks into
3980 * the transaction */
Jan Karaef43bc42006-01-11 12:17:40 -08003981 th->t_refcount--;
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003982 current->journal_info = th->t_handle_save;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003983#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07003984
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003985 /* setup description block */
3986 d_bh =
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04003987 journal_getblk(sb,
3988 SB_ONDISK_JOURNAL_1st_BLOCK(sb) +
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003989 journal->j_start);
3990 set_buffer_uptodate(d_bh);
3991 desc = (struct reiserfs_journal_desc *)(d_bh)->b_data;
3992 memset(d_bh->b_data, 0, d_bh->b_size);
3993 memcpy(get_journal_desc_magic(d_bh), JOURNAL_DESC_MAGIC, 8);
3994 set_desc_trans_id(desc, journal->j_trans_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003995
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003996 /* setup commit block. Don't write (keep it clean too) this one until after everyone else is written */
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04003997 c_bh = journal_getblk(sb, SB_ONDISK_JOURNAL_1st_BLOCK(sb) +
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003998 ((journal->j_start + journal->j_len +
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04003999 1) % SB_ONDISK_JOURNAL_SIZE(sb)));
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07004000 commit = (struct reiserfs_journal_commit *)c_bh->b_data;
4001 memset(c_bh->b_data, 0, c_bh->b_size);
4002 set_commit_trans_id(commit, journal->j_trans_id);
4003 set_buffer_uptodate(c_bh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004004
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07004005 /* init this journal list */
4006 jl = journal->j_current_jl;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004007
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07004008 /* we lock the commit before doing anything because
4009 * we want to make sure nobody tries to run flush_commit_list until
4010 * the new transaction is fully setup, and we've already flushed the
4011 * ordered bh list
4012 */
Frederic Weisbecker8ebc4232009-04-07 04:19:49 +02004013 reiserfs_mutex_lock_safe(&jl->j_commit_mutex, sb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004014
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07004015 /* save the transaction id in case we need to commit it later */
4016 commit_trans_id = jl->j_trans_id;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004017
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07004018 atomic_set(&jl->j_older_commits_done, 0);
4019 jl->j_trans_id = journal->j_trans_id;
4020 jl->j_timestamp = journal->j_trans_start_time;
4021 jl->j_commit_bh = c_bh;
4022 jl->j_start = journal->j_start;
4023 jl->j_len = journal->j_len;
4024 atomic_set(&jl->j_nonzerolen, journal->j_len);
4025 atomic_set(&jl->j_commit_left, journal->j_len + 2);
4026 jl->j_realblock = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004027
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07004028 /* The ENTIRE FOR LOOP MUST not cause schedule to occur.
4029 ** for each real block, add it to the journal list hash,
4030 ** copy into real block index array in the commit or desc block
4031 */
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04004032 trans_half = journal_trans_half(sb->s_blocksize);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07004033 for (i = 0, cn = journal->j_first; cn; cn = cn->next, i++) {
4034 if (buffer_journaled(cn->bh)) {
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04004035 jl_cn = get_cnode(sb);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07004036 if (!jl_cn) {
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04004037 reiserfs_panic(sb, "journal-1676",
Jeff Mahoneyc3a9c212009-03-30 14:02:25 -04004038 "get_cnode returned NULL");
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07004039 }
4040 if (i == 0) {
4041 jl->j_realblock = jl_cn;
4042 }
4043 jl_cn->prev = last_cn;
4044 jl_cn->next = NULL;
4045 if (last_cn) {
4046 last_cn->next = jl_cn;
4047 }
4048 last_cn = jl_cn;
Jeff Mahoney0222e652009-03-30 14:02:44 -04004049 /* make sure the block we are trying to log is not a block
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07004050 of journal or reserved area */
Linus Torvalds1da177e2005-04-16 15:20:36 -07004051
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07004052 if (is_block_in_log_or_reserved_area
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04004053 (sb, cn->bh->b_blocknr)) {
4054 reiserfs_panic(sb, "journal-2332",
Jeff Mahoneyc3a9c212009-03-30 14:02:25 -04004055 "Trying to log block %lu, "
4056 "which is a log block",
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07004057 cn->bh->b_blocknr);
4058 }
4059 jl_cn->blocknr = cn->bh->b_blocknr;
4060 jl_cn->state = 0;
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04004061 jl_cn->sb = sb;
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07004062 jl_cn->bh = cn->bh;
4063 jl_cn->jlist = jl;
4064 insert_journal_hash(journal->j_list_hash_table, jl_cn);
4065 if (i < trans_half) {
4066 desc->j_realblock[i] =
4067 cpu_to_le32(cn->bh->b_blocknr);
4068 } else {
4069 commit->j_realblock[i - trans_half] =
4070 cpu_to_le32(cn->bh->b_blocknr);
4071 }
4072 } else {
4073 i--;
4074 }
4075 }
4076 set_desc_trans_len(desc, journal->j_len);
4077 set_desc_mount_id(desc, journal->j_mount_id);
4078 set_desc_trans_id(desc, journal->j_trans_id);
4079 set_commit_trans_len(commit, journal->j_len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004080
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07004081 /* special check in case all buffers in the journal were marked for not logging */
Eric Sesterhenn14a61442006-10-03 23:36:38 +02004082 BUG_ON(journal->j_len == 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004083
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07004084 /* we're about to dirty all the log blocks, mark the description block
4085 * dirty now too. Don't mark the commit block dirty until all the
4086 * others are on disk
4087 */
4088 mark_buffer_dirty(d_bh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004089
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07004090 /* first data block is j_start + 1, so add one to cur_write_start wherever you use it */
4091 cur_write_start = journal->j_start;
4092 cn = journal->j_first;
4093 jindex = 1; /* start at one so we don't get the desc again */
4094 while (cn) {
4095 clear_buffer_journal_new(cn->bh);
4096 /* copy all the real blocks into log area. dirty log blocks */
4097 if (buffer_journaled(cn->bh)) {
4098 struct buffer_head *tmp_bh;
4099 char *addr;
4100 struct page *page;
4101 tmp_bh =
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04004102 journal_getblk(sb,
4103 SB_ONDISK_JOURNAL_1st_BLOCK(sb) +
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07004104 ((cur_write_start +
4105 jindex) %
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04004106 SB_ONDISK_JOURNAL_SIZE(sb)));
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07004107 set_buffer_uptodate(tmp_bh);
4108 page = cn->bh->b_page;
4109 addr = kmap(page);
4110 memcpy(tmp_bh->b_data,
4111 addr + offset_in_page(cn->bh->b_data),
4112 cn->bh->b_size);
4113 kunmap(page);
4114 mark_buffer_dirty(tmp_bh);
4115 jindex++;
4116 set_buffer_journal_dirty(cn->bh);
4117 clear_buffer_journaled(cn->bh);
4118 } else {
4119 /* JDirty cleared sometime during transaction. don't log this one */
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04004120 reiserfs_warning(sb, "journal-2048",
Jeff Mahoney45b03d52009-03-30 14:02:21 -04004121 "BAD, buffer in journal hash, "
4122 "but not JDirty!");
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07004123 brelse(cn->bh);
4124 }
4125 next = cn->next;
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04004126 free_cnode(sb, cn);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07004127 cn = next;
Frederic Weisbeckere6950a42009-04-30 23:04:32 +02004128 reiserfs_write_unlock(sb);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07004129 cond_resched();
Frederic Weisbeckere6950a42009-04-30 23:04:32 +02004130 reiserfs_write_lock(sb);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07004131 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004132
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07004133 /* we are done with both the c_bh and d_bh, but
4134 ** c_bh must be written after all other commit blocks,
4135 ** so we dirty/relse c_bh in flush_commit_list, with commit_left <= 1.
4136 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07004137
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04004138 journal->j_current_jl = alloc_journal_list(sb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004139
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07004140 /* now it is safe to insert this transaction on the main list */
4141 list_add_tail(&jl->j_list, &journal->j_journal_list);
4142 list_add_tail(&jl->j_working_list, &journal->j_working_list);
4143 journal->j_num_work_lists++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004144
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07004145 /* reset journal values for the next transaction */
4146 old_start = journal->j_start;
4147 journal->j_start =
4148 (journal->j_start + journal->j_len +
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04004149 2) % SB_ONDISK_JOURNAL_SIZE(sb);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07004150 atomic_set(&(journal->j_wcount), 0);
4151 journal->j_bcount = 0;
4152 journal->j_last = NULL;
4153 journal->j_first = NULL;
4154 journal->j_len = 0;
4155 journal->j_trans_start_time = 0;
Alexander Zarochentseva44c94a2006-03-25 03:06:59 -08004156 /* check for trans_id overflow */
4157 if (++journal->j_trans_id == 0)
4158 journal->j_trans_id = 10;
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07004159 journal->j_current_jl->j_trans_id = journal->j_trans_id;
4160 journal->j_must_wait = 0;
4161 journal->j_len_alloc = 0;
4162 journal->j_next_full_flush = 0;
4163 journal->j_next_async_flush = 0;
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04004164 init_journal_hash(sb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004165
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07004166 // make sure reiserfs_add_jh sees the new current_jl before we
4167 // write out the tails
4168 smp_mb();
Linus Torvalds1da177e2005-04-16 15:20:36 -07004169
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07004170 /* tail conversion targets have to hit the disk before we end the
4171 * transaction. Otherwise a later transaction might repack the tail
4172 * before this transaction commits, leaving the data block unflushed and
4173 * clean, if we crash before the later transaction commits, the data block
4174 * is lost.
4175 */
4176 if (!list_empty(&jl->j_tail_bh_list)) {
Frederic Weisbecker8ebc4232009-04-07 04:19:49 +02004177 reiserfs_write_unlock(sb);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07004178 write_ordered_buffers(&journal->j_dirty_buffers_lock,
4179 journal, jl, &jl->j_tail_bh_list);
Frederic Weisbecker8ebc4232009-04-07 04:19:49 +02004180 reiserfs_write_lock(sb);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07004181 }
Eric Sesterhenn14a61442006-10-03 23:36:38 +02004182 BUG_ON(!list_empty(&jl->j_tail_bh_list));
Jeff Mahoney90415de2008-07-25 01:46:40 -07004183 mutex_unlock(&jl->j_commit_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004184
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07004185 /* honor the flush wishes from the caller, simple commits can
4186 ** be done outside the journal lock, they are done below
4187 **
4188 ** if we don't flush the commit list right now, we put it into
4189 ** the work queue so the people waiting on the async progress work
4190 ** queue don't wait for this proc to flush journal lists and such.
4191 */
4192 if (flush) {
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04004193 flush_commit_list(sb, jl, 1);
4194 flush_journal_list(sb, jl, 1);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07004195 } else if (!(jl->j_state & LIST_COMMIT_PENDING))
4196 queue_delayed_work(commit_wq, &journal->j_work, HZ / 10);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004197
Jeff Mahoney0222e652009-03-30 14:02:44 -04004198 /* if the next transaction has any chance of wrapping, flush
4199 ** transactions that might get overwritten. If any journal lists are very
4200 ** old flush them as well.
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07004201 */
4202 first_jl:
4203 list_for_each_safe(entry, safe, &journal->j_journal_list) {
4204 temp_jl = JOURNAL_LIST_ENTRY(entry);
4205 if (journal->j_start <= temp_jl->j_start) {
4206 if ((journal->j_start + journal->j_trans_max + 1) >=
4207 temp_jl->j_start) {
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04004208 flush_used_journal_lists(sb, temp_jl);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07004209 goto first_jl;
4210 } else if ((journal->j_start +
4211 journal->j_trans_max + 1) <
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04004212 SB_ONDISK_JOURNAL_SIZE(sb)) {
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07004213 /* if we don't cross into the next transaction and we don't
4214 * wrap, there is no way we can overlap any later transactions
4215 * break now
4216 */
4217 break;
4218 }
4219 } else if ((journal->j_start +
4220 journal->j_trans_max + 1) >
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04004221 SB_ONDISK_JOURNAL_SIZE(sb)) {
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07004222 if (((journal->j_start + journal->j_trans_max + 1) %
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04004223 SB_ONDISK_JOURNAL_SIZE(sb)) >=
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07004224 temp_jl->j_start) {
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04004225 flush_used_journal_lists(sb, temp_jl);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07004226 goto first_jl;
4227 } else {
4228 /* we don't overlap anything from out start to the end of the
4229 * log, and our wrapped portion doesn't overlap anything at
4230 * the start of the log. We can break
4231 */
4232 break;
4233 }
4234 }
4235 }
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04004236 flush_old_journal_lists(sb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004237
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07004238 journal->j_current_jl->j_list_bitmap =
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04004239 get_list_bitmap(sb, journal->j_current_jl);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004240
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07004241 if (!(journal->j_current_jl->j_list_bitmap)) {
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04004242 reiserfs_panic(sb, "journal-1996",
Jeff Mahoneyc3a9c212009-03-30 14:02:25 -04004243 "could not get a list bitmap");
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07004244 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004245
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07004246 atomic_set(&(journal->j_jlock), 0);
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04004247 unlock_journal(sb);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07004248 /* wake up any body waiting to join. */
4249 clear_bit(J_WRITERS_QUEUED, &journal->j_state);
4250 wake_up(&(journal->j_join_wait));
Linus Torvalds1da177e2005-04-16 15:20:36 -07004251
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07004252 if (!flush && wait_on_commit &&
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04004253 journal_list_still_alive(sb, commit_trans_id)) {
4254 flush_commit_list(sb, jl, 1);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07004255 }
4256 out:
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04004257 reiserfs_check_lock_depth(sb, "journal end2");
Linus Torvalds1da177e2005-04-16 15:20:36 -07004258
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07004259 memset(th, 0, sizeof(*th));
4260 /* Re-set th->t_super, so we can properly keep track of how many
4261 * persistent transactions there are. We need to do this so if this
4262 * call is part of a failed restart_transaction, we can free it later */
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04004263 th->t_super = sb;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004264
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07004265 return journal->j_errno;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004266}
4267
Jeff Mahoney32e8b102009-03-30 14:02:26 -04004268/* Send the file system read only and refuse new transactions */
4269void reiserfs_abort_journal(struct super_block *sb, int errno)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004270{
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07004271 struct reiserfs_journal *journal = SB_JOURNAL(sb);
4272 if (test_bit(J_ABORTED, &journal->j_state))
4273 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004274
Jeff Mahoney32e8b102009-03-30 14:02:26 -04004275 if (!journal->j_errno)
4276 journal->j_errno = errno;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004277
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07004278 sb->s_flags |= MS_RDONLY;
4279 set_bit(J_ABORTED, &journal->j_state);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004280
4281#ifdef CONFIG_REISERFS_CHECK
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07004282 dump_stack();
Linus Torvalds1da177e2005-04-16 15:20:36 -07004283#endif
4284}