blob: d23d6d7a45a64da7c853c3415154463a43dee778 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2** Write ahead logging implementation copyright Chris Mason 2000
3**
Jeff Mahoney0222e652009-03-30 14:02:44 -04004** The background commits make this code very interelated, 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>
40#include <linux/reiserfs_fs.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>
46#include <linux/smp_lock.h>
47#include <linux/buffer_head.h>
48#include <linux/workqueue.h>
49#include <linux/writeback.h>
50#include <linux/blkdev.h>
Andrew Morton3fcfab12006-10-19 23:28:16 -070051#include <linux/backing-dev.h>
Jeff Mahoney90415de2008-07-25 01:46:40 -070052#include <linux/uaccess.h>
53
54#include <asm/system.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070055
Linus Torvalds1da177e2005-04-16 15:20:36 -070056/* gets a struct reiserfs_journal_list * from a list head */
57#define JOURNAL_LIST_ENTRY(h) (list_entry((h), struct reiserfs_journal_list, \
58 j_list))
59#define JOURNAL_WORK_ENTRY(h) (list_entry((h), struct reiserfs_journal_list, \
60 j_working_list))
61
62/* the number of mounted filesystems. This is used to decide when to
63** start and kill the commit workqueue
64*/
65static int reiserfs_mounted_fs_count;
66
67static struct workqueue_struct *commit_wq;
68
Linus Torvaldsbd4c6252005-07-12 20:21:28 -070069#define JOURNAL_TRANS_HALF 1018 /* must be correct to keep the desc and commit
70 structs at 4k */
71#define BUFNR 64 /*read ahead */
Linus Torvalds1da177e2005-04-16 15:20:36 -070072
73/* cnode stat bits. Move these into reiserfs_fs.h */
74
75#define BLOCK_FREED 2 /* this block was freed, and can't be written. */
Linus Torvaldsbd4c6252005-07-12 20:21:28 -070076#define BLOCK_FREED_HOLDER 3 /* this block was freed during this transaction, and can't be written */
Linus Torvalds1da177e2005-04-16 15:20:36 -070077
78#define BLOCK_NEEDS_FLUSH 4 /* used in flush_journal_list */
79#define BLOCK_DIRTIED 5
80
Linus Torvalds1da177e2005-04-16 15:20:36 -070081/* journal list state bits */
82#define LIST_TOUCHED 1
83#define LIST_DIRTY 2
Linus Torvaldsbd4c6252005-07-12 20:21:28 -070084#define LIST_COMMIT_PENDING 4 /* someone will commit this list */
Linus Torvalds1da177e2005-04-16 15:20:36 -070085
86/* flags for do_journal_end */
87#define FLUSH_ALL 1 /* flush commit and real blocks */
88#define COMMIT_NOW 2 /* end and commit this transaction */
Linus Torvaldsbd4c6252005-07-12 20:21:28 -070089#define WAIT 4 /* wait for the log blocks to hit the disk */
Linus Torvalds1da177e2005-04-16 15:20:36 -070090
Linus Torvaldsbd4c6252005-07-12 20:21:28 -070091static int do_journal_end(struct reiserfs_transaction_handle *,
92 struct super_block *, unsigned long nblocks,
93 int flags);
94static int flush_journal_list(struct super_block *s,
95 struct reiserfs_journal_list *jl, int flushall);
96static int flush_commit_list(struct super_block *s,
97 struct reiserfs_journal_list *jl, int flushall);
98static int can_dirty(struct reiserfs_journal_cnode *cn);
99static int journal_join(struct reiserfs_transaction_handle *th,
Jeff Mahoneya9dd3642009-03-30 14:02:45 -0400100 struct super_block *sb, unsigned long nblocks);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700101static int release_journal_dev(struct super_block *super,
102 struct reiserfs_journal *journal);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700103static int dirty_one_transaction(struct super_block *s,
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700104 struct reiserfs_journal_list *jl);
David Howellsc4028952006-11-22 14:57:56 +0000105static void flush_async_commits(struct work_struct *work);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700106static void queue_log_writer(struct super_block *s);
107
108/* values for join in do_journal_begin_r */
109enum {
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700110 JBEGIN_REG = 0, /* regular journal begin */
111 JBEGIN_JOIN = 1, /* join the running transaction if at all possible */
112 JBEGIN_ABORT = 2, /* called from cleanup code, ignores aborted flag */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700113};
114
115static int do_journal_begin_r(struct reiserfs_transaction_handle *th,
Jeff Mahoneya9dd3642009-03-30 14:02:45 -0400116 struct super_block *sb,
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700117 unsigned long nblocks, int join);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700118
Jeff Mahoneya9dd3642009-03-30 14:02:45 -0400119static void init_journal_hash(struct super_block *sb)
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700120{
Jeff Mahoneya9dd3642009-03-30 14:02:45 -0400121 struct reiserfs_journal *journal = SB_JOURNAL(sb);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700122 memset(journal->j_hash_table, 0,
123 JOURNAL_HASH_SIZE * sizeof(struct reiserfs_journal_cnode *));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700124}
125
126/*
127** clears BH_Dirty and sticks the buffer on the clean list. Called because I can't allow refile_buffer to
128** make schedule happen after I've freed a block. Look at remove_from_transaction and journal_mark_freed for
129** more details.
130*/
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700131static int reiserfs_clean_and_file_buffer(struct buffer_head *bh)
132{
133 if (bh) {
134 clear_buffer_dirty(bh);
135 clear_buffer_journal_test(bh);
136 }
137 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700138}
139
140static void disable_barrier(struct super_block *s)
141{
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700142 REISERFS_SB(s)->s_mount_opt &= ~(1 << REISERFS_BARRIER_FLUSH);
143 printk("reiserfs: disabling flush barriers on %s\n",
144 reiserfs_bdevname(s));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700145}
146
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700147static struct reiserfs_bitmap_node *allocate_bitmap_node(struct super_block
Jeff Mahoneya9dd3642009-03-30 14:02:45 -0400148 *sb)
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700149{
150 struct reiserfs_bitmap_node *bn;
151 static int id;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700152
Pekka Enbergd739b422006-02-01 03:06:43 -0800153 bn = kmalloc(sizeof(struct reiserfs_bitmap_node), GFP_NOFS);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700154 if (!bn) {
155 return NULL;
156 }
Jeff Mahoneya9dd3642009-03-30 14:02:45 -0400157 bn->data = kzalloc(sb->s_blocksize, GFP_NOFS);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700158 if (!bn->data) {
Pekka Enbergd739b422006-02-01 03:06:43 -0800159 kfree(bn);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700160 return NULL;
161 }
162 bn->id = id++;
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700163 INIT_LIST_HEAD(&bn->list);
164 return bn;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700165}
166
Jeff Mahoneya9dd3642009-03-30 14:02:45 -0400167static struct reiserfs_bitmap_node *get_bitmap_node(struct super_block *sb)
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700168{
Jeff Mahoneya9dd3642009-03-30 14:02:45 -0400169 struct reiserfs_journal *journal = SB_JOURNAL(sb);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700170 struct reiserfs_bitmap_node *bn = NULL;
171 struct list_head *entry = journal->j_bitmap_nodes.next;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700172
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700173 journal->j_used_bitmap_nodes++;
174 repeat:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700175
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700176 if (entry != &journal->j_bitmap_nodes) {
177 bn = list_entry(entry, struct reiserfs_bitmap_node, list);
178 list_del(entry);
Jeff Mahoneya9dd3642009-03-30 14:02:45 -0400179 memset(bn->data, 0, sb->s_blocksize);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700180 journal->j_free_bitmap_nodes--;
181 return bn;
182 }
Jeff Mahoneya9dd3642009-03-30 14:02:45 -0400183 bn = allocate_bitmap_node(sb);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700184 if (!bn) {
185 yield();
186 goto repeat;
187 }
188 return bn;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700189}
Jeff Mahoneya9dd3642009-03-30 14:02:45 -0400190static inline void free_bitmap_node(struct super_block *sb,
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700191 struct reiserfs_bitmap_node *bn)
192{
Jeff Mahoneya9dd3642009-03-30 14:02:45 -0400193 struct reiserfs_journal *journal = SB_JOURNAL(sb);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700194 journal->j_used_bitmap_nodes--;
195 if (journal->j_free_bitmap_nodes > REISERFS_MAX_BITMAP_NODES) {
Pekka Enbergd739b422006-02-01 03:06:43 -0800196 kfree(bn->data);
197 kfree(bn);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700198 } else {
199 list_add(&bn->list, &journal->j_bitmap_nodes);
200 journal->j_free_bitmap_nodes++;
201 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700202}
203
Jeff Mahoneya9dd3642009-03-30 14:02:45 -0400204static void allocate_bitmap_nodes(struct super_block *sb)
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700205{
206 int i;
Jeff Mahoneya9dd3642009-03-30 14:02:45 -0400207 struct reiserfs_journal *journal = SB_JOURNAL(sb);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700208 struct reiserfs_bitmap_node *bn = NULL;
209 for (i = 0; i < REISERFS_MIN_BITMAP_NODES; i++) {
Jeff Mahoneya9dd3642009-03-30 14:02:45 -0400210 bn = allocate_bitmap_node(sb);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700211 if (bn) {
212 list_add(&bn->list, &journal->j_bitmap_nodes);
213 journal->j_free_bitmap_nodes++;
214 } else {
Jeff Mahoney0222e652009-03-30 14:02:44 -0400215 break; /* this is ok, we'll try again when more are needed */
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700216 }
217 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700218}
219
Jeff Mahoneya9dd3642009-03-30 14:02:45 -0400220static int set_bit_in_list_bitmap(struct super_block *sb,
Jeff Mahoney3ee16672007-10-18 23:39:25 -0700221 b_blocknr_t block,
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700222 struct reiserfs_list_bitmap *jb)
223{
Jeff Mahoneya9dd3642009-03-30 14:02:45 -0400224 unsigned int bmap_nr = block / (sb->s_blocksize << 3);
225 unsigned int bit_nr = block % (sb->s_blocksize << 3);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700226
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700227 if (!jb->bitmaps[bmap_nr]) {
Jeff Mahoneya9dd3642009-03-30 14:02:45 -0400228 jb->bitmaps[bmap_nr] = get_bitmap_node(sb);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700229 }
230 set_bit(bit_nr, (unsigned long *)jb->bitmaps[bmap_nr]->data);
231 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700232}
233
Jeff Mahoneya9dd3642009-03-30 14:02:45 -0400234static void cleanup_bitmap_list(struct super_block *sb,
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700235 struct reiserfs_list_bitmap *jb)
236{
237 int i;
238 if (jb->bitmaps == NULL)
239 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700240
Jeff Mahoneya9dd3642009-03-30 14:02:45 -0400241 for (i = 0; i < reiserfs_bmap_count(sb); i++) {
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700242 if (jb->bitmaps[i]) {
Jeff Mahoneya9dd3642009-03-30 14:02:45 -0400243 free_bitmap_node(sb, jb->bitmaps[i]);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700244 jb->bitmaps[i] = NULL;
245 }
246 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700247}
248
249/*
250** only call this on FS unmount.
251*/
Jeff Mahoneya9dd3642009-03-30 14:02:45 -0400252static int free_list_bitmaps(struct super_block *sb,
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700253 struct reiserfs_list_bitmap *jb_array)
254{
255 int i;
256 struct reiserfs_list_bitmap *jb;
257 for (i = 0; i < JOURNAL_NUM_BITMAPS; i++) {
258 jb = jb_array + i;
259 jb->journal_list = NULL;
Jeff Mahoneya9dd3642009-03-30 14:02:45 -0400260 cleanup_bitmap_list(sb, jb);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700261 vfree(jb->bitmaps);
262 jb->bitmaps = NULL;
263 }
264 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700265}
266
Jeff Mahoneya9dd3642009-03-30 14:02:45 -0400267static int free_bitmap_nodes(struct super_block *sb)
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700268{
Jeff Mahoneya9dd3642009-03-30 14:02:45 -0400269 struct reiserfs_journal *journal = SB_JOURNAL(sb);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700270 struct list_head *next = journal->j_bitmap_nodes.next;
271 struct reiserfs_bitmap_node *bn;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700272
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700273 while (next != &journal->j_bitmap_nodes) {
274 bn = list_entry(next, struct reiserfs_bitmap_node, list);
275 list_del(next);
Pekka Enbergd739b422006-02-01 03:06:43 -0800276 kfree(bn->data);
277 kfree(bn);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700278 next = journal->j_bitmap_nodes.next;
279 journal->j_free_bitmap_nodes--;
280 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700281
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700282 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700283}
284
285/*
Jeff Mahoney0222e652009-03-30 14:02:44 -0400286** get memory for JOURNAL_NUM_BITMAPS worth of bitmaps.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700287** jb_array is the array to be filled in.
288*/
Jeff Mahoneya9dd3642009-03-30 14:02:45 -0400289int reiserfs_allocate_list_bitmaps(struct super_block *sb,
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700290 struct reiserfs_list_bitmap *jb_array,
Jeff Mahoney3ee16672007-10-18 23:39:25 -0700291 unsigned int bmap_nr)
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700292{
293 int i;
294 int failed = 0;
295 struct reiserfs_list_bitmap *jb;
296 int mem = bmap_nr * sizeof(struct reiserfs_bitmap_node *);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700297
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700298 for (i = 0; i < JOURNAL_NUM_BITMAPS; i++) {
299 jb = jb_array + i;
300 jb->journal_list = NULL;
301 jb->bitmaps = vmalloc(mem);
302 if (!jb->bitmaps) {
Jeff Mahoneya9dd3642009-03-30 14:02:45 -0400303 reiserfs_warning(sb, "clm-2000", "unable to "
Jeff Mahoney45b03d52009-03-30 14:02:21 -0400304 "allocate bitmaps for journal lists");
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700305 failed = 1;
306 break;
307 }
308 memset(jb->bitmaps, 0, mem);
309 }
310 if (failed) {
Jeff Mahoneya9dd3642009-03-30 14:02:45 -0400311 free_list_bitmaps(sb, jb_array);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700312 return -1;
313 }
314 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700315}
316
317/*
Jeff Mahoney0222e652009-03-30 14:02:44 -0400318** find an available list bitmap. If you can't find one, flush a commit list
Linus Torvalds1da177e2005-04-16 15:20:36 -0700319** and try again
320*/
Jeff Mahoneya9dd3642009-03-30 14:02:45 -0400321static struct reiserfs_list_bitmap *get_list_bitmap(struct super_block *sb,
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700322 struct reiserfs_journal_list
323 *jl)
324{
325 int i, j;
Jeff Mahoneya9dd3642009-03-30 14:02:45 -0400326 struct reiserfs_journal *journal = SB_JOURNAL(sb);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700327 struct reiserfs_list_bitmap *jb = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700328
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700329 for (j = 0; j < (JOURNAL_NUM_BITMAPS * 3); j++) {
330 i = journal->j_list_bitmap_index;
331 journal->j_list_bitmap_index = (i + 1) % JOURNAL_NUM_BITMAPS;
332 jb = journal->j_list_bitmap + i;
333 if (journal->j_list_bitmap[i].journal_list) {
Jeff Mahoneya9dd3642009-03-30 14:02:45 -0400334 flush_commit_list(sb,
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700335 journal->j_list_bitmap[i].
336 journal_list, 1);
337 if (!journal->j_list_bitmap[i].journal_list) {
338 break;
339 }
340 } else {
341 break;
342 }
343 }
344 if (jb->journal_list) { /* double check to make sure if flushed correctly */
345 return NULL;
346 }
347 jb->journal_list = jl;
348 return jb;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700349}
350
Jeff Mahoney0222e652009-03-30 14:02:44 -0400351/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700352** allocates a new chunk of X nodes, and links them all together as a list.
353** Uses the cnode->next and cnode->prev pointers
354** returns NULL on failure
355*/
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700356static struct reiserfs_journal_cnode *allocate_cnodes(int num_cnodes)
357{
358 struct reiserfs_journal_cnode *head;
359 int i;
360 if (num_cnodes <= 0) {
361 return NULL;
362 }
363 head = vmalloc(num_cnodes * sizeof(struct reiserfs_journal_cnode));
364 if (!head) {
365 return NULL;
366 }
367 memset(head, 0, num_cnodes * sizeof(struct reiserfs_journal_cnode));
368 head[0].prev = NULL;
369 head[0].next = head + 1;
370 for (i = 1; i < num_cnodes; i++) {
371 head[i].prev = head + (i - 1);
372 head[i].next = head + (i + 1); /* if last one, overwrite it after the if */
373 }
374 head[num_cnodes - 1].next = NULL;
375 return head;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700376}
377
378/*
Jeff Mahoney0222e652009-03-30 14:02:44 -0400379** pulls a cnode off the free list, or returns NULL on failure
Linus Torvalds1da177e2005-04-16 15:20:36 -0700380*/
Jeff Mahoneya9dd3642009-03-30 14:02:45 -0400381static struct reiserfs_journal_cnode *get_cnode(struct super_block *sb)
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700382{
383 struct reiserfs_journal_cnode *cn;
Jeff Mahoneya9dd3642009-03-30 14:02:45 -0400384 struct reiserfs_journal *journal = SB_JOURNAL(sb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700385
Jeff Mahoneya9dd3642009-03-30 14:02:45 -0400386 reiserfs_check_lock_depth(sb, "get_cnode");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700387
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700388 if (journal->j_cnode_free <= 0) {
389 return NULL;
390 }
391 journal->j_cnode_used++;
392 journal->j_cnode_free--;
393 cn = journal->j_cnode_free_list;
394 if (!cn) {
395 return cn;
396 }
397 if (cn->next) {
398 cn->next->prev = NULL;
399 }
400 journal->j_cnode_free_list = cn->next;
401 memset(cn, 0, sizeof(struct reiserfs_journal_cnode));
402 return cn;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700403}
404
405/*
Jeff Mahoney0222e652009-03-30 14:02:44 -0400406** returns a cnode to the free list
Linus Torvalds1da177e2005-04-16 15:20:36 -0700407*/
Jeff Mahoneya9dd3642009-03-30 14:02:45 -0400408static void free_cnode(struct super_block *sb,
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700409 struct reiserfs_journal_cnode *cn)
410{
Jeff Mahoneya9dd3642009-03-30 14:02:45 -0400411 struct reiserfs_journal *journal = SB_JOURNAL(sb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700412
Jeff Mahoneya9dd3642009-03-30 14:02:45 -0400413 reiserfs_check_lock_depth(sb, "free_cnode");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700414
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700415 journal->j_cnode_used--;
416 journal->j_cnode_free++;
417 /* memset(cn, 0, sizeof(struct reiserfs_journal_cnode)) ; */
418 cn->next = journal->j_cnode_free_list;
419 if (journal->j_cnode_free_list) {
420 journal->j_cnode_free_list->prev = cn;
421 }
422 cn->prev = NULL; /* not needed with the memset, but I might kill the memset, and forget to do this */
423 journal->j_cnode_free_list = cn;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700424}
425
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700426static void clear_prepared_bits(struct buffer_head *bh)
427{
428 clear_buffer_journal_prepared(bh);
429 clear_buffer_journal_restore_dirty(bh);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700430}
431
Linus Torvalds1da177e2005-04-16 15:20:36 -0700432/* return a cnode with same dev, block number and size in table, or null if not found */
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700433static inline struct reiserfs_journal_cnode *get_journal_hash_dev(struct
434 super_block
435 *sb,
436 struct
437 reiserfs_journal_cnode
438 **table,
439 long bl)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700440{
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700441 struct reiserfs_journal_cnode *cn;
442 cn = journal_hash(table, sb, bl);
443 while (cn) {
444 if (cn->blocknr == bl && cn->sb == sb)
445 return cn;
446 cn = cn->hnext;
447 }
448 return (struct reiserfs_journal_cnode *)0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700449}
450
451/*
452** this actually means 'can this block be reallocated yet?'. If you set search_all, a block can only be allocated
453** if it is not in the current transaction, was not freed by the current transaction, and has no chance of ever
454** being overwritten by a replay after crashing.
455**
456** If you don't set search_all, a block can only be allocated if it is not in the current transaction. Since deleting
457** a block removes it from the current transaction, this case should never happen. If you don't set search_all, make
458** sure you never write the block without logging it.
459**
460** next_zero_bit is a suggestion about the next block to try for find_forward.
461** when bl is rejected because it is set in a journal list bitmap, we search
462** for the next zero bit in the bitmap that rejected bl. Then, we return that
463** through next_zero_bit for find_forward to try.
464**
465** Just because we return something in next_zero_bit does not mean we won't
466** reject it on the next call to reiserfs_in_journal
467**
468*/
Jeff Mahoneya9dd3642009-03-30 14:02:45 -0400469int reiserfs_in_journal(struct super_block *sb,
Jeff Mahoney3ee16672007-10-18 23:39:25 -0700470 unsigned int bmap_nr, int bit_nr, int search_all,
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700471 b_blocknr_t * next_zero_bit)
472{
Jeff Mahoneya9dd3642009-03-30 14:02:45 -0400473 struct reiserfs_journal *journal = SB_JOURNAL(sb);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700474 struct reiserfs_journal_cnode *cn;
475 struct reiserfs_list_bitmap *jb;
476 int i;
477 unsigned long bl;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700478
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700479 *next_zero_bit = 0; /* always start this at zero. */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700480
Jeff Mahoneya9dd3642009-03-30 14:02:45 -0400481 PROC_INFO_INC(sb, journal.in_journal);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700482 /* If we aren't doing a search_all, this is a metablock, and it will be logged before use.
483 ** if we crash before the transaction that freed it commits, this transaction won't
484 ** have committed either, and the block will never be written
485 */
486 if (search_all) {
487 for (i = 0; i < JOURNAL_NUM_BITMAPS; i++) {
Jeff Mahoneya9dd3642009-03-30 14:02:45 -0400488 PROC_INFO_INC(sb, journal.in_journal_bitmap);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700489 jb = journal->j_list_bitmap + i;
490 if (jb->journal_list && jb->bitmaps[bmap_nr] &&
491 test_bit(bit_nr,
492 (unsigned long *)jb->bitmaps[bmap_nr]->
493 data)) {
494 *next_zero_bit =
495 find_next_zero_bit((unsigned long *)
496 (jb->bitmaps[bmap_nr]->
497 data),
Jeff Mahoneya9dd3642009-03-30 14:02:45 -0400498 sb->s_blocksize << 3,
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700499 bit_nr + 1);
500 return 1;
501 }
502 }
503 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700504
Jeff Mahoneya9dd3642009-03-30 14:02:45 -0400505 bl = bmap_nr * (sb->s_blocksize << 3) + bit_nr;
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700506 /* is it in any old transactions? */
507 if (search_all
508 && (cn =
Jeff Mahoneya9dd3642009-03-30 14:02:45 -0400509 get_journal_hash_dev(sb, journal->j_list_hash_table, bl))) {
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700510 return 1;
511 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700512
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700513 /* is it in the current transaction. This should never happen */
Jeff Mahoneya9dd3642009-03-30 14:02:45 -0400514 if ((cn = get_journal_hash_dev(sb, journal->j_hash_table, bl))) {
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700515 BUG();
516 return 1;
517 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700518
Jeff Mahoneya9dd3642009-03-30 14:02:45 -0400519 PROC_INFO_INC(sb, journal.in_journal_reusable);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700520 /* safe for reuse */
521 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700522}
523
524/* insert cn into table
525*/
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700526static inline void insert_journal_hash(struct reiserfs_journal_cnode **table,
527 struct reiserfs_journal_cnode *cn)
528{
529 struct reiserfs_journal_cnode *cn_orig;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700530
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700531 cn_orig = journal_hash(table, cn->sb, cn->blocknr);
532 cn->hnext = cn_orig;
533 cn->hprev = NULL;
534 if (cn_orig) {
535 cn_orig->hprev = cn;
536 }
537 journal_hash(table, cn->sb, cn->blocknr) = cn;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700538}
539
540/* lock the current transaction */
Jeff Mahoneya9dd3642009-03-30 14:02:45 -0400541static inline void lock_journal(struct super_block *sb)
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700542{
Jeff Mahoneya9dd3642009-03-30 14:02:45 -0400543 PROC_INFO_INC(sb, journal.lock_journal);
Frederic Weisbecker8ebc4232009-04-07 04:19:49 +0200544
545 reiserfs_mutex_lock_safe(&SB_JOURNAL(sb)->j_mutex, sb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700546}
547
548/* unlock the current transaction */
Jeff Mahoneya9dd3642009-03-30 14:02:45 -0400549static inline void unlock_journal(struct super_block *sb)
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700550{
Jeff Mahoneya9dd3642009-03-30 14:02:45 -0400551 mutex_unlock(&SB_JOURNAL(sb)->j_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700552}
553
554static inline void get_journal_list(struct reiserfs_journal_list *jl)
555{
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700556 jl->j_refcount++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700557}
558
559static inline void put_journal_list(struct super_block *s,
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700560 struct reiserfs_journal_list *jl)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700561{
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700562 if (jl->j_refcount < 1) {
Jeff Mahoneyc3a9c212009-03-30 14:02:25 -0400563 reiserfs_panic(s, "journal-2", "trans id %u, refcount at %d",
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700564 jl->j_trans_id, jl->j_refcount);
565 }
566 if (--jl->j_refcount == 0)
Pekka Enbergd739b422006-02-01 03:06:43 -0800567 kfree(jl);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700568}
569
570/*
571** this used to be much more involved, and I'm keeping it just in case things get ugly again.
572** it gets called by flush_commit_list, and cleans up any data stored about blocks freed during a
573** transaction.
574*/
Jeff Mahoneya9dd3642009-03-30 14:02:45 -0400575static void cleanup_freed_for_journal_list(struct super_block *sb,
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700576 struct reiserfs_journal_list *jl)
577{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700578
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700579 struct reiserfs_list_bitmap *jb = jl->j_list_bitmap;
580 if (jb) {
Jeff Mahoneya9dd3642009-03-30 14:02:45 -0400581 cleanup_bitmap_list(sb, jb);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700582 }
583 jl->j_list_bitmap->journal_list = NULL;
584 jl->j_list_bitmap = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700585}
586
587static int journal_list_still_alive(struct super_block *s,
Jeff Mahoney600ed412009-03-30 14:02:17 -0400588 unsigned int trans_id)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700589{
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700590 struct reiserfs_journal *journal = SB_JOURNAL(s);
591 struct list_head *entry = &journal->j_journal_list;
592 struct reiserfs_journal_list *jl;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700593
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700594 if (!list_empty(entry)) {
595 jl = JOURNAL_LIST_ENTRY(entry->next);
596 if (jl->j_trans_id <= trans_id) {
597 return 1;
598 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700599 }
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700600 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700601}
602
Chris Mason398c95b2007-10-16 23:29:44 -0700603/*
604 * If page->mapping was null, we failed to truncate this page for
605 * some reason. Most likely because it was truncated after being
606 * logged via data=journal.
607 *
608 * This does a check to see if the buffer belongs to one of these
609 * lost pages before doing the final put_bh. If page->mapping was
610 * null, it tries to free buffers on the page, which should make the
611 * final page_cache_release drop the page from the lru.
612 */
613static void release_buffer_page(struct buffer_head *bh)
614{
615 struct page *page = bh->b_page;
Nick Piggin529ae9a2008-08-02 12:01:03 +0200616 if (!page->mapping && trylock_page(page)) {
Chris Mason398c95b2007-10-16 23:29:44 -0700617 page_cache_get(page);
618 put_bh(bh);
619 if (!page->mapping)
620 try_to_free_buffers(page);
621 unlock_page(page);
622 page_cache_release(page);
623 } else {
624 put_bh(bh);
625 }
626}
627
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700628static void reiserfs_end_buffer_io_sync(struct buffer_head *bh, int uptodate)
629{
630 char b[BDEVNAME_SIZE];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700631
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700632 if (buffer_journaled(bh)) {
Jeff Mahoney45b03d52009-03-30 14:02:21 -0400633 reiserfs_warning(NULL, "clm-2084",
634 "pinned buffer %lu:%s sent to disk",
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700635 bh->b_blocknr, bdevname(bh->b_bdev, b));
636 }
637 if (uptodate)
638 set_buffer_uptodate(bh);
639 else
640 clear_buffer_uptodate(bh);
Chris Mason398c95b2007-10-16 23:29:44 -0700641
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700642 unlock_buffer(bh);
Chris Mason398c95b2007-10-16 23:29:44 -0700643 release_buffer_page(bh);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700644}
645
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700646static void reiserfs_end_ordered_io(struct buffer_head *bh, int uptodate)
647{
648 if (uptodate)
649 set_buffer_uptodate(bh);
650 else
651 clear_buffer_uptodate(bh);
652 unlock_buffer(bh);
653 put_bh(bh);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700654}
655
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700656static void submit_logged_buffer(struct buffer_head *bh)
657{
658 get_bh(bh);
659 bh->b_end_io = reiserfs_end_buffer_io_sync;
660 clear_buffer_journal_new(bh);
661 clear_buffer_dirty(bh);
662 if (!test_clear_buffer_journal_test(bh))
663 BUG();
664 if (!buffer_uptodate(bh))
665 BUG();
666 submit_bh(WRITE, bh);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700667}
668
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700669static void submit_ordered_buffer(struct buffer_head *bh)
670{
671 get_bh(bh);
672 bh->b_end_io = reiserfs_end_ordered_io;
673 clear_buffer_dirty(bh);
674 if (!buffer_uptodate(bh))
675 BUG();
676 submit_bh(WRITE, bh);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700677}
678
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700679static int submit_barrier_buffer(struct buffer_head *bh)
680{
681 get_bh(bh);
682 bh->b_end_io = reiserfs_end_ordered_io;
683 clear_buffer_dirty(bh);
684 if (!buffer_uptodate(bh))
685 BUG();
686 return submit_bh(WRITE_BARRIER, bh);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700687}
688
689static void check_barrier_completion(struct super_block *s,
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700690 struct buffer_head *bh)
691{
692 if (buffer_eopnotsupp(bh)) {
693 clear_buffer_eopnotsupp(bh);
694 disable_barrier(s);
695 set_buffer_uptodate(bh);
696 set_buffer_dirty(bh);
Frederic Weisbecker8ebc4232009-04-07 04:19:49 +0200697 reiserfs_write_unlock(s);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700698 sync_dirty_buffer(bh);
Frederic Weisbecker8ebc4232009-04-07 04:19:49 +0200699 reiserfs_write_lock(s);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700700 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700701}
702
703#define CHUNK_SIZE 32
704struct buffer_chunk {
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700705 struct buffer_head *bh[CHUNK_SIZE];
706 int nr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700707};
708
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700709static void write_chunk(struct buffer_chunk *chunk)
710{
711 int i;
712 get_fs_excl();
713 for (i = 0; i < chunk->nr; i++) {
714 submit_logged_buffer(chunk->bh[i]);
715 }
716 chunk->nr = 0;
717 put_fs_excl();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700718}
719
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700720static void write_ordered_chunk(struct buffer_chunk *chunk)
721{
722 int i;
723 get_fs_excl();
724 for (i = 0; i < chunk->nr; i++) {
725 submit_ordered_buffer(chunk->bh[i]);
726 }
727 chunk->nr = 0;
728 put_fs_excl();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700729}
730
731static int add_to_chunk(struct buffer_chunk *chunk, struct buffer_head *bh,
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700732 spinlock_t * lock, void (fn) (struct buffer_chunk *))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700733{
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700734 int ret = 0;
Eric Sesterhenn14a61442006-10-03 23:36:38 +0200735 BUG_ON(chunk->nr >= CHUNK_SIZE);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700736 chunk->bh[chunk->nr++] = bh;
737 if (chunk->nr >= CHUNK_SIZE) {
738 ret = 1;
739 if (lock)
740 spin_unlock(lock);
741 fn(chunk);
742 if (lock)
743 spin_lock(lock);
744 }
745 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700746}
747
Linus Torvalds1da177e2005-04-16 15:20:36 -0700748static atomic_t nr_reiserfs_jh = ATOMIC_INIT(0);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700749static struct reiserfs_jh *alloc_jh(void)
750{
751 struct reiserfs_jh *jh;
752 while (1) {
753 jh = kmalloc(sizeof(*jh), GFP_NOFS);
754 if (jh) {
755 atomic_inc(&nr_reiserfs_jh);
756 return jh;
757 }
758 yield();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700759 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700760}
761
762/*
763 * we want to free the jh when the buffer has been written
764 * and waited on
765 */
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700766void reiserfs_free_jh(struct buffer_head *bh)
767{
768 struct reiserfs_jh *jh;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700769
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700770 jh = bh->b_private;
771 if (jh) {
772 bh->b_private = NULL;
773 jh->bh = NULL;
774 list_del_init(&jh->list);
775 kfree(jh);
776 if (atomic_read(&nr_reiserfs_jh) <= 0)
777 BUG();
778 atomic_dec(&nr_reiserfs_jh);
779 put_bh(bh);
780 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700781}
782
783static inline int __add_jh(struct reiserfs_journal *j, struct buffer_head *bh,
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700784 int tail)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700785{
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700786 struct reiserfs_jh *jh;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700787
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700788 if (bh->b_private) {
789 spin_lock(&j->j_dirty_buffers_lock);
790 if (!bh->b_private) {
791 spin_unlock(&j->j_dirty_buffers_lock);
792 goto no_jh;
793 }
794 jh = bh->b_private;
795 list_del_init(&jh->list);
796 } else {
797 no_jh:
798 get_bh(bh);
799 jh = alloc_jh();
800 spin_lock(&j->j_dirty_buffers_lock);
801 /* buffer must be locked for __add_jh, should be able to have
802 * two adds at the same time
803 */
Eric Sesterhenn14a61442006-10-03 23:36:38 +0200804 BUG_ON(bh->b_private);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700805 jh->bh = bh;
806 bh->b_private = jh;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700807 }
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700808 jh->jl = j->j_current_jl;
809 if (tail)
810 list_add_tail(&jh->list, &jh->jl->j_tail_bh_list);
811 else {
812 list_add_tail(&jh->list, &jh->jl->j_bh_list);
813 }
814 spin_unlock(&j->j_dirty_buffers_lock);
815 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700816}
817
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700818int reiserfs_add_tail_list(struct inode *inode, struct buffer_head *bh)
819{
820 return __add_jh(SB_JOURNAL(inode->i_sb), bh, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700821}
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700822int reiserfs_add_ordered_list(struct inode *inode, struct buffer_head *bh)
823{
824 return __add_jh(SB_JOURNAL(inode->i_sb), bh, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700825}
826
827#define JH_ENTRY(l) list_entry((l), struct reiserfs_jh, list)
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700828static int write_ordered_buffers(spinlock_t * lock,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700829 struct reiserfs_journal *j,
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700830 struct reiserfs_journal_list *jl,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700831 struct list_head *list)
832{
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700833 struct buffer_head *bh;
834 struct reiserfs_jh *jh;
835 int ret = j->j_errno;
836 struct buffer_chunk chunk;
837 struct list_head tmp;
838 INIT_LIST_HEAD(&tmp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700839
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700840 chunk.nr = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700841 spin_lock(lock);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700842 while (!list_empty(list)) {
843 jh = JH_ENTRY(list->next);
844 bh = jh->bh;
845 get_bh(bh);
Nick Pigginca5de402008-08-02 12:02:13 +0200846 if (!trylock_buffer(bh)) {
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700847 if (!buffer_dirty(bh)) {
Akinobu Mitaf1166292006-06-26 00:24:46 -0700848 list_move(&jh->list, &tmp);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700849 goto loop_next;
850 }
851 spin_unlock(lock);
852 if (chunk.nr)
853 write_ordered_chunk(&chunk);
854 wait_on_buffer(bh);
855 cond_resched();
856 spin_lock(lock);
857 goto loop_next;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700858 }
Chris Mason3d4492f2006-02-01 03:06:49 -0800859 /* in theory, dirty non-uptodate buffers should never get here,
860 * but the upper layer io error paths still have a few quirks.
861 * Handle them here as gracefully as we can
862 */
863 if (!buffer_uptodate(bh) && buffer_dirty(bh)) {
864 clear_buffer_dirty(bh);
865 ret = -EIO;
866 }
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700867 if (buffer_dirty(bh)) {
Akinobu Mitaf1166292006-06-26 00:24:46 -0700868 list_move(&jh->list, &tmp);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700869 add_to_chunk(&chunk, bh, lock, write_ordered_chunk);
870 } else {
871 reiserfs_free_jh(bh);
872 unlock_buffer(bh);
873 }
874 loop_next:
875 put_bh(bh);
876 cond_resched_lock(lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700877 }
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700878 if (chunk.nr) {
879 spin_unlock(lock);
880 write_ordered_chunk(&chunk);
881 spin_lock(lock);
882 }
883 while (!list_empty(&tmp)) {
884 jh = JH_ENTRY(tmp.prev);
885 bh = jh->bh;
886 get_bh(bh);
887 reiserfs_free_jh(bh);
888
889 if (buffer_locked(bh)) {
890 spin_unlock(lock);
891 wait_on_buffer(bh);
892 spin_lock(lock);
893 }
894 if (!buffer_uptodate(bh)) {
895 ret = -EIO;
896 }
Chris Masond62b1b82006-02-01 03:06:47 -0800897 /* ugly interaction with invalidatepage here.
898 * reiserfs_invalidate_page will pin any buffer that has a valid
899 * journal head from an older transaction. If someone else sets
900 * our buffer dirty after we write it in the first loop, and
901 * then someone truncates the page away, nobody will ever write
902 * the buffer. We're safe if we write the page one last time
903 * after freeing the journal header.
904 */
905 if (buffer_dirty(bh) && unlikely(bh->b_page->mapping == NULL)) {
906 spin_unlock(lock);
907 ll_rw_block(WRITE, 1, &bh);
908 spin_lock(lock);
909 }
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700910 put_bh(bh);
911 cond_resched_lock(lock);
912 }
913 spin_unlock(lock);
914 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700915}
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700916
917static int flush_older_commits(struct super_block *s,
918 struct reiserfs_journal_list *jl)
919{
920 struct reiserfs_journal *journal = SB_JOURNAL(s);
921 struct reiserfs_journal_list *other_jl;
922 struct reiserfs_journal_list *first_jl;
923 struct list_head *entry;
Jeff Mahoney600ed412009-03-30 14:02:17 -0400924 unsigned int trans_id = jl->j_trans_id;
925 unsigned int other_trans_id;
926 unsigned int first_trans_id;
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700927
928 find_first:
929 /*
930 * first we walk backwards to find the oldest uncommitted transation
931 */
932 first_jl = jl;
933 entry = jl->j_list.prev;
934 while (1) {
935 other_jl = JOURNAL_LIST_ENTRY(entry);
936 if (entry == &journal->j_journal_list ||
937 atomic_read(&other_jl->j_older_commits_done))
938 break;
939
940 first_jl = other_jl;
941 entry = other_jl->j_list.prev;
942 }
943
944 /* if we didn't find any older uncommitted transactions, return now */
945 if (first_jl == jl) {
946 return 0;
947 }
948
949 first_trans_id = first_jl->j_trans_id;
950
951 entry = &first_jl->j_list;
952 while (1) {
953 other_jl = JOURNAL_LIST_ENTRY(entry);
954 other_trans_id = other_jl->j_trans_id;
955
956 if (other_trans_id < trans_id) {
957 if (atomic_read(&other_jl->j_commit_left) != 0) {
958 flush_commit_list(s, other_jl, 0);
959
960 /* list we were called with is gone, return */
961 if (!journal_list_still_alive(s, trans_id))
962 return 1;
963
964 /* the one we just flushed is gone, this means all
965 * older lists are also gone, so first_jl is no longer
966 * valid either. Go back to the beginning.
967 */
968 if (!journal_list_still_alive
969 (s, other_trans_id)) {
970 goto find_first;
971 }
972 }
973 entry = entry->next;
974 if (entry == &journal->j_journal_list)
975 return 0;
976 } else {
977 return 0;
978 }
979 }
980 return 0;
981}
Adrian Bunkdeba0f42007-10-16 23:26:03 -0700982
983static int reiserfs_async_progress_wait(struct super_block *s)
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700984{
985 DEFINE_WAIT(wait);
986 struct reiserfs_journal *j = SB_JOURNAL(s);
Frederic Weisbecker8ebc4232009-04-07 04:19:49 +0200987
988 if (atomic_read(&j->j_async_throttle)) {
989 reiserfs_write_unlock(s);
Jens Axboe8aa7e842009-07-09 14:52:32 +0200990 congestion_wait(BLK_RW_ASYNC, HZ / 10);
Frederic Weisbecker8ebc4232009-04-07 04:19:49 +0200991 reiserfs_write_lock(s);
992 }
993
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700994 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700995}
996
997/*
998** if this journal list still has commit blocks unflushed, send them to disk.
999**
1000** log areas must be flushed in order (transaction 2 can't commit before transaction 1)
1001** Before the commit block can by written, every other log block must be safely on disk
1002**
1003*/
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001004static int flush_commit_list(struct super_block *s,
1005 struct reiserfs_journal_list *jl, int flushall)
1006{
1007 int i;
Jeff Mahoney3ee16672007-10-18 23:39:25 -07001008 b_blocknr_t bn;
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001009 struct buffer_head *tbh = NULL;
Jeff Mahoney600ed412009-03-30 14:02:17 -04001010 unsigned int trans_id = jl->j_trans_id;
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001011 struct reiserfs_journal *journal = SB_JOURNAL(s);
1012 int barrier = 0;
1013 int retval = 0;
Chris Masone0e851c2006-02-01 03:06:49 -08001014 int write_len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001015
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001016 reiserfs_check_lock_depth(s, "flush_commit_list");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001017
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001018 if (atomic_read(&jl->j_older_commits_done)) {
1019 return 0;
1020 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001021
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001022 get_fs_excl();
Jens Axboe22e2c502005-06-27 10:55:12 +02001023
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001024 /* before we can put our commit blocks on disk, we have to make sure everyone older than
1025 ** us is on disk too
1026 */
1027 BUG_ON(jl->j_len <= 0);
1028 BUG_ON(trans_id == journal->j_trans_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001029
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001030 get_journal_list(jl);
1031 if (flushall) {
1032 if (flush_older_commits(s, jl) == 1) {
1033 /* list disappeared during flush_older_commits. return */
1034 goto put_jl;
1035 }
1036 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001037
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001038 /* make sure nobody is trying to flush this one at the same time */
Frederic Weisbecker8ebc4232009-04-07 04:19:49 +02001039 reiserfs_mutex_lock_safe(&jl->j_commit_mutex, s);
1040
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001041 if (!journal_list_still_alive(s, trans_id)) {
Jeff Mahoney90415de2008-07-25 01:46:40 -07001042 mutex_unlock(&jl->j_commit_mutex);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001043 goto put_jl;
1044 }
1045 BUG_ON(jl->j_trans_id == 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001046
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001047 /* this commit is done, exit */
1048 if (atomic_read(&(jl->j_commit_left)) <= 0) {
1049 if (flushall) {
1050 atomic_set(&(jl->j_older_commits_done), 1);
1051 }
Jeff Mahoney90415de2008-07-25 01:46:40 -07001052 mutex_unlock(&jl->j_commit_mutex);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001053 goto put_jl;
1054 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001055
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001056 if (!list_empty(&jl->j_bh_list)) {
Chris Mason3d4492f2006-02-01 03:06:49 -08001057 int ret;
Frederic Weisbecker8ebc4232009-04-07 04:19:49 +02001058
1059 /*
1060 * We might sleep in numerous places inside
1061 * write_ordered_buffers. Relax the write lock.
1062 */
1063 reiserfs_write_unlock(s);
Chris Mason3d4492f2006-02-01 03:06:49 -08001064 ret = write_ordered_buffers(&journal->j_dirty_buffers_lock,
1065 journal, jl, &jl->j_bh_list);
1066 if (ret < 0 && retval == 0)
1067 retval = ret;
Frederic Weisbecker8ebc4232009-04-07 04:19:49 +02001068 reiserfs_write_lock(s);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001069 }
1070 BUG_ON(!list_empty(&jl->j_bh_list));
1071 /*
1072 * for the description block and all the log blocks, submit any buffers
Chris Masone0e851c2006-02-01 03:06:49 -08001073 * that haven't already reached the disk. Try to write at least 256
1074 * log blocks. later on, we will only wait on blocks that correspond
1075 * to this transaction, but while we're unplugging we might as well
1076 * get a chunk of data on there.
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001077 */
1078 atomic_inc(&journal->j_async_throttle);
Chris Masone0e851c2006-02-01 03:06:49 -08001079 write_len = jl->j_len + 1;
1080 if (write_len < 256)
1081 write_len = 256;
1082 for (i = 0 ; i < write_len ; i++) {
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001083 bn = SB_ONDISK_JOURNAL_1st_BLOCK(s) + (jl->j_start + i) %
1084 SB_ONDISK_JOURNAL_SIZE(s);
1085 tbh = journal_find_get_block(s, bn);
Chris Masone0e851c2006-02-01 03:06:49 -08001086 if (tbh) {
Frederic Weisbecker6e3647a2009-05-01 02:27:39 +02001087 if (buffer_dirty(tbh)) {
1088 reiserfs_write_unlock(s);
1089 ll_rw_block(WRITE, 1, &tbh);
1090 reiserfs_write_lock(s);
1091 }
Chris Masone0e851c2006-02-01 03:06:49 -08001092 put_bh(tbh) ;
1093 }
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001094 }
1095 atomic_dec(&journal->j_async_throttle);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001096
Jeff Mahoney5d5e81562005-12-14 14:38:36 -05001097 /* We're skipping the commit if there's an error */
1098 if (retval || reiserfs_is_journal_aborted(journal))
1099 barrier = 0;
1100
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001101 /* wait on everything written so far before writing the commit
1102 * if we are in barrier mode, send the commit down now
1103 */
1104 barrier = reiserfs_barrier_flush(s);
1105 if (barrier) {
1106 int ret;
1107 lock_buffer(jl->j_commit_bh);
1108 ret = submit_barrier_buffer(jl->j_commit_bh);
1109 if (ret == -EOPNOTSUPP) {
1110 set_buffer_uptodate(jl->j_commit_bh);
1111 disable_barrier(s);
1112 barrier = 0;
1113 }
1114 }
1115 for (i = 0; i < (jl->j_len + 1); i++) {
1116 bn = SB_ONDISK_JOURNAL_1st_BLOCK(s) +
1117 (jl->j_start + i) % SB_ONDISK_JOURNAL_SIZE(s);
1118 tbh = journal_find_get_block(s, bn);
Frederic Weisbecker8ebc4232009-04-07 04:19:49 +02001119
1120 reiserfs_write_unlock(s);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001121 wait_on_buffer(tbh);
Frederic Weisbecker8ebc4232009-04-07 04:19:49 +02001122 reiserfs_write_lock(s);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001123 // since we're using ll_rw_blk above, it might have skipped over
1124 // a locked buffer. Double check here
1125 //
Frederic Weisbecker8ebc4232009-04-07 04:19:49 +02001126 /* redundant, sync_dirty_buffer() checks */
1127 if (buffer_dirty(tbh)) {
1128 reiserfs_write_unlock(s);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001129 sync_dirty_buffer(tbh);
Frederic Weisbecker8ebc4232009-04-07 04:19:49 +02001130 reiserfs_write_lock(s);
1131 }
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001132 if (unlikely(!buffer_uptodate(tbh))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001133#ifdef CONFIG_REISERFS_CHECK
Jeff Mahoney45b03d52009-03-30 14:02:21 -04001134 reiserfs_warning(s, "journal-601",
1135 "buffer write failed");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001136#endif
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001137 retval = -EIO;
1138 }
1139 put_bh(tbh); /* once for journal_find_get_block */
1140 put_bh(tbh); /* once due to original getblk in do_journal_end */
1141 atomic_dec(&(jl->j_commit_left));
1142 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001143
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001144 BUG_ON(atomic_read(&(jl->j_commit_left)) != 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001145
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001146 if (!barrier) {
Jeff Mahoney5d5e81562005-12-14 14:38:36 -05001147 /* If there was a write error in the journal - we can't commit
1148 * this transaction - it will be invalid and, if successful,
Robert P. J. Daybeb7dd82007-05-09 07:14:03 +02001149 * will just end up propagating the write error out to
Jeff Mahoney5d5e81562005-12-14 14:38:36 -05001150 * the file system. */
1151 if (likely(!retval && !reiserfs_is_journal_aborted (journal))) {
1152 if (buffer_dirty(jl->j_commit_bh))
1153 BUG();
1154 mark_buffer_dirty(jl->j_commit_bh) ;
Frederic Weisbecker8ebc4232009-04-07 04:19:49 +02001155 reiserfs_write_unlock(s);
Jeff Mahoney5d5e81562005-12-14 14:38:36 -05001156 sync_dirty_buffer(jl->j_commit_bh) ;
Frederic Weisbecker8ebc4232009-04-07 04:19:49 +02001157 reiserfs_write_lock(s);
Jeff Mahoney5d5e81562005-12-14 14:38:36 -05001158 }
Frederic Weisbecker8ebc4232009-04-07 04:19:49 +02001159 } else {
1160 reiserfs_write_unlock(s);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001161 wait_on_buffer(jl->j_commit_bh);
Frederic Weisbecker8ebc4232009-04-07 04:19:49 +02001162 reiserfs_write_lock(s);
1163 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001164
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001165 check_barrier_completion(s, jl->j_commit_bh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001166
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001167 /* If there was a write error in the journal - we can't commit this
1168 * transaction - it will be invalid and, if successful, will just end
Robert P. J. Daybeb7dd82007-05-09 07:14:03 +02001169 * up propagating the write error out to the filesystem. */
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001170 if (unlikely(!buffer_uptodate(jl->j_commit_bh))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001171#ifdef CONFIG_REISERFS_CHECK
Jeff Mahoney45b03d52009-03-30 14:02:21 -04001172 reiserfs_warning(s, "journal-615", "buffer write failed");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001173#endif
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001174 retval = -EIO;
1175 }
1176 bforget(jl->j_commit_bh);
1177 if (journal->j_last_commit_id != 0 &&
1178 (jl->j_trans_id - journal->j_last_commit_id) != 1) {
Jeff Mahoney45b03d52009-03-30 14:02:21 -04001179 reiserfs_warning(s, "clm-2200", "last commit %lu, current %lu",
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001180 journal->j_last_commit_id, jl->j_trans_id);
1181 }
1182 journal->j_last_commit_id = jl->j_trans_id;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001183
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001184 /* now, every commit block is on the disk. It is safe to allow blocks freed during this transaction to be reallocated */
1185 cleanup_freed_for_journal_list(s, jl);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001186
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001187 retval = retval ? retval : journal->j_errno;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001188
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001189 /* mark the metadata dirty */
1190 if (!retval)
1191 dirty_one_transaction(s, jl);
1192 atomic_dec(&(jl->j_commit_left));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001193
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001194 if (flushall) {
1195 atomic_set(&(jl->j_older_commits_done), 1);
1196 }
Jeff Mahoney90415de2008-07-25 01:46:40 -07001197 mutex_unlock(&jl->j_commit_mutex);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001198 put_jl:
1199 put_journal_list(s, jl);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001200
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001201 if (retval)
1202 reiserfs_abort(s, retval, "Journal write error in %s",
Harvey Harrisonfbe54982008-04-28 02:16:22 -07001203 __func__);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001204 put_fs_excl();
1205 return retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001206}
1207
1208/*
Jeff Mahoney0222e652009-03-30 14:02:44 -04001209** flush_journal_list frequently needs to find a newer transaction for a given block. This does that, or
1210** returns NULL if it can't find anything
Linus Torvalds1da177e2005-04-16 15:20:36 -07001211*/
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001212static struct reiserfs_journal_list *find_newer_jl_for_cn(struct
1213 reiserfs_journal_cnode
1214 *cn)
1215{
1216 struct super_block *sb = cn->sb;
1217 b_blocknr_t blocknr = cn->blocknr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001218
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001219 cn = cn->hprev;
1220 while (cn) {
1221 if (cn->sb == sb && cn->blocknr == blocknr && cn->jlist) {
1222 return cn->jlist;
1223 }
1224 cn = cn->hprev;
1225 }
1226 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001227}
1228
Chris Masona3172022006-09-29 01:59:56 -07001229static int newer_jl_done(struct reiserfs_journal_cnode *cn)
1230{
1231 struct super_block *sb = cn->sb;
1232 b_blocknr_t blocknr = cn->blocknr;
1233
1234 cn = cn->hprev;
1235 while (cn) {
1236 if (cn->sb == sb && cn->blocknr == blocknr && cn->jlist &&
1237 atomic_read(&cn->jlist->j_commit_left) != 0)
1238 return 0;
1239 cn = cn->hprev;
1240 }
1241 return 1;
1242}
1243
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001244static void remove_journal_hash(struct super_block *,
1245 struct reiserfs_journal_cnode **,
1246 struct reiserfs_journal_list *, unsigned long,
1247 int);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001248
1249/*
1250** once all the real blocks have been flushed, it is safe to remove them from the
1251** journal list for this transaction. Aside from freeing the cnode, this also allows the
1252** block to be reallocated for data blocks if it had been deleted.
1253*/
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04001254static void remove_all_from_journal_list(struct super_block *sb,
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001255 struct reiserfs_journal_list *jl,
1256 int debug)
1257{
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04001258 struct reiserfs_journal *journal = SB_JOURNAL(sb);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001259 struct reiserfs_journal_cnode *cn, *last;
1260 cn = jl->j_realblock;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001261
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001262 /* which is better, to lock once around the whole loop, or
1263 ** to lock for each call to remove_journal_hash?
1264 */
1265 while (cn) {
1266 if (cn->blocknr != 0) {
1267 if (debug) {
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04001268 reiserfs_warning(sb, "reiserfs-2201",
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001269 "block %u, bh is %d, state %ld",
1270 cn->blocknr, cn->bh ? 1 : 0,
1271 cn->state);
1272 }
1273 cn->state = 0;
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04001274 remove_journal_hash(sb, journal->j_list_hash_table,
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001275 jl, cn->blocknr, 1);
1276 }
1277 last = cn;
1278 cn = cn->next;
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04001279 free_cnode(sb, last);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001280 }
1281 jl->j_realblock = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001282}
1283
1284/*
1285** if this timestamp is greater than the timestamp we wrote last to the header block, write it to the header block.
1286** once this is done, I can safely say the log area for this transaction won't ever be replayed, and I can start
1287** releasing blocks in this transaction for reuse as data blocks.
1288** called by flush_journal_list, before it calls remove_all_from_journal_list
1289**
1290*/
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04001291static int _update_journal_header_block(struct super_block *sb,
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001292 unsigned long offset,
Jeff Mahoney600ed412009-03-30 14:02:17 -04001293 unsigned int trans_id)
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001294{
1295 struct reiserfs_journal_header *jh;
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04001296 struct reiserfs_journal *journal = SB_JOURNAL(sb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001297
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001298 if (reiserfs_is_journal_aborted(journal))
1299 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001300
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001301 if (trans_id >= journal->j_last_flush_trans_id) {
1302 if (buffer_locked((journal->j_header_bh))) {
Frederic Weisbecker8ebc4232009-04-07 04:19:49 +02001303 reiserfs_write_unlock(sb);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001304 wait_on_buffer((journal->j_header_bh));
Frederic Weisbecker8ebc4232009-04-07 04:19:49 +02001305 reiserfs_write_lock(sb);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001306 if (unlikely(!buffer_uptodate(journal->j_header_bh))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001307#ifdef CONFIG_REISERFS_CHECK
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04001308 reiserfs_warning(sb, "journal-699",
Jeff Mahoney45b03d52009-03-30 14:02:21 -04001309 "buffer write failed");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001310#endif
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001311 return -EIO;
1312 }
1313 }
1314 journal->j_last_flush_trans_id = trans_id;
1315 journal->j_first_unflushed_offset = offset;
1316 jh = (struct reiserfs_journal_header *)(journal->j_header_bh->
1317 b_data);
1318 jh->j_last_flush_trans_id = cpu_to_le32(trans_id);
1319 jh->j_first_unflushed_offset = cpu_to_le32(offset);
1320 jh->j_mount_id = cpu_to_le32(journal->j_mount_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001321
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04001322 if (reiserfs_barrier_flush(sb)) {
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001323 int ret;
1324 lock_buffer(journal->j_header_bh);
1325 ret = submit_barrier_buffer(journal->j_header_bh);
1326 if (ret == -EOPNOTSUPP) {
1327 set_buffer_uptodate(journal->j_header_bh);
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04001328 disable_barrier(sb);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001329 goto sync;
1330 }
Frederic Weisbecker8ebc4232009-04-07 04:19:49 +02001331 reiserfs_write_unlock(sb);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001332 wait_on_buffer(journal->j_header_bh);
Frederic Weisbecker8ebc4232009-04-07 04:19:49 +02001333 reiserfs_write_lock(sb);
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04001334 check_barrier_completion(sb, journal->j_header_bh);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001335 } else {
1336 sync:
1337 set_buffer_dirty(journal->j_header_bh);
Frederic Weisbecker8ebc4232009-04-07 04:19:49 +02001338 reiserfs_write_unlock(sb);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001339 sync_dirty_buffer(journal->j_header_bh);
Frederic Weisbecker8ebc4232009-04-07 04:19:49 +02001340 reiserfs_write_lock(sb);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001341 }
1342 if (!buffer_uptodate(journal->j_header_bh)) {
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04001343 reiserfs_warning(sb, "journal-837",
Jeff Mahoney45b03d52009-03-30 14:02:21 -04001344 "IO error during journal replay");
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001345 return -EIO;
1346 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001347 }
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001348 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001349}
1350
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04001351static int update_journal_header_block(struct super_block *sb,
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001352 unsigned long offset,
Jeff Mahoney600ed412009-03-30 14:02:17 -04001353 unsigned int trans_id)
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001354{
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04001355 return _update_journal_header_block(sb, offset, trans_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001356}
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001357
Jeff Mahoney0222e652009-03-30 14:02:44 -04001358/*
1359** flush any and all journal lists older than you are
Linus Torvalds1da177e2005-04-16 15:20:36 -07001360** can only be called from flush_journal_list
1361*/
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04001362static int flush_older_journal_lists(struct super_block *sb,
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001363 struct reiserfs_journal_list *jl)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001364{
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001365 struct list_head *entry;
1366 struct reiserfs_journal_list *other_jl;
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04001367 struct reiserfs_journal *journal = SB_JOURNAL(sb);
Jeff Mahoney600ed412009-03-30 14:02:17 -04001368 unsigned int trans_id = jl->j_trans_id;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001369
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001370 /* we know we are the only ones flushing things, no extra race
1371 * protection is required.
1372 */
1373 restart:
1374 entry = journal->j_journal_list.next;
1375 /* Did we wrap? */
1376 if (entry == &journal->j_journal_list)
1377 return 0;
1378 other_jl = JOURNAL_LIST_ENTRY(entry);
1379 if (other_jl->j_trans_id < trans_id) {
1380 BUG_ON(other_jl->j_refcount <= 0);
1381 /* do not flush all */
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04001382 flush_journal_list(sb, other_jl, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001383
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001384 /* other_jl is now deleted from the list */
1385 goto restart;
1386 }
1387 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001388}
1389
1390static void del_from_work_list(struct super_block *s,
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001391 struct reiserfs_journal_list *jl)
1392{
1393 struct reiserfs_journal *journal = SB_JOURNAL(s);
1394 if (!list_empty(&jl->j_working_list)) {
1395 list_del_init(&jl->j_working_list);
1396 journal->j_num_work_lists--;
1397 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001398}
1399
1400/* flush a journal list, both commit and real blocks
1401**
1402** always set flushall to 1, unless you are calling from inside
1403** flush_journal_list
1404**
Jeff Mahoney0222e652009-03-30 14:02:44 -04001405** IMPORTANT. This can only be called while there are no journal writers,
1406** and the journal is locked. That means it can only be called from
Linus Torvalds1da177e2005-04-16 15:20:36 -07001407** do_journal_end, or by journal_release
1408*/
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001409static int flush_journal_list(struct super_block *s,
1410 struct reiserfs_journal_list *jl, int flushall)
1411{
1412 struct reiserfs_journal_list *pjl;
1413 struct reiserfs_journal_cnode *cn, *last;
1414 int count;
1415 int was_jwait = 0;
1416 int was_dirty = 0;
1417 struct buffer_head *saved_bh;
1418 unsigned long j_len_saved = jl->j_len;
1419 struct reiserfs_journal *journal = SB_JOURNAL(s);
1420 int err = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001421
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001422 BUG_ON(j_len_saved <= 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001423
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001424 if (atomic_read(&journal->j_wcount) != 0) {
Jeff Mahoney45b03d52009-03-30 14:02:21 -04001425 reiserfs_warning(s, "clm-2048", "called with wcount %d",
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001426 atomic_read(&journal->j_wcount));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001427 }
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001428 BUG_ON(jl->j_trans_id == 0);
1429
1430 /* if flushall == 0, the lock is already held */
1431 if (flushall) {
Frederic Weisbecker8ebc4232009-04-07 04:19:49 +02001432 reiserfs_mutex_lock_safe(&journal->j_flush_mutex, s);
Jeff Mahoneyafe70252008-07-25 01:46:39 -07001433 } else if (mutex_trylock(&journal->j_flush_mutex)) {
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001434 BUG();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001435 }
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001436
1437 count = 0;
1438 if (j_len_saved > journal->j_trans_max) {
Jeff Mahoneyc3a9c212009-03-30 14:02:25 -04001439 reiserfs_panic(s, "journal-715", "length is %lu, trans id %lu",
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001440 j_len_saved, jl->j_trans_id);
1441 return 0;
1442 }
1443
1444 get_fs_excl();
1445
1446 /* if all the work is already done, get out of here */
1447 if (atomic_read(&(jl->j_nonzerolen)) <= 0 &&
1448 atomic_read(&(jl->j_commit_left)) <= 0) {
1449 goto flush_older_and_return;
1450 }
1451
Jeff Mahoney0222e652009-03-30 14:02:44 -04001452 /* start by putting the commit list on disk. This will also flush
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001453 ** the commit lists of any olders transactions
1454 */
1455 flush_commit_list(s, jl, 1);
1456
1457 if (!(jl->j_state & LIST_DIRTY)
1458 && !reiserfs_is_journal_aborted(journal))
1459 BUG();
1460
1461 /* are we done now? */
1462 if (atomic_read(&(jl->j_nonzerolen)) <= 0 &&
1463 atomic_read(&(jl->j_commit_left)) <= 0) {
1464 goto flush_older_and_return;
1465 }
1466
Jeff Mahoney0222e652009-03-30 14:02:44 -04001467 /* loop through each cnode, see if we need to write it,
1468 ** or wait on a more recent transaction, or just ignore it
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001469 */
1470 if (atomic_read(&(journal->j_wcount)) != 0) {
Jeff Mahoneyc3a9c212009-03-30 14:02:25 -04001471 reiserfs_panic(s, "journal-844", "journal list is flushing, "
1472 "wcount is not 0");
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001473 }
1474 cn = jl->j_realblock;
1475 while (cn) {
1476 was_jwait = 0;
1477 was_dirty = 0;
1478 saved_bh = NULL;
1479 /* blocknr of 0 is no longer in the hash, ignore it */
1480 if (cn->blocknr == 0) {
1481 goto free_cnode;
1482 }
1483
1484 /* This transaction failed commit. Don't write out to the disk */
1485 if (!(jl->j_state & LIST_DIRTY))
1486 goto free_cnode;
1487
1488 pjl = find_newer_jl_for_cn(cn);
1489 /* the order is important here. We check pjl to make sure we
1490 ** don't clear BH_JDirty_wait if we aren't the one writing this
1491 ** block to disk
1492 */
1493 if (!pjl && cn->bh) {
1494 saved_bh = cn->bh;
1495
Jeff Mahoney0222e652009-03-30 14:02:44 -04001496 /* we do this to make sure nobody releases the buffer while
1497 ** we are working with it
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001498 */
1499 get_bh(saved_bh);
1500
1501 if (buffer_journal_dirty(saved_bh)) {
1502 BUG_ON(!can_dirty(cn));
1503 was_jwait = 1;
1504 was_dirty = 1;
1505 } else if (can_dirty(cn)) {
1506 /* everything with !pjl && jwait should be writable */
1507 BUG();
1508 }
1509 }
1510
1511 /* if someone has this block in a newer transaction, just make
Matt LaPlante0779bf22006-11-30 05:24:39 +01001512 ** sure they are committed, and don't try writing it to disk
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001513 */
1514 if (pjl) {
1515 if (atomic_read(&pjl->j_commit_left))
1516 flush_commit_list(s, pjl, 1);
1517 goto free_cnode;
1518 }
1519
Jeff Mahoney0222e652009-03-30 14:02:44 -04001520 /* bh == NULL when the block got to disk on its own, OR,
1521 ** the block got freed in a future transaction
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001522 */
1523 if (saved_bh == NULL) {
1524 goto free_cnode;
1525 }
1526
1527 /* this should never happen. kupdate_one_transaction has this list
1528 ** locked while it works, so we should never see a buffer here that
1529 ** is not marked JDirty_wait
1530 */
1531 if ((!was_jwait) && !buffer_locked(saved_bh)) {
Jeff Mahoney45b03d52009-03-30 14:02:21 -04001532 reiserfs_warning(s, "journal-813",
1533 "BAD! buffer %llu %cdirty %cjwait, "
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001534 "not in a newer tranasction",
1535 (unsigned long long)saved_bh->
1536 b_blocknr, was_dirty ? ' ' : '!',
1537 was_jwait ? ' ' : '!');
1538 }
1539 if (was_dirty) {
1540 /* we inc again because saved_bh gets decremented at free_cnode */
1541 get_bh(saved_bh);
1542 set_bit(BLOCK_NEEDS_FLUSH, &cn->state);
1543 lock_buffer(saved_bh);
1544 BUG_ON(cn->blocknr != saved_bh->b_blocknr);
1545 if (buffer_dirty(saved_bh))
1546 submit_logged_buffer(saved_bh);
1547 else
1548 unlock_buffer(saved_bh);
1549 count++;
1550 } else {
Jeff Mahoney45b03d52009-03-30 14:02:21 -04001551 reiserfs_warning(s, "clm-2082",
1552 "Unable to flush buffer %llu in %s",
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001553 (unsigned long long)saved_bh->
Harvey Harrisonfbe54982008-04-28 02:16:22 -07001554 b_blocknr, __func__);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001555 }
1556 free_cnode:
1557 last = cn;
1558 cn = cn->next;
1559 if (saved_bh) {
1560 /* we incremented this to keep others from taking the buffer head away */
1561 put_bh(saved_bh);
1562 if (atomic_read(&(saved_bh->b_count)) < 0) {
Jeff Mahoney45b03d52009-03-30 14:02:21 -04001563 reiserfs_warning(s, "journal-945",
1564 "saved_bh->b_count < 0");
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001565 }
1566 }
1567 }
1568 if (count > 0) {
1569 cn = jl->j_realblock;
1570 while (cn) {
1571 if (test_bit(BLOCK_NEEDS_FLUSH, &cn->state)) {
1572 if (!cn->bh) {
Jeff Mahoneyc3a9c212009-03-30 14:02:25 -04001573 reiserfs_panic(s, "journal-1011",
1574 "cn->bh is NULL");
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001575 }
Frederic Weisbecker8ebc4232009-04-07 04:19:49 +02001576
1577 reiserfs_write_unlock(s);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001578 wait_on_buffer(cn->bh);
Frederic Weisbecker8ebc4232009-04-07 04:19:49 +02001579 reiserfs_write_lock(s);
1580
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001581 if (!cn->bh) {
Jeff Mahoneyc3a9c212009-03-30 14:02:25 -04001582 reiserfs_panic(s, "journal-1012",
1583 "cn->bh is NULL");
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001584 }
1585 if (unlikely(!buffer_uptodate(cn->bh))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001586#ifdef CONFIG_REISERFS_CHECK
Jeff Mahoney45b03d52009-03-30 14:02:21 -04001587 reiserfs_warning(s, "journal-949",
1588 "buffer write failed");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001589#endif
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001590 err = -EIO;
1591 }
1592 /* note, we must clear the JDirty_wait bit after the up to date
1593 ** check, otherwise we race against our flushpage routine
1594 */
1595 BUG_ON(!test_clear_buffer_journal_dirty
1596 (cn->bh));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001597
Chris Mason398c95b2007-10-16 23:29:44 -07001598 /* drop one ref for us */
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001599 put_bh(cn->bh);
Chris Mason398c95b2007-10-16 23:29:44 -07001600 /* drop one ref for journal_mark_dirty */
1601 release_buffer_page(cn->bh);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001602 }
1603 cn = cn->next;
1604 }
1605 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001606
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001607 if (err)
1608 reiserfs_abort(s, -EIO,
1609 "Write error while pushing transaction to disk in %s",
Harvey Harrisonfbe54982008-04-28 02:16:22 -07001610 __func__);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001611 flush_older_and_return:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001612
Jeff Mahoney0222e652009-03-30 14:02:44 -04001613 /* before we can update the journal header block, we _must_ flush all
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001614 ** real blocks from all older transactions to disk. This is because
1615 ** once the header block is updated, this transaction will not be
1616 ** replayed after a crash
1617 */
1618 if (flushall) {
1619 flush_older_journal_lists(s, jl);
1620 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001621
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001622 err = journal->j_errno;
Jeff Mahoney0222e652009-03-30 14:02:44 -04001623 /* before we can remove everything from the hash tables for this
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001624 ** transaction, we must make sure it can never be replayed
1625 **
1626 ** since we are only called from do_journal_end, we know for sure there
1627 ** are no allocations going on while we are flushing journal lists. So,
1628 ** we only need to update the journal header block for the last list
1629 ** being flushed
1630 */
1631 if (!err && flushall) {
1632 err =
1633 update_journal_header_block(s,
1634 (jl->j_start + jl->j_len +
1635 2) % SB_ONDISK_JOURNAL_SIZE(s),
1636 jl->j_trans_id);
1637 if (err)
1638 reiserfs_abort(s, -EIO,
1639 "Write error while updating journal header in %s",
Harvey Harrisonfbe54982008-04-28 02:16:22 -07001640 __func__);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001641 }
1642 remove_all_from_journal_list(s, jl, 0);
1643 list_del_init(&jl->j_list);
1644 journal->j_num_lists--;
1645 del_from_work_list(s, jl);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001646
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001647 if (journal->j_last_flush_id != 0 &&
1648 (jl->j_trans_id - journal->j_last_flush_id) != 1) {
Jeff Mahoney45b03d52009-03-30 14:02:21 -04001649 reiserfs_warning(s, "clm-2201", "last flush %lu, current %lu",
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001650 journal->j_last_flush_id, jl->j_trans_id);
1651 }
1652 journal->j_last_flush_id = jl->j_trans_id;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001653
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001654 /* not strictly required since we are freeing the list, but it should
1655 * help find code using dead lists later on
1656 */
1657 jl->j_len = 0;
1658 atomic_set(&(jl->j_nonzerolen), 0);
1659 jl->j_start = 0;
1660 jl->j_realblock = NULL;
1661 jl->j_commit_bh = NULL;
1662 jl->j_trans_id = 0;
1663 jl->j_state = 0;
1664 put_journal_list(s, jl);
1665 if (flushall)
Jeff Mahoneyafe70252008-07-25 01:46:39 -07001666 mutex_unlock(&journal->j_flush_mutex);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001667 put_fs_excl();
1668 return err;
1669}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001670
Chris Masona3172022006-09-29 01:59:56 -07001671static int test_transaction(struct super_block *s,
1672 struct reiserfs_journal_list *jl)
1673{
1674 struct reiserfs_journal_cnode *cn;
1675
1676 if (jl->j_len == 0 || atomic_read(&jl->j_nonzerolen) == 0)
1677 return 1;
1678
1679 cn = jl->j_realblock;
1680 while (cn) {
1681 /* if the blocknr == 0, this has been cleared from the hash,
1682 ** skip it
1683 */
1684 if (cn->blocknr == 0) {
1685 goto next;
1686 }
1687 if (cn->bh && !newer_jl_done(cn))
1688 return 0;
1689 next:
1690 cn = cn->next;
1691 cond_resched();
1692 }
1693 return 0;
1694}
1695
Linus Torvalds1da177e2005-04-16 15:20:36 -07001696static int write_one_transaction(struct super_block *s,
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001697 struct reiserfs_journal_list *jl,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001698 struct buffer_chunk *chunk)
1699{
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001700 struct reiserfs_journal_cnode *cn;
1701 int ret = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001702
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001703 jl->j_state |= LIST_TOUCHED;
1704 del_from_work_list(s, jl);
1705 if (jl->j_len == 0 || atomic_read(&jl->j_nonzerolen) == 0) {
1706 return 0;
1707 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001708
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001709 cn = jl->j_realblock;
1710 while (cn) {
1711 /* if the blocknr == 0, this has been cleared from the hash,
1712 ** skip it
1713 */
1714 if (cn->blocknr == 0) {
1715 goto next;
1716 }
1717 if (cn->bh && can_dirty(cn) && buffer_dirty(cn->bh)) {
1718 struct buffer_head *tmp_bh;
1719 /* we can race against journal_mark_freed when we try
1720 * to lock_buffer(cn->bh), so we have to inc the buffer
1721 * count, and recheck things after locking
1722 */
1723 tmp_bh = cn->bh;
1724 get_bh(tmp_bh);
1725 lock_buffer(tmp_bh);
1726 if (cn->bh && can_dirty(cn) && buffer_dirty(tmp_bh)) {
1727 if (!buffer_journal_dirty(tmp_bh) ||
1728 buffer_journal_prepared(tmp_bh))
1729 BUG();
1730 add_to_chunk(chunk, tmp_bh, NULL, write_chunk);
1731 ret++;
1732 } else {
1733 /* note, cn->bh might be null now */
1734 unlock_buffer(tmp_bh);
1735 }
1736 put_bh(tmp_bh);
1737 }
1738 next:
1739 cn = cn->next;
1740 cond_resched();
1741 }
1742 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001743}
1744
1745/* used by flush_commit_list */
1746static int dirty_one_transaction(struct super_block *s,
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001747 struct reiserfs_journal_list *jl)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001748{
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001749 struct reiserfs_journal_cnode *cn;
1750 struct reiserfs_journal_list *pjl;
1751 int ret = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001752
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001753 jl->j_state |= LIST_DIRTY;
1754 cn = jl->j_realblock;
1755 while (cn) {
1756 /* look for a more recent transaction that logged this
1757 ** buffer. Only the most recent transaction with a buffer in
1758 ** it is allowed to send that buffer to disk
1759 */
1760 pjl = find_newer_jl_for_cn(cn);
1761 if (!pjl && cn->blocknr && cn->bh
1762 && buffer_journal_dirty(cn->bh)) {
1763 BUG_ON(!can_dirty(cn));
1764 /* if the buffer is prepared, it will either be logged
1765 * or restored. If restored, we need to make sure
1766 * it actually gets marked dirty
1767 */
1768 clear_buffer_journal_new(cn->bh);
1769 if (buffer_journal_prepared(cn->bh)) {
1770 set_buffer_journal_restore_dirty(cn->bh);
1771 } else {
1772 set_buffer_journal_test(cn->bh);
1773 mark_buffer_dirty(cn->bh);
1774 }
1775 }
1776 cn = cn->next;
1777 }
1778 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001779}
1780
1781static int kupdate_transactions(struct super_block *s,
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001782 struct reiserfs_journal_list *jl,
1783 struct reiserfs_journal_list **next_jl,
Jeff Mahoney600ed412009-03-30 14:02:17 -04001784 unsigned int *next_trans_id,
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001785 int num_blocks, int num_trans)
1786{
1787 int ret = 0;
1788 int written = 0;
1789 int transactions_flushed = 0;
Jeff Mahoney600ed412009-03-30 14:02:17 -04001790 unsigned int orig_trans_id = jl->j_trans_id;
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001791 struct buffer_chunk chunk;
1792 struct list_head *entry;
1793 struct reiserfs_journal *journal = SB_JOURNAL(s);
1794 chunk.nr = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001795
Frederic Weisbeckera412f9e2009-04-14 00:10:35 +02001796 reiserfs_mutex_lock_safe(&journal->j_flush_mutex, s);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001797 if (!journal_list_still_alive(s, orig_trans_id)) {
1798 goto done;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001799 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001800
Jeff Mahoneyafe70252008-07-25 01:46:39 -07001801 /* we've got j_flush_mutex held, nobody is going to delete any
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001802 * of these lists out from underneath us
1803 */
1804 while ((num_trans && transactions_flushed < num_trans) ||
1805 (!num_trans && written < num_blocks)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001806
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001807 if (jl->j_len == 0 || (jl->j_state & LIST_TOUCHED) ||
1808 atomic_read(&jl->j_commit_left)
1809 || !(jl->j_state & LIST_DIRTY)) {
1810 del_from_work_list(s, jl);
1811 break;
1812 }
1813 ret = write_one_transaction(s, jl, &chunk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001814
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001815 if (ret < 0)
1816 goto done;
1817 transactions_flushed++;
1818 written += ret;
1819 entry = jl->j_list.next;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001820
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001821 /* did we wrap? */
1822 if (entry == &journal->j_journal_list) {
1823 break;
1824 }
1825 jl = JOURNAL_LIST_ENTRY(entry);
1826
1827 /* don't bother with older transactions */
1828 if (jl->j_trans_id <= orig_trans_id)
1829 break;
1830 }
1831 if (chunk.nr) {
1832 write_chunk(&chunk);
1833 }
1834
1835 done:
Jeff Mahoneyafe70252008-07-25 01:46:39 -07001836 mutex_unlock(&journal->j_flush_mutex);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001837 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001838}
1839
1840/* for o_sync and fsync heavy applications, they tend to use
1841** all the journa list slots with tiny transactions. These
1842** trigger lots and lots of calls to update the header block, which
1843** adds seeks and slows things down.
1844**
1845** This function tries to clear out a large chunk of the journal lists
1846** at once, which makes everything faster since only the newest journal
1847** list updates the header block
1848*/
1849static int flush_used_journal_lists(struct super_block *s,
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001850 struct reiserfs_journal_list *jl)
1851{
1852 unsigned long len = 0;
1853 unsigned long cur_len;
1854 int ret;
1855 int i;
1856 int limit = 256;
1857 struct reiserfs_journal_list *tjl;
1858 struct reiserfs_journal_list *flush_jl;
Jeff Mahoney600ed412009-03-30 14:02:17 -04001859 unsigned int trans_id;
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001860 struct reiserfs_journal *journal = SB_JOURNAL(s);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001861
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001862 flush_jl = tjl = jl;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001863
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001864 /* in data logging mode, try harder to flush a lot of blocks */
1865 if (reiserfs_data_log(s))
1866 limit = 1024;
1867 /* flush for 256 transactions or limit blocks, whichever comes first */
1868 for (i = 0; i < 256 && len < limit; i++) {
1869 if (atomic_read(&tjl->j_commit_left) ||
1870 tjl->j_trans_id < jl->j_trans_id) {
1871 break;
1872 }
1873 cur_len = atomic_read(&tjl->j_nonzerolen);
1874 if (cur_len > 0) {
1875 tjl->j_state &= ~LIST_TOUCHED;
1876 }
1877 len += cur_len;
1878 flush_jl = tjl;
1879 if (tjl->j_list.next == &journal->j_journal_list)
1880 break;
1881 tjl = JOURNAL_LIST_ENTRY(tjl->j_list.next);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001882 }
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001883 /* try to find a group of blocks we can flush across all the
1884 ** transactions, but only bother if we've actually spanned
1885 ** across multiple lists
1886 */
1887 if (flush_jl != jl) {
1888 ret = kupdate_transactions(s, jl, &tjl, &trans_id, len, i);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001889 }
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001890 flush_journal_list(s, flush_jl, 1);
1891 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001892}
1893
1894/*
1895** removes any nodes in table with name block and dev as bh.
1896** only touchs the hnext and hprev pointers.
1897*/
1898void remove_journal_hash(struct super_block *sb,
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001899 struct reiserfs_journal_cnode **table,
1900 struct reiserfs_journal_list *jl,
1901 unsigned long block, int remove_freed)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001902{
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001903 struct reiserfs_journal_cnode *cur;
1904 struct reiserfs_journal_cnode **head;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001905
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001906 head = &(journal_hash(table, sb, block));
1907 if (!head) {
1908 return;
1909 }
1910 cur = *head;
1911 while (cur) {
1912 if (cur->blocknr == block && cur->sb == sb
1913 && (jl == NULL || jl == cur->jlist)
1914 && (!test_bit(BLOCK_FREED, &cur->state) || remove_freed)) {
1915 if (cur->hnext) {
1916 cur->hnext->hprev = cur->hprev;
1917 }
1918 if (cur->hprev) {
1919 cur->hprev->hnext = cur->hnext;
1920 } else {
1921 *head = cur->hnext;
1922 }
1923 cur->blocknr = 0;
1924 cur->sb = NULL;
1925 cur->state = 0;
1926 if (cur->bh && cur->jlist) /* anybody who clears the cur->bh will also dec the nonzerolen */
1927 atomic_dec(&(cur->jlist->j_nonzerolen));
1928 cur->bh = NULL;
1929 cur->jlist = NULL;
1930 }
1931 cur = cur->hnext;
1932 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001933}
1934
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04001935static void free_journal_ram(struct super_block *sb)
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001936{
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04001937 struct reiserfs_journal *journal = SB_JOURNAL(sb);
Pekka Enbergd739b422006-02-01 03:06:43 -08001938 kfree(journal->j_current_jl);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001939 journal->j_num_lists--;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001940
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001941 vfree(journal->j_cnode_free_orig);
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04001942 free_list_bitmaps(sb, journal->j_list_bitmap);
1943 free_bitmap_nodes(sb); /* must be after free_list_bitmaps */
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001944 if (journal->j_header_bh) {
1945 brelse(journal->j_header_bh);
1946 }
1947 /* j_header_bh is on the journal dev, make sure not to release the journal
1948 * dev until we brelse j_header_bh
1949 */
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04001950 release_journal_dev(sb, journal);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001951 vfree(journal);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001952}
1953
1954/*
1955** call on unmount. Only set error to 1 if you haven't made your way out
1956** of read_super() yet. Any other caller must keep error at 0.
1957*/
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001958static int do_journal_release(struct reiserfs_transaction_handle *th,
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04001959 struct super_block *sb, int error)
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001960{
1961 struct reiserfs_transaction_handle myth;
1962 int flushed = 0;
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04001963 struct reiserfs_journal *journal = SB_JOURNAL(sb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001964
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001965 /* we only want to flush out transactions if we were called with error == 0
1966 */
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04001967 if (!error && !(sb->s_flags & MS_RDONLY)) {
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001968 /* end the current trans */
1969 BUG_ON(!th->t_trans_id);
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04001970 do_journal_end(th, sb, 10, FLUSH_ALL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001971
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001972 /* make sure something gets logged to force our way into the flush code */
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04001973 if (!journal_join(&myth, sb, 1)) {
1974 reiserfs_prepare_for_journal(sb,
1975 SB_BUFFER_WITH_SB(sb),
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001976 1);
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04001977 journal_mark_dirty(&myth, sb,
1978 SB_BUFFER_WITH_SB(sb));
1979 do_journal_end(&myth, sb, 1, FLUSH_ALL);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001980 flushed = 1;
1981 }
1982 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001983
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001984 /* this also catches errors during the do_journal_end above */
1985 if (!error && reiserfs_is_journal_aborted(journal)) {
1986 memset(&myth, 0, sizeof(myth));
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04001987 if (!journal_join_abort(&myth, sb, 1)) {
1988 reiserfs_prepare_for_journal(sb,
1989 SB_BUFFER_WITH_SB(sb),
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001990 1);
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04001991 journal_mark_dirty(&myth, sb,
1992 SB_BUFFER_WITH_SB(sb));
1993 do_journal_end(&myth, sb, 1, FLUSH_ALL);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001994 }
1995 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001996
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001997 reiserfs_mounted_fs_count--;
1998 /* wait for all commits to finish */
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04001999 cancel_delayed_work(&SB_JOURNAL(sb)->j_work);
Frederic Weisbecker8ebc4232009-04-07 04:19:49 +02002000
2001 /*
2002 * We must release the write lock here because
2003 * the workqueue job (flush_async_commit) needs this lock
2004 */
2005 reiserfs_write_unlock(sb);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002006 flush_workqueue(commit_wq);
Frederic Weisbecker8ebc4232009-04-07 04:19:49 +02002007
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002008 if (!reiserfs_mounted_fs_count) {
2009 destroy_workqueue(commit_wq);
2010 commit_wq = NULL;
2011 }
Frederic Weisbecker8ebc4232009-04-07 04:19:49 +02002012 reiserfs_write_lock(sb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002013
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04002014 free_journal_ram(sb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002015
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002016 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002017}
2018
2019/*
2020** call on unmount. flush all journal trans, release all alloc'd ram
2021*/
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002022int journal_release(struct reiserfs_transaction_handle *th,
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04002023 struct super_block *sb)
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002024{
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04002025 return do_journal_release(th, sb, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002026}
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002027
Linus Torvalds1da177e2005-04-16 15:20:36 -07002028/*
2029** only call from an error condition inside reiserfs_read_super!
2030*/
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002031int journal_release_error(struct reiserfs_transaction_handle *th,
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04002032 struct super_block *sb)
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002033{
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04002034 return do_journal_release(th, sb, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002035}
2036
2037/* compares description block with commit block. returns 1 if they differ, 0 if they are the same */
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04002038static int journal_compare_desc_commit(struct super_block *sb,
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002039 struct reiserfs_journal_desc *desc,
2040 struct reiserfs_journal_commit *commit)
2041{
2042 if (get_commit_trans_id(commit) != get_desc_trans_id(desc) ||
2043 get_commit_trans_len(commit) != get_desc_trans_len(desc) ||
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04002044 get_commit_trans_len(commit) > SB_JOURNAL(sb)->j_trans_max ||
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002045 get_commit_trans_len(commit) <= 0) {
2046 return 1;
2047 }
2048 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002049}
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002050
Jeff Mahoney0222e652009-03-30 14:02:44 -04002051/* returns 0 if it did not find a description block
Linus Torvalds1da177e2005-04-16 15:20:36 -07002052** returns -1 if it found a corrupt commit block
Jeff Mahoney0222e652009-03-30 14:02:44 -04002053** returns 1 if both desc and commit were valid
Linus Torvalds1da177e2005-04-16 15:20:36 -07002054*/
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04002055static int journal_transaction_is_valid(struct super_block *sb,
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002056 struct buffer_head *d_bh,
Jeff Mahoney600ed412009-03-30 14:02:17 -04002057 unsigned int *oldest_invalid_trans_id,
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002058 unsigned long *newest_mount_id)
2059{
2060 struct reiserfs_journal_desc *desc;
2061 struct reiserfs_journal_commit *commit;
2062 struct buffer_head *c_bh;
2063 unsigned long offset;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002064
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002065 if (!d_bh)
2066 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002067
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002068 desc = (struct reiserfs_journal_desc *)d_bh->b_data;
2069 if (get_desc_trans_len(desc) > 0
2070 && !memcmp(get_journal_desc_magic(d_bh), JOURNAL_DESC_MAGIC, 8)) {
2071 if (oldest_invalid_trans_id && *oldest_invalid_trans_id
2072 && get_desc_trans_id(desc) > *oldest_invalid_trans_id) {
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04002073 reiserfs_debug(sb, REISERFS_DEBUG_CODE,
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002074 "journal-986: transaction "
2075 "is valid returning because trans_id %d is greater than "
2076 "oldest_invalid %lu",
2077 get_desc_trans_id(desc),
2078 *oldest_invalid_trans_id);
2079 return 0;
2080 }
2081 if (newest_mount_id
2082 && *newest_mount_id > get_desc_mount_id(desc)) {
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04002083 reiserfs_debug(sb, REISERFS_DEBUG_CODE,
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002084 "journal-1087: transaction "
2085 "is valid returning because mount_id %d is less than "
2086 "newest_mount_id %lu",
2087 get_desc_mount_id(desc),
2088 *newest_mount_id);
2089 return -1;
2090 }
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04002091 if (get_desc_trans_len(desc) > SB_JOURNAL(sb)->j_trans_max) {
2092 reiserfs_warning(sb, "journal-2018",
Jeff Mahoney45b03d52009-03-30 14:02:21 -04002093 "Bad transaction length %d "
2094 "encountered, ignoring transaction",
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002095 get_desc_trans_len(desc));
2096 return -1;
2097 }
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04002098 offset = d_bh->b_blocknr - SB_ONDISK_JOURNAL_1st_BLOCK(sb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002099
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002100 /* ok, we have a journal description block, lets see if the transaction was valid */
2101 c_bh =
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04002102 journal_bread(sb,
2103 SB_ONDISK_JOURNAL_1st_BLOCK(sb) +
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002104 ((offset + get_desc_trans_len(desc) +
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04002105 1) % SB_ONDISK_JOURNAL_SIZE(sb)));
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002106 if (!c_bh)
2107 return 0;
2108 commit = (struct reiserfs_journal_commit *)c_bh->b_data;
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04002109 if (journal_compare_desc_commit(sb, desc, commit)) {
2110 reiserfs_debug(sb, REISERFS_DEBUG_CODE,
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002111 "journal_transaction_is_valid, commit offset %ld had bad "
2112 "time %d or length %d",
2113 c_bh->b_blocknr -
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04002114 SB_ONDISK_JOURNAL_1st_BLOCK(sb),
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002115 get_commit_trans_id(commit),
2116 get_commit_trans_len(commit));
2117 brelse(c_bh);
2118 if (oldest_invalid_trans_id) {
2119 *oldest_invalid_trans_id =
2120 get_desc_trans_id(desc);
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04002121 reiserfs_debug(sb, REISERFS_DEBUG_CODE,
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002122 "journal-1004: "
2123 "transaction_is_valid setting oldest invalid trans_id "
2124 "to %d",
2125 get_desc_trans_id(desc));
2126 }
2127 return -1;
2128 }
2129 brelse(c_bh);
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04002130 reiserfs_debug(sb, REISERFS_DEBUG_CODE,
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002131 "journal-1006: found valid "
2132 "transaction start offset %llu, len %d id %d",
2133 d_bh->b_blocknr -
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04002134 SB_ONDISK_JOURNAL_1st_BLOCK(sb),
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002135 get_desc_trans_len(desc),
2136 get_desc_trans_id(desc));
2137 return 1;
2138 } else {
2139 return 0;
2140 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002141}
2142
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002143static void brelse_array(struct buffer_head **heads, int num)
2144{
2145 int i;
2146 for (i = 0; i < num; i++) {
2147 brelse(heads[i]);
2148 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002149}
2150
2151/*
2152** given the start, and values for the oldest acceptable transactions,
2153** this either reads in a replays a transaction, or returns because the transaction
2154** is invalid, or too old.
2155*/
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04002156static int journal_read_transaction(struct super_block *sb,
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002157 unsigned long cur_dblock,
2158 unsigned long oldest_start,
Jeff Mahoney600ed412009-03-30 14:02:17 -04002159 unsigned int oldest_trans_id,
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002160 unsigned long newest_mount_id)
2161{
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04002162 struct reiserfs_journal *journal = SB_JOURNAL(sb);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002163 struct reiserfs_journal_desc *desc;
2164 struct reiserfs_journal_commit *commit;
Jeff Mahoney600ed412009-03-30 14:02:17 -04002165 unsigned int trans_id = 0;
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002166 struct buffer_head *c_bh;
2167 struct buffer_head *d_bh;
2168 struct buffer_head **log_blocks = NULL;
2169 struct buffer_head **real_blocks = NULL;
Jeff Mahoney600ed412009-03-30 14:02:17 -04002170 unsigned int trans_offset;
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002171 int i;
2172 int trans_half;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002173
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04002174 d_bh = journal_bread(sb, cur_dblock);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002175 if (!d_bh)
2176 return 1;
2177 desc = (struct reiserfs_journal_desc *)d_bh->b_data;
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04002178 trans_offset = d_bh->b_blocknr - SB_ONDISK_JOURNAL_1st_BLOCK(sb);
2179 reiserfs_debug(sb, REISERFS_DEBUG_CODE, "journal-1037: "
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002180 "journal_read_transaction, offset %llu, len %d mount_id %d",
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04002181 d_bh->b_blocknr - SB_ONDISK_JOURNAL_1st_BLOCK(sb),
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002182 get_desc_trans_len(desc), get_desc_mount_id(desc));
2183 if (get_desc_trans_id(desc) < oldest_trans_id) {
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04002184 reiserfs_debug(sb, REISERFS_DEBUG_CODE, "journal-1039: "
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002185 "journal_read_trans skipping because %lu is too old",
2186 cur_dblock -
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04002187 SB_ONDISK_JOURNAL_1st_BLOCK(sb));
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002188 brelse(d_bh);
2189 return 1;
2190 }
2191 if (get_desc_mount_id(desc) != newest_mount_id) {
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04002192 reiserfs_debug(sb, REISERFS_DEBUG_CODE, "journal-1146: "
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002193 "journal_read_trans skipping because %d is != "
2194 "newest_mount_id %lu", get_desc_mount_id(desc),
2195 newest_mount_id);
2196 brelse(d_bh);
2197 return 1;
2198 }
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04002199 c_bh = journal_bread(sb, SB_ONDISK_JOURNAL_1st_BLOCK(sb) +
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002200 ((trans_offset + get_desc_trans_len(desc) + 1) %
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04002201 SB_ONDISK_JOURNAL_SIZE(sb)));
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002202 if (!c_bh) {
2203 brelse(d_bh);
2204 return 1;
2205 }
2206 commit = (struct reiserfs_journal_commit *)c_bh->b_data;
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04002207 if (journal_compare_desc_commit(sb, desc, commit)) {
2208 reiserfs_debug(sb, REISERFS_DEBUG_CODE,
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002209 "journal_read_transaction, "
2210 "commit offset %llu had bad time %d or length %d",
2211 c_bh->b_blocknr -
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04002212 SB_ONDISK_JOURNAL_1st_BLOCK(sb),
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002213 get_commit_trans_id(commit),
2214 get_commit_trans_len(commit));
2215 brelse(c_bh);
2216 brelse(d_bh);
2217 return 1;
2218 }
2219 trans_id = get_desc_trans_id(desc);
2220 /* now we know we've got a good transaction, and it was inside the valid time ranges */
Pekka Enbergd739b422006-02-01 03:06:43 -08002221 log_blocks = kmalloc(get_desc_trans_len(desc) *
2222 sizeof(struct buffer_head *), GFP_NOFS);
2223 real_blocks = kmalloc(get_desc_trans_len(desc) *
2224 sizeof(struct buffer_head *), GFP_NOFS);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002225 if (!log_blocks || !real_blocks) {
2226 brelse(c_bh);
2227 brelse(d_bh);
Pekka Enbergd739b422006-02-01 03:06:43 -08002228 kfree(log_blocks);
2229 kfree(real_blocks);
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04002230 reiserfs_warning(sb, "journal-1169",
Jeff Mahoney45b03d52009-03-30 14:02:21 -04002231 "kmalloc failed, unable to mount FS");
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002232 return -1;
2233 }
2234 /* get all the buffer heads */
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04002235 trans_half = journal_trans_half(sb->s_blocksize);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002236 for (i = 0; i < get_desc_trans_len(desc); i++) {
2237 log_blocks[i] =
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04002238 journal_getblk(sb,
2239 SB_ONDISK_JOURNAL_1st_BLOCK(sb) +
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002240 (trans_offset + 1 +
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04002241 i) % SB_ONDISK_JOURNAL_SIZE(sb));
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002242 if (i < trans_half) {
2243 real_blocks[i] =
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04002244 sb_getblk(sb,
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002245 le32_to_cpu(desc->j_realblock[i]));
2246 } else {
2247 real_blocks[i] =
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04002248 sb_getblk(sb,
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002249 le32_to_cpu(commit->
2250 j_realblock[i - trans_half]));
2251 }
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04002252 if (real_blocks[i]->b_blocknr > SB_BLOCK_COUNT(sb)) {
2253 reiserfs_warning(sb, "journal-1207",
Jeff Mahoney45b03d52009-03-30 14:02:21 -04002254 "REPLAY FAILURE fsck required! "
2255 "Block to replay is outside of "
2256 "filesystem");
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002257 goto abort_replay;
2258 }
2259 /* make sure we don't try to replay onto log or reserved area */
2260 if (is_block_in_log_or_reserved_area
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04002261 (sb, real_blocks[i]->b_blocknr)) {
2262 reiserfs_warning(sb, "journal-1204",
Jeff Mahoney45b03d52009-03-30 14:02:21 -04002263 "REPLAY FAILURE fsck required! "
2264 "Trying to replay onto a log block");
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002265 abort_replay:
2266 brelse_array(log_blocks, i);
2267 brelse_array(real_blocks, i);
2268 brelse(c_bh);
2269 brelse(d_bh);
Pekka Enbergd739b422006-02-01 03:06:43 -08002270 kfree(log_blocks);
2271 kfree(real_blocks);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002272 return -1;
2273 }
2274 }
2275 /* read in the log blocks, memcpy to the corresponding real block */
2276 ll_rw_block(READ, get_desc_trans_len(desc), log_blocks);
2277 for (i = 0; i < get_desc_trans_len(desc); i++) {
Frederic Weisbecker8ebc4232009-04-07 04:19:49 +02002278
2279 reiserfs_write_unlock(sb);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002280 wait_on_buffer(log_blocks[i]);
Frederic Weisbecker8ebc4232009-04-07 04:19:49 +02002281 reiserfs_write_lock(sb);
2282
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002283 if (!buffer_uptodate(log_blocks[i])) {
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04002284 reiserfs_warning(sb, "journal-1212",
Jeff Mahoney45b03d52009-03-30 14:02:21 -04002285 "REPLAY FAILURE fsck required! "
2286 "buffer write failed");
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002287 brelse_array(log_blocks + i,
2288 get_desc_trans_len(desc) - i);
2289 brelse_array(real_blocks, get_desc_trans_len(desc));
2290 brelse(c_bh);
2291 brelse(d_bh);
Pekka Enbergd739b422006-02-01 03:06:43 -08002292 kfree(log_blocks);
2293 kfree(real_blocks);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002294 return -1;
2295 }
2296 memcpy(real_blocks[i]->b_data, log_blocks[i]->b_data,
2297 real_blocks[i]->b_size);
2298 set_buffer_uptodate(real_blocks[i]);
2299 brelse(log_blocks[i]);
2300 }
2301 /* flush out the real blocks */
2302 for (i = 0; i < get_desc_trans_len(desc); i++) {
2303 set_buffer_dirty(real_blocks[i]);
Jan Kara53778ff2005-09-06 15:19:14 -07002304 ll_rw_block(SWRITE, 1, real_blocks + i);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002305 }
2306 for (i = 0; i < get_desc_trans_len(desc); i++) {
2307 wait_on_buffer(real_blocks[i]);
2308 if (!buffer_uptodate(real_blocks[i])) {
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04002309 reiserfs_warning(sb, "journal-1226",
Jeff Mahoney45b03d52009-03-30 14:02:21 -04002310 "REPLAY FAILURE, fsck required! "
2311 "buffer write failed");
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002312 brelse_array(real_blocks + i,
2313 get_desc_trans_len(desc) - i);
2314 brelse(c_bh);
2315 brelse(d_bh);
Pekka Enbergd739b422006-02-01 03:06:43 -08002316 kfree(log_blocks);
2317 kfree(real_blocks);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002318 return -1;
2319 }
2320 brelse(real_blocks[i]);
2321 }
2322 cur_dblock =
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04002323 SB_ONDISK_JOURNAL_1st_BLOCK(sb) +
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002324 ((trans_offset + get_desc_trans_len(desc) +
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04002325 2) % SB_ONDISK_JOURNAL_SIZE(sb));
2326 reiserfs_debug(sb, REISERFS_DEBUG_CODE,
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002327 "journal-1095: setting journal " "start to offset %ld",
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04002328 cur_dblock - SB_ONDISK_JOURNAL_1st_BLOCK(sb));
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002329
2330 /* init starting values for the first transaction, in case this is the last transaction to be replayed. */
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04002331 journal->j_start = cur_dblock - SB_ONDISK_JOURNAL_1st_BLOCK(sb);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002332 journal->j_last_flush_trans_id = trans_id;
2333 journal->j_trans_id = trans_id + 1;
Alexander Zarochentseva44c94a2006-03-25 03:06:59 -08002334 /* check for trans_id overflow */
2335 if (journal->j_trans_id == 0)
2336 journal->j_trans_id = 10;
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002337 brelse(c_bh);
2338 brelse(d_bh);
Pekka Enbergd739b422006-02-01 03:06:43 -08002339 kfree(log_blocks);
2340 kfree(real_blocks);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002341 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002342}
2343
2344/* This function reads blocks starting from block and to max_block of bufsize
2345 size (but no more than BUFNR blocks at a time). This proved to improve
2346 mounting speed on self-rebuilding raid5 arrays at least.
2347 Right now it is only used from journal code. But later we might use it
2348 from other places.
2349 Note: Do not use journal_getblk/sb_getblk functions here! */
Jeff Mahoney3ee16672007-10-18 23:39:25 -07002350static struct buffer_head *reiserfs_breada(struct block_device *dev,
2351 b_blocknr_t block, int bufsize,
2352 b_blocknr_t max_block)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002353{
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002354 struct buffer_head *bhlist[BUFNR];
Linus Torvalds1da177e2005-04-16 15:20:36 -07002355 unsigned int blocks = BUFNR;
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002356 struct buffer_head *bh;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002357 int i, j;
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002358
2359 bh = __getblk(dev, block, bufsize);
2360 if (buffer_uptodate(bh))
2361 return (bh);
2362
Linus Torvalds1da177e2005-04-16 15:20:36 -07002363 if (block + BUFNR > max_block) {
2364 blocks = max_block - block;
2365 }
2366 bhlist[0] = bh;
2367 j = 1;
2368 for (i = 1; i < blocks; i++) {
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002369 bh = __getblk(dev, block + i, bufsize);
2370 if (buffer_uptodate(bh)) {
2371 brelse(bh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002372 break;
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002373 } else
2374 bhlist[j++] = bh;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002375 }
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002376 ll_rw_block(READ, j, bhlist);
2377 for (i = 1; i < j; i++)
2378 brelse(bhlist[i]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002379 bh = bhlist[0];
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002380 wait_on_buffer(bh);
2381 if (buffer_uptodate(bh))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002382 return bh;
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002383 brelse(bh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002384 return NULL;
2385}
2386
2387/*
2388** read and replay the log
2389** on a clean unmount, the journal header's next unflushed pointer will be to an invalid
2390** transaction. This tests that before finding all the transactions in the log, which makes normal mount times fast.
2391**
2392** After a crash, this starts with the next unflushed transaction, and replays until it finds one too old, or invalid.
2393**
2394** On exit, it sets things up so the first transaction will work correctly.
2395*/
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04002396static int journal_read(struct super_block *sb)
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002397{
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04002398 struct reiserfs_journal *journal = SB_JOURNAL(sb);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002399 struct reiserfs_journal_desc *desc;
Jeff Mahoney600ed412009-03-30 14:02:17 -04002400 unsigned int oldest_trans_id = 0;
2401 unsigned int oldest_invalid_trans_id = 0;
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002402 time_t start;
2403 unsigned long oldest_start = 0;
2404 unsigned long cur_dblock = 0;
2405 unsigned long newest_mount_id = 9;
2406 struct buffer_head *d_bh;
2407 struct reiserfs_journal_header *jh;
2408 int valid_journal_header = 0;
2409 int replay_count = 0;
2410 int continue_replay = 1;
2411 int ret;
2412 char b[BDEVNAME_SIZE];
Linus Torvalds1da177e2005-04-16 15:20:36 -07002413
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04002414 cur_dblock = SB_ONDISK_JOURNAL_1st_BLOCK(sb);
2415 reiserfs_info(sb, "checking transaction log (%s)\n",
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002416 bdevname(journal->j_dev_bd, b));
2417 start = get_seconds();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002418
Jeff Mahoney0222e652009-03-30 14:02:44 -04002419 /* step 1, read in the journal header block. Check the transaction it says
2420 ** is the first unflushed, and if that transaction is not valid,
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002421 ** replay is done
2422 */
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04002423 journal->j_header_bh = journal_bread(sb,
2424 SB_ONDISK_JOURNAL_1st_BLOCK(sb)
2425 + SB_ONDISK_JOURNAL_SIZE(sb));
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002426 if (!journal->j_header_bh) {
2427 return 1;
2428 }
2429 jh = (struct reiserfs_journal_header *)(journal->j_header_bh->b_data);
Vladimir V. Savelievc499ec22006-03-02 02:54:39 -08002430 if (le32_to_cpu(jh->j_first_unflushed_offset) <
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04002431 SB_ONDISK_JOURNAL_SIZE(sb)
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002432 && le32_to_cpu(jh->j_last_flush_trans_id) > 0) {
2433 oldest_start =
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04002434 SB_ONDISK_JOURNAL_1st_BLOCK(sb) +
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002435 le32_to_cpu(jh->j_first_unflushed_offset);
2436 oldest_trans_id = le32_to_cpu(jh->j_last_flush_trans_id) + 1;
2437 newest_mount_id = le32_to_cpu(jh->j_mount_id);
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04002438 reiserfs_debug(sb, REISERFS_DEBUG_CODE,
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002439 "journal-1153: found in "
2440 "header: first_unflushed_offset %d, last_flushed_trans_id "
2441 "%lu", le32_to_cpu(jh->j_first_unflushed_offset),
2442 le32_to_cpu(jh->j_last_flush_trans_id));
2443 valid_journal_header = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002444
Jeff Mahoney0222e652009-03-30 14:02:44 -04002445 /* now, we try to read the first unflushed offset. If it is not valid,
2446 ** there is nothing more we can do, and it makes no sense to read
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002447 ** through the whole log.
2448 */
2449 d_bh =
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04002450 journal_bread(sb,
2451 SB_ONDISK_JOURNAL_1st_BLOCK(sb) +
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002452 le32_to_cpu(jh->j_first_unflushed_offset));
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04002453 ret = journal_transaction_is_valid(sb, d_bh, NULL, NULL);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002454 if (!ret) {
2455 continue_replay = 0;
2456 }
2457 brelse(d_bh);
2458 goto start_log_replay;
2459 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002460
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04002461 if (continue_replay && bdev_read_only(sb->s_bdev)) {
2462 reiserfs_warning(sb, "clm-2076",
Jeff Mahoney45b03d52009-03-30 14:02:21 -04002463 "device is readonly, unable to replay log");
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002464 return -1;
2465 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002466
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002467 /* ok, there are transactions that need to be replayed. start with the first log block, find
2468 ** all the valid transactions, and pick out the oldest.
2469 */
2470 while (continue_replay
2471 && cur_dblock <
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04002472 (SB_ONDISK_JOURNAL_1st_BLOCK(sb) +
2473 SB_ONDISK_JOURNAL_SIZE(sb))) {
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002474 /* Note that it is required for blocksize of primary fs device and journal
2475 device to be the same */
2476 d_bh =
2477 reiserfs_breada(journal->j_dev_bd, cur_dblock,
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04002478 sb->s_blocksize,
2479 SB_ONDISK_JOURNAL_1st_BLOCK(sb) +
2480 SB_ONDISK_JOURNAL_SIZE(sb));
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002481 ret =
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04002482 journal_transaction_is_valid(sb, d_bh,
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002483 &oldest_invalid_trans_id,
2484 &newest_mount_id);
2485 if (ret == 1) {
2486 desc = (struct reiserfs_journal_desc *)d_bh->b_data;
2487 if (oldest_start == 0) { /* init all oldest_ values */
2488 oldest_trans_id = get_desc_trans_id(desc);
2489 oldest_start = d_bh->b_blocknr;
2490 newest_mount_id = get_desc_mount_id(desc);
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04002491 reiserfs_debug(sb, REISERFS_DEBUG_CODE,
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002492 "journal-1179: Setting "
2493 "oldest_start to offset %llu, trans_id %lu",
2494 oldest_start -
2495 SB_ONDISK_JOURNAL_1st_BLOCK
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04002496 (sb), oldest_trans_id);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002497 } else if (oldest_trans_id > get_desc_trans_id(desc)) {
2498 /* one we just read was older */
2499 oldest_trans_id = get_desc_trans_id(desc);
2500 oldest_start = d_bh->b_blocknr;
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04002501 reiserfs_debug(sb, REISERFS_DEBUG_CODE,
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002502 "journal-1180: Resetting "
2503 "oldest_start to offset %lu, trans_id %lu",
2504 oldest_start -
2505 SB_ONDISK_JOURNAL_1st_BLOCK
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04002506 (sb), oldest_trans_id);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002507 }
2508 if (newest_mount_id < get_desc_mount_id(desc)) {
2509 newest_mount_id = get_desc_mount_id(desc);
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04002510 reiserfs_debug(sb, REISERFS_DEBUG_CODE,
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002511 "journal-1299: Setting "
2512 "newest_mount_id to %d",
2513 get_desc_mount_id(desc));
2514 }
2515 cur_dblock += get_desc_trans_len(desc) + 2;
2516 } else {
2517 cur_dblock++;
2518 }
2519 brelse(d_bh);
2520 }
2521
2522 start_log_replay:
2523 cur_dblock = oldest_start;
2524 if (oldest_trans_id) {
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04002525 reiserfs_debug(sb, REISERFS_DEBUG_CODE,
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002526 "journal-1206: Starting replay "
2527 "from offset %llu, trans_id %lu",
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04002528 cur_dblock - SB_ONDISK_JOURNAL_1st_BLOCK(sb),
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002529 oldest_trans_id);
2530
2531 }
2532 replay_count = 0;
2533 while (continue_replay && oldest_trans_id > 0) {
2534 ret =
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04002535 journal_read_transaction(sb, cur_dblock, oldest_start,
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002536 oldest_trans_id, newest_mount_id);
2537 if (ret < 0) {
2538 return ret;
2539 } else if (ret != 0) {
2540 break;
2541 }
2542 cur_dblock =
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04002543 SB_ONDISK_JOURNAL_1st_BLOCK(sb) + journal->j_start;
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002544 replay_count++;
2545 if (cur_dblock == oldest_start)
2546 break;
2547 }
2548
2549 if (oldest_trans_id == 0) {
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04002550 reiserfs_debug(sb, REISERFS_DEBUG_CODE,
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002551 "journal-1225: No valid " "transactions found");
2552 }
2553 /* j_start does not get set correctly if we don't replay any transactions.
2554 ** if we had a valid journal_header, set j_start to the first unflushed transaction value,
2555 ** copy the trans_id from the header
2556 */
2557 if (valid_journal_header && replay_count == 0) {
2558 journal->j_start = le32_to_cpu(jh->j_first_unflushed_offset);
2559 journal->j_trans_id =
2560 le32_to_cpu(jh->j_last_flush_trans_id) + 1;
Alexander Zarochentseva44c94a2006-03-25 03:06:59 -08002561 /* check for trans_id overflow */
2562 if (journal->j_trans_id == 0)
2563 journal->j_trans_id = 10;
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002564 journal->j_last_flush_trans_id =
2565 le32_to_cpu(jh->j_last_flush_trans_id);
2566 journal->j_mount_id = le32_to_cpu(jh->j_mount_id) + 1;
2567 } else {
2568 journal->j_mount_id = newest_mount_id + 1;
2569 }
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04002570 reiserfs_debug(sb, REISERFS_DEBUG_CODE, "journal-1299: Setting "
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002571 "newest_mount_id to %lu", journal->j_mount_id);
2572 journal->j_first_unflushed_offset = journal->j_start;
2573 if (replay_count > 0) {
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04002574 reiserfs_info(sb,
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002575 "replayed %d transactions in %lu seconds\n",
2576 replay_count, get_seconds() - start);
2577 }
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04002578 if (!bdev_read_only(sb->s_bdev) &&
2579 _update_journal_header_block(sb, journal->j_start,
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002580 journal->j_last_flush_trans_id)) {
2581 /* replay failed, caller must call free_journal_ram and abort
2582 ** the mount
2583 */
2584 return -1;
2585 }
2586 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002587}
2588
2589static struct reiserfs_journal_list *alloc_journal_list(struct super_block *s)
2590{
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002591 struct reiserfs_journal_list *jl;
Pekka Enberg8c777cc2006-02-01 03:06:43 -08002592 jl = kzalloc(sizeof(struct reiserfs_journal_list),
2593 GFP_NOFS | __GFP_NOFAIL);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002594 INIT_LIST_HEAD(&jl->j_list);
2595 INIT_LIST_HEAD(&jl->j_working_list);
2596 INIT_LIST_HEAD(&jl->j_tail_bh_list);
2597 INIT_LIST_HEAD(&jl->j_bh_list);
Jeff Mahoney90415de2008-07-25 01:46:40 -07002598 mutex_init(&jl->j_commit_mutex);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002599 SB_JOURNAL(s)->j_num_lists++;
2600 get_journal_list(jl);
2601 return jl;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002602}
2603
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04002604static void journal_list_init(struct super_block *sb)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002605{
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04002606 SB_JOURNAL(sb)->j_current_jl = alloc_journal_list(sb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002607}
2608
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002609static int release_journal_dev(struct super_block *super,
2610 struct reiserfs_journal *journal)
2611{
2612 int result;
2613
2614 result = 0;
2615
Christoph Hellwig86098fa2008-04-30 00:54:46 -07002616 if (journal->j_dev_bd != NULL) {
2617 if (journal->j_dev_bd->bd_dev != super->s_dev)
2618 bd_release(journal->j_dev_bd);
Al Viroe5eb8ca2007-10-08 13:24:05 -04002619 result = blkdev_put(journal->j_dev_bd, journal->j_dev_mode);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002620 journal->j_dev_bd = NULL;
2621 }
2622
2623 if (result != 0) {
Jeff Mahoney45b03d52009-03-30 14:02:21 -04002624 reiserfs_warning(super, "sh-457",
2625 "Cannot release journal device: %i", result);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002626 }
2627 return result;
2628}
2629
2630static int journal_init_dev(struct super_block *super,
2631 struct reiserfs_journal *journal,
2632 const char *jdev_name)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002633{
2634 int result;
2635 dev_t jdev;
Al Viroaeb5d722008-09-02 15:28:45 -04002636 fmode_t blkdev_mode = FMODE_READ | FMODE_WRITE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002637 char b[BDEVNAME_SIZE];
2638
2639 result = 0;
2640
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002641 journal->j_dev_bd = NULL;
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002642 jdev = SB_ONDISK_JOURNAL_DEVICE(super) ?
2643 new_decode_dev(SB_ONDISK_JOURNAL_DEVICE(super)) : super->s_dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002644
2645 if (bdev_read_only(super->s_bdev))
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002646 blkdev_mode = FMODE_READ;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002647
2648 /* there is no "jdev" option and journal is on separate device */
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002649 if ((!jdev_name || !jdev_name[0])) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002650 journal->j_dev_bd = open_by_devnum(jdev, blkdev_mode);
Al Viroe5eb8ca2007-10-08 13:24:05 -04002651 journal->j_dev_mode = blkdev_mode;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002652 if (IS_ERR(journal->j_dev_bd)) {
2653 result = PTR_ERR(journal->j_dev_bd);
2654 journal->j_dev_bd = NULL;
Jeff Mahoney45b03d52009-03-30 14:02:21 -04002655 reiserfs_warning(super, "sh-458",
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002656 "cannot init journal device '%s': %i",
2657 __bdevname(jdev, b), result);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002658 return result;
Christoph Hellwig86098fa2008-04-30 00:54:46 -07002659 } else if (jdev != super->s_dev) {
2660 result = bd_claim(journal->j_dev_bd, journal);
2661 if (result) {
Al Viro9a1c3542008-02-22 20:40:24 -05002662 blkdev_put(journal->j_dev_bd, blkdev_mode);
Christoph Hellwig86098fa2008-04-30 00:54:46 -07002663 return result;
2664 }
2665
Linus Torvalds1da177e2005-04-16 15:20:36 -07002666 set_blocksize(journal->j_dev_bd, super->s_blocksize);
Christoph Hellwig86098fa2008-04-30 00:54:46 -07002667 }
2668
Linus Torvalds1da177e2005-04-16 15:20:36 -07002669 return 0;
2670 }
2671
Al Viroe5eb8ca2007-10-08 13:24:05 -04002672 journal->j_dev_mode = blkdev_mode;
Al Viro30c40d22008-02-22 19:50:45 -05002673 journal->j_dev_bd = open_bdev_exclusive(jdev_name,
Al Viroe5eb8ca2007-10-08 13:24:05 -04002674 blkdev_mode, journal);
Christoph Hellwig86098fa2008-04-30 00:54:46 -07002675 if (IS_ERR(journal->j_dev_bd)) {
2676 result = PTR_ERR(journal->j_dev_bd);
2677 journal->j_dev_bd = NULL;
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002678 reiserfs_warning(super,
2679 "journal_init_dev: Cannot open '%s': %i",
2680 jdev_name, result);
Christoph Hellwig86098fa2008-04-30 00:54:46 -07002681 return result;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002682 }
Christoph Hellwig86098fa2008-04-30 00:54:46 -07002683
2684 set_blocksize(journal->j_dev_bd, super->s_blocksize);
2685 reiserfs_info(super,
2686 "journal_init_dev: journal device: %s\n",
2687 bdevname(journal->j_dev_bd, b));
2688 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002689}
2690
Edward Shishkincf3d0b82007-10-16 23:30:30 -07002691/**
2692 * When creating/tuning a file system user can assign some
2693 * journal params within boundaries which depend on the ratio
2694 * blocksize/standard_blocksize.
2695 *
2696 * For blocks >= standard_blocksize transaction size should
2697 * be not less then JOURNAL_TRANS_MIN_DEFAULT, and not more
2698 * then JOURNAL_TRANS_MAX_DEFAULT.
2699 *
2700 * For blocks < standard_blocksize these boundaries should be
2701 * decreased proportionally.
2702 */
2703#define REISERFS_STANDARD_BLKSIZE (4096)
2704
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04002705static int check_advise_trans_params(struct super_block *sb,
Edward Shishkincf3d0b82007-10-16 23:30:30 -07002706 struct reiserfs_journal *journal)
2707{
2708 if (journal->j_trans_max) {
2709 /* Non-default journal params.
2710 Do sanity check for them. */
2711 int ratio = 1;
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04002712 if (sb->s_blocksize < REISERFS_STANDARD_BLKSIZE)
2713 ratio = REISERFS_STANDARD_BLKSIZE / sb->s_blocksize;
Edward Shishkincf3d0b82007-10-16 23:30:30 -07002714
2715 if (journal->j_trans_max > JOURNAL_TRANS_MAX_DEFAULT / ratio ||
2716 journal->j_trans_max < JOURNAL_TRANS_MIN_DEFAULT / ratio ||
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04002717 SB_ONDISK_JOURNAL_SIZE(sb) / journal->j_trans_max <
Edward Shishkincf3d0b82007-10-16 23:30:30 -07002718 JOURNAL_MIN_RATIO) {
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04002719 reiserfs_warning(sb, "sh-462",
Jeff Mahoney45b03d52009-03-30 14:02:21 -04002720 "bad transaction max size (%u). "
2721 "FSCK?", journal->j_trans_max);
Edward Shishkincf3d0b82007-10-16 23:30:30 -07002722 return 1;
2723 }
2724 if (journal->j_max_batch != (journal->j_trans_max) *
2725 JOURNAL_MAX_BATCH_DEFAULT/JOURNAL_TRANS_MAX_DEFAULT) {
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04002726 reiserfs_warning(sb, "sh-463",
Jeff Mahoney45b03d52009-03-30 14:02:21 -04002727 "bad transaction max batch (%u). "
2728 "FSCK?", journal->j_max_batch);
Edward Shishkincf3d0b82007-10-16 23:30:30 -07002729 return 1;
2730 }
2731 } else {
2732 /* Default journal params.
2733 The file system was created by old version
2734 of mkreiserfs, so some fields contain zeros,
2735 and we need to advise proper values for them */
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04002736 if (sb->s_blocksize != REISERFS_STANDARD_BLKSIZE) {
2737 reiserfs_warning(sb, "sh-464", "bad blocksize (%u)",
2738 sb->s_blocksize);
Jeff Mahoney45b03d52009-03-30 14:02:21 -04002739 return 1;
2740 }
Edward Shishkincf3d0b82007-10-16 23:30:30 -07002741 journal->j_trans_max = JOURNAL_TRANS_MAX_DEFAULT;
2742 journal->j_max_batch = JOURNAL_MAX_BATCH_DEFAULT;
2743 journal->j_max_commit_age = JOURNAL_MAX_COMMIT_AGE;
2744 }
2745 return 0;
2746}
2747
Linus Torvalds1da177e2005-04-16 15:20:36 -07002748/*
2749** must be called once on fs mount. calls journal_read for you
2750*/
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04002751int journal_init(struct super_block *sb, const char *j_dev_name,
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002752 int old_format, unsigned int commit_max_age)
2753{
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04002754 int num_cnodes = SB_ONDISK_JOURNAL_SIZE(sb) * 2;
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002755 struct buffer_head *bhjh;
2756 struct reiserfs_super_block *rs;
2757 struct reiserfs_journal_header *jh;
2758 struct reiserfs_journal *journal;
2759 struct reiserfs_journal_list *jl;
2760 char b[BDEVNAME_SIZE];
Linus Torvalds1da177e2005-04-16 15:20:36 -07002761
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04002762 journal = SB_JOURNAL(sb) = vmalloc(sizeof(struct reiserfs_journal));
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002763 if (!journal) {
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04002764 reiserfs_warning(sb, "journal-1256",
Jeff Mahoney45b03d52009-03-30 14:02:21 -04002765 "unable to get memory for journal structure");
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002766 return 1;
2767 }
2768 memset(journal, 0, sizeof(struct reiserfs_journal));
2769 INIT_LIST_HEAD(&journal->j_bitmap_nodes);
2770 INIT_LIST_HEAD(&journal->j_prealloc_list);
2771 INIT_LIST_HEAD(&journal->j_working_list);
2772 INIT_LIST_HEAD(&journal->j_journal_list);
2773 journal->j_persistent_trans = 0;
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04002774 if (reiserfs_allocate_list_bitmaps(sb,
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002775 journal->j_list_bitmap,
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04002776 reiserfs_bmap_count(sb)))
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002777 goto free_and_return;
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04002778 allocate_bitmap_nodes(sb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002779
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002780 /* reserved for journal area support */
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04002781 SB_JOURNAL_1st_RESERVED_BLOCK(sb) = (old_format ?
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002782 REISERFS_OLD_DISK_OFFSET_IN_BYTES
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04002783 / sb->s_blocksize +
2784 reiserfs_bmap_count(sb) +
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002785 1 :
2786 REISERFS_DISK_OFFSET_IN_BYTES /
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04002787 sb->s_blocksize + 2);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002788
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002789 /* Sanity check to see is the standard journal fitting withing first bitmap
2790 (actual for small blocksizes) */
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04002791 if (!SB_ONDISK_JOURNAL_DEVICE(sb) &&
2792 (SB_JOURNAL_1st_RESERVED_BLOCK(sb) +
2793 SB_ONDISK_JOURNAL_SIZE(sb) > sb->s_blocksize * 8)) {
2794 reiserfs_warning(sb, "journal-1393",
Jeff Mahoney45b03d52009-03-30 14:02:21 -04002795 "journal does not fit for area addressed "
2796 "by first of bitmap blocks. It starts at "
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002797 "%u and its size is %u. Block size %ld",
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04002798 SB_JOURNAL_1st_RESERVED_BLOCK(sb),
2799 SB_ONDISK_JOURNAL_SIZE(sb),
2800 sb->s_blocksize);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002801 goto free_and_return;
2802 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002803
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04002804 if (journal_init_dev(sb, journal, j_dev_name) != 0) {
2805 reiserfs_warning(sb, "sh-462",
Jeff Mahoney45b03d52009-03-30 14:02:21 -04002806 "unable to initialize jornal device");
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002807 goto free_and_return;
2808 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002809
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04002810 rs = SB_DISK_SUPER_BLOCK(sb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002811
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002812 /* read journal header */
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04002813 bhjh = journal_bread(sb,
2814 SB_ONDISK_JOURNAL_1st_BLOCK(sb) +
2815 SB_ONDISK_JOURNAL_SIZE(sb));
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002816 if (!bhjh) {
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04002817 reiserfs_warning(sb, "sh-459",
Jeff Mahoney45b03d52009-03-30 14:02:21 -04002818 "unable to read journal header");
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002819 goto free_and_return;
2820 }
2821 jh = (struct reiserfs_journal_header *)(bhjh->b_data);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002822
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002823 /* make sure that journal matches to the super block */
2824 if (is_reiserfs_jr(rs)
2825 && (le32_to_cpu(jh->jh_journal.jp_journal_magic) !=
2826 sb_jp_journal_magic(rs))) {
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04002827 reiserfs_warning(sb, "sh-460",
Jeff Mahoney45b03d52009-03-30 14:02:21 -04002828 "journal header magic %x (device %s) does "
2829 "not match to magic found in super block %x",
2830 jh->jh_journal.jp_journal_magic,
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002831 bdevname(journal->j_dev_bd, b),
2832 sb_jp_journal_magic(rs));
2833 brelse(bhjh);
2834 goto free_and_return;
2835 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002836
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002837 journal->j_trans_max = le32_to_cpu(jh->jh_journal.jp_journal_trans_max);
2838 journal->j_max_batch = le32_to_cpu(jh->jh_journal.jp_journal_max_batch);
2839 journal->j_max_commit_age =
2840 le32_to_cpu(jh->jh_journal.jp_journal_max_commit_age);
2841 journal->j_max_trans_age = JOURNAL_MAX_TRANS_AGE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002842
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04002843 if (check_advise_trans_params(sb, journal) != 0)
Edward Shishkincf3d0b82007-10-16 23:30:30 -07002844 goto free_and_return;
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002845 journal->j_default_max_commit_age = journal->j_max_commit_age;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002846
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002847 if (commit_max_age != 0) {
2848 journal->j_max_commit_age = commit_max_age;
2849 journal->j_max_trans_age = commit_max_age;
2850 }
2851
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04002852 reiserfs_info(sb, "journal params: device %s, size %u, "
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002853 "journal first block %u, max trans len %u, max batch %u, "
2854 "max commit age %u, max trans age %u\n",
2855 bdevname(journal->j_dev_bd, b),
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04002856 SB_ONDISK_JOURNAL_SIZE(sb),
2857 SB_ONDISK_JOURNAL_1st_BLOCK(sb),
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002858 journal->j_trans_max,
2859 journal->j_max_batch,
2860 journal->j_max_commit_age, journal->j_max_trans_age);
2861
2862 brelse(bhjh);
2863
2864 journal->j_list_bitmap_index = 0;
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04002865 journal_list_init(sb);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002866
2867 memset(journal->j_list_hash_table, 0,
2868 JOURNAL_HASH_SIZE * sizeof(struct reiserfs_journal_cnode *));
2869
2870 INIT_LIST_HEAD(&journal->j_dirty_buffers);
2871 spin_lock_init(&journal->j_dirty_buffers_lock);
2872
2873 journal->j_start = 0;
2874 journal->j_len = 0;
2875 journal->j_len_alloc = 0;
2876 atomic_set(&(journal->j_wcount), 0);
2877 atomic_set(&(journal->j_async_throttle), 0);
2878 journal->j_bcount = 0;
2879 journal->j_trans_start_time = 0;
2880 journal->j_last = NULL;
2881 journal->j_first = NULL;
2882 init_waitqueue_head(&(journal->j_join_wait));
Jeff Mahoneyf68215c2008-07-25 01:46:38 -07002883 mutex_init(&journal->j_mutex);
Jeff Mahoneyafe70252008-07-25 01:46:39 -07002884 mutex_init(&journal->j_flush_mutex);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002885
2886 journal->j_trans_id = 10;
2887 journal->j_mount_id = 10;
2888 journal->j_state = 0;
2889 atomic_set(&(journal->j_jlock), 0);
2890 journal->j_cnode_free_list = allocate_cnodes(num_cnodes);
2891 journal->j_cnode_free_orig = journal->j_cnode_free_list;
2892 journal->j_cnode_free = journal->j_cnode_free_list ? num_cnodes : 0;
2893 journal->j_cnode_used = 0;
2894 journal->j_must_wait = 0;
2895
Jeff Mahoney576f6d72005-11-29 19:34:39 -08002896 if (journal->j_cnode_free == 0) {
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04002897 reiserfs_warning(sb, "journal-2004", "Journal cnode memory "
Jeff Mahoney576f6d72005-11-29 19:34:39 -08002898 "allocation failed (%ld bytes). Journal is "
2899 "too large for available memory. Usually "
2900 "this is due to a journal that is too large.",
2901 sizeof (struct reiserfs_journal_cnode) * num_cnodes);
2902 goto free_and_return;
2903 }
2904
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04002905 init_journal_hash(sb);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002906 jl = journal->j_current_jl;
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04002907 jl->j_list_bitmap = get_list_bitmap(sb, jl);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002908 if (!jl->j_list_bitmap) {
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04002909 reiserfs_warning(sb, "journal-2005",
Jeff Mahoney45b03d52009-03-30 14:02:21 -04002910 "get_list_bitmap failed for journal list 0");
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002911 goto free_and_return;
2912 }
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04002913 if (journal_read(sb) < 0) {
2914 reiserfs_warning(sb, "reiserfs-2006",
Jeff Mahoney45b03d52009-03-30 14:02:21 -04002915 "Replay Failure, unable to mount");
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002916 goto free_and_return;
2917 }
2918
2919 reiserfs_mounted_fs_count++;
2920 if (reiserfs_mounted_fs_count <= 1)
2921 commit_wq = create_workqueue("reiserfs");
2922
David Howellsc4028952006-11-22 14:57:56 +00002923 INIT_DELAYED_WORK(&journal->j_work, flush_async_commits);
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04002924 journal->j_work_sb = sb;
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002925 return 0;
2926 free_and_return:
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04002927 free_journal_ram(sb);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002928 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002929}
2930
2931/*
2932** test for a polite end of the current transaction. Used by file_write, and should
2933** be used by delete to make sure they don't write more than can fit inside a single
2934** transaction
2935*/
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002936int journal_transaction_should_end(struct reiserfs_transaction_handle *th,
2937 int new_alloc)
2938{
2939 struct reiserfs_journal *journal = SB_JOURNAL(th->t_super);
2940 time_t now = get_seconds();
2941 /* cannot restart while nested */
2942 BUG_ON(!th->t_trans_id);
2943 if (th->t_refcount > 1)
2944 return 0;
2945 if (journal->j_must_wait > 0 ||
2946 (journal->j_len_alloc + new_alloc) >= journal->j_max_batch ||
2947 atomic_read(&(journal->j_jlock)) ||
2948 (now - journal->j_trans_start_time) > journal->j_max_trans_age ||
2949 journal->j_cnode_free < (journal->j_trans_max * 3)) {
2950 return 1;
2951 }
Chris Mason6ae1ea42006-02-01 03:06:50 -08002952 /* protected by the BKL here */
2953 journal->j_len_alloc += new_alloc;
2954 th->t_blocks_allocated += new_alloc ;
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002955 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002956}
2957
Jeff Mahoney0222e652009-03-30 14:02:44 -04002958/* this must be called inside a transaction, and requires the
Linus Torvalds1da177e2005-04-16 15:20:36 -07002959** kernel_lock to be held
2960*/
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002961void reiserfs_block_writes(struct reiserfs_transaction_handle *th)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002962{
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002963 struct reiserfs_journal *journal = SB_JOURNAL(th->t_super);
2964 BUG_ON(!th->t_trans_id);
2965 journal->j_must_wait = 1;
2966 set_bit(J_WRITERS_BLOCKED, &journal->j_state);
2967 return;
2968}
2969
2970/* this must be called without a transaction started, and does not
2971** require BKL
2972*/
2973void reiserfs_allow_writes(struct super_block *s)
2974{
2975 struct reiserfs_journal *journal = SB_JOURNAL(s);
2976 clear_bit(J_WRITERS_BLOCKED, &journal->j_state);
2977 wake_up(&journal->j_join_wait);
2978}
2979
2980/* this must be called without a transaction started, and does not
2981** require BKL
2982*/
2983void reiserfs_wait_on_write_block(struct super_block *s)
2984{
2985 struct reiserfs_journal *journal = SB_JOURNAL(s);
2986 wait_event(journal->j_join_wait,
2987 !test_bit(J_WRITERS_BLOCKED, &journal->j_state));
2988}
2989
2990static void queue_log_writer(struct super_block *s)
2991{
2992 wait_queue_t wait;
2993 struct reiserfs_journal *journal = SB_JOURNAL(s);
2994 set_bit(J_WRITERS_QUEUED, &journal->j_state);
2995
2996 /*
2997 * we don't want to use wait_event here because
2998 * we only want to wait once.
2999 */
3000 init_waitqueue_entry(&wait, current);
3001 add_wait_queue(&journal->j_join_wait, &wait);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003002 set_current_state(TASK_UNINTERRUPTIBLE);
Frederic Weisbecker8ebc4232009-04-07 04:19:49 +02003003 if (test_bit(J_WRITERS_QUEUED, &journal->j_state)) {
3004 reiserfs_write_unlock(s);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003005 schedule();
Frederic Weisbecker8ebc4232009-04-07 04:19:49 +02003006 reiserfs_write_lock(s);
3007 }
Milind Arun Choudhary5ab2f7e2007-05-08 00:30:51 -07003008 __set_current_state(TASK_RUNNING);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003009 remove_wait_queue(&journal->j_join_wait, &wait);
3010}
3011
3012static void wake_queued_writers(struct super_block *s)
3013{
3014 struct reiserfs_journal *journal = SB_JOURNAL(s);
3015 if (test_and_clear_bit(J_WRITERS_QUEUED, &journal->j_state))
3016 wake_up(&journal->j_join_wait);
3017}
3018
Jeff Mahoney600ed412009-03-30 14:02:17 -04003019static void let_transaction_grow(struct super_block *sb, unsigned int trans_id)
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003020{
3021 struct reiserfs_journal *journal = SB_JOURNAL(sb);
3022 unsigned long bcount = journal->j_bcount;
3023 while (1) {
Frederic Weisbecker8ebc4232009-04-07 04:19:49 +02003024 reiserfs_write_unlock(sb);
Nishanth Aravamudan041e0e32005-09-10 00:27:23 -07003025 schedule_timeout_uninterruptible(1);
Frederic Weisbecker8ebc4232009-04-07 04:19:49 +02003026 reiserfs_write_lock(sb);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003027 journal->j_current_jl->j_state |= LIST_COMMIT_PENDING;
3028 while ((atomic_read(&journal->j_wcount) > 0 ||
3029 atomic_read(&journal->j_jlock)) &&
3030 journal->j_trans_id == trans_id) {
3031 queue_log_writer(sb);
3032 }
3033 if (journal->j_trans_id != trans_id)
3034 break;
3035 if (bcount == journal->j_bcount)
3036 break;
3037 bcount = journal->j_bcount;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003038 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003039}
3040
3041/* join == true if you must join an existing transaction.
3042** join == false if you can deal with waiting for others to finish
3043**
3044** this will block until the transaction is joinable. send the number of blocks you
3045** expect to use in nblocks.
3046*/
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003047static int do_journal_begin_r(struct reiserfs_transaction_handle *th,
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04003048 struct super_block *sb, unsigned long nblocks,
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003049 int join)
3050{
3051 time_t now = get_seconds();
Jeff Mahoney600ed412009-03-30 14:02:17 -04003052 unsigned int old_trans_id;
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04003053 struct reiserfs_journal *journal = SB_JOURNAL(sb);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003054 struct reiserfs_transaction_handle myth;
3055 int sched_count = 0;
3056 int retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003057
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04003058 reiserfs_check_lock_depth(sb, "journal_begin");
Eric Sesterhenn14a61442006-10-03 23:36:38 +02003059 BUG_ON(nblocks > journal->j_trans_max);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003060
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04003061 PROC_INFO_INC(sb, journal.journal_being);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003062 /* set here for journal_join */
3063 th->t_refcount = 1;
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04003064 th->t_super = sb;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003065
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003066 relock:
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04003067 lock_journal(sb);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003068 if (join != JBEGIN_ABORT && reiserfs_is_journal_aborted(journal)) {
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04003069 unlock_journal(sb);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003070 retval = journal->j_errno;
3071 goto out_fail;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003072 }
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003073 journal->j_bcount++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003074
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003075 if (test_bit(J_WRITERS_BLOCKED, &journal->j_state)) {
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04003076 unlock_journal(sb);
Frederic Weisbecker8ebc4232009-04-07 04:19:49 +02003077 reiserfs_write_unlock(sb);
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04003078 reiserfs_wait_on_write_block(sb);
Frederic Weisbecker8ebc4232009-04-07 04:19:49 +02003079 reiserfs_write_lock(sb);
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04003080 PROC_INFO_INC(sb, journal.journal_relock_writers);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003081 goto relock;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003082 }
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003083 now = get_seconds();
Linus Torvalds1da177e2005-04-16 15:20:36 -07003084
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003085 /* if there is no room in the journal OR
Jeff Mahoney0222e652009-03-30 14:02:44 -04003086 ** 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 -07003087 ** we don't sleep if there aren't other writers
3088 */
3089
3090 if ((!join && journal->j_must_wait > 0) ||
3091 (!join
3092 && (journal->j_len_alloc + nblocks + 2) >= journal->j_max_batch)
3093 || (!join && atomic_read(&journal->j_wcount) > 0
3094 && journal->j_trans_start_time > 0
3095 && (now - journal->j_trans_start_time) >
3096 journal->j_max_trans_age) || (!join
3097 && atomic_read(&journal->j_jlock))
3098 || (!join && journal->j_cnode_free < (journal->j_trans_max * 3))) {
3099
3100 old_trans_id = journal->j_trans_id;
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04003101 unlock_journal(sb); /* allow others to finish this transaction */
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003102
3103 if (!join && (journal->j_len_alloc + nblocks + 2) >=
3104 journal->j_max_batch &&
3105 ((journal->j_len + nblocks + 2) * 100) <
3106 (journal->j_len_alloc * 75)) {
3107 if (atomic_read(&journal->j_wcount) > 10) {
3108 sched_count++;
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04003109 queue_log_writer(sb);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003110 goto relock;
3111 }
3112 }
3113 /* don't mess with joining the transaction if all we have to do is
3114 * wait for someone else to do a commit
3115 */
3116 if (atomic_read(&journal->j_jlock)) {
3117 while (journal->j_trans_id == old_trans_id &&
3118 atomic_read(&journal->j_jlock)) {
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04003119 queue_log_writer(sb);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003120 }
3121 goto relock;
3122 }
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04003123 retval = journal_join(&myth, sb, 1);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003124 if (retval)
3125 goto out_fail;
3126
3127 /* someone might have ended the transaction while we joined */
3128 if (old_trans_id != journal->j_trans_id) {
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04003129 retval = do_journal_end(&myth, sb, 1, 0);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003130 } else {
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04003131 retval = do_journal_end(&myth, sb, 1, COMMIT_NOW);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003132 }
3133
3134 if (retval)
3135 goto out_fail;
3136
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04003137 PROC_INFO_INC(sb, journal.journal_relock_wcount);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003138 goto relock;
3139 }
3140 /* we are the first writer, set trans_id */
3141 if (journal->j_trans_start_time == 0) {
3142 journal->j_trans_start_time = get_seconds();
3143 }
3144 atomic_inc(&(journal->j_wcount));
3145 journal->j_len_alloc += nblocks;
3146 th->t_blocks_logged = 0;
3147 th->t_blocks_allocated = nblocks;
3148 th->t_trans_id = journal->j_trans_id;
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04003149 unlock_journal(sb);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003150 INIT_LIST_HEAD(&th->t_list);
3151 get_fs_excl();
3152 return 0;
3153
3154 out_fail:
3155 memset(th, 0, sizeof(*th));
3156 /* Re-set th->t_super, so we can properly keep track of how many
3157 * persistent transactions there are. We need to do this so if this
3158 * call is part of a failed restart_transaction, we can free it later */
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04003159 th->t_super = sb;
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003160 return retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003161}
3162
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003163struct reiserfs_transaction_handle *reiserfs_persistent_transaction(struct
3164 super_block
3165 *s,
3166 int nblocks)
3167{
3168 int ret;
3169 struct reiserfs_transaction_handle *th;
3170
3171 /* if we're nesting into an existing transaction. It will be
3172 ** persistent on its own
3173 */
3174 if (reiserfs_transaction_running(s)) {
3175 th = current->journal_info;
3176 th->t_refcount++;
Eric Sesterhenn14a61442006-10-03 23:36:38 +02003177 BUG_ON(th->t_refcount < 2);
3178
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003179 return th;
3180 }
Pekka Enbergd739b422006-02-01 03:06:43 -08003181 th = kmalloc(sizeof(struct reiserfs_transaction_handle), GFP_NOFS);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003182 if (!th)
3183 return NULL;
3184 ret = journal_begin(th, s, nblocks);
3185 if (ret) {
Pekka Enbergd739b422006-02-01 03:06:43 -08003186 kfree(th);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003187 return NULL;
3188 }
3189
3190 SB_JOURNAL(s)->j_persistent_trans++;
3191 return th;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003192}
3193
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003194int reiserfs_end_persistent_transaction(struct reiserfs_transaction_handle *th)
3195{
3196 struct super_block *s = th->t_super;
3197 int ret = 0;
3198 if (th->t_trans_id)
3199 ret = journal_end(th, th->t_super, th->t_blocks_allocated);
3200 else
3201 ret = -EIO;
3202 if (th->t_refcount == 0) {
3203 SB_JOURNAL(s)->j_persistent_trans--;
Pekka Enbergd739b422006-02-01 03:06:43 -08003204 kfree(th);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003205 }
3206 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003207}
3208
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003209static int journal_join(struct reiserfs_transaction_handle *th,
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04003210 struct super_block *sb, unsigned long nblocks)
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003211{
3212 struct reiserfs_transaction_handle *cur_th = current->journal_info;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003213
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003214 /* this keeps do_journal_end from NULLing out the current->journal_info
3215 ** pointer
3216 */
3217 th->t_handle_save = cur_th;
Eric Sesterhenn14a61442006-10-03 23:36:38 +02003218 BUG_ON(cur_th && cur_th->t_refcount > 1);
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04003219 return do_journal_begin_r(th, sb, nblocks, JBEGIN_JOIN);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003220}
3221
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003222int journal_join_abort(struct reiserfs_transaction_handle *th,
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04003223 struct super_block *sb, unsigned long nblocks)
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003224{
3225 struct reiserfs_transaction_handle *cur_th = current->journal_info;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003226
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003227 /* this keeps do_journal_end from NULLing out the current->journal_info
3228 ** pointer
3229 */
3230 th->t_handle_save = cur_th;
Eric Sesterhenn14a61442006-10-03 23:36:38 +02003231 BUG_ON(cur_th && cur_th->t_refcount > 1);
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04003232 return do_journal_begin_r(th, sb, nblocks, JBEGIN_ABORT);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003233}
3234
3235int journal_begin(struct reiserfs_transaction_handle *th,
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04003236 struct super_block *sb, unsigned long nblocks)
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003237{
3238 struct reiserfs_transaction_handle *cur_th = current->journal_info;
3239 int ret;
3240
3241 th->t_handle_save = NULL;
3242 if (cur_th) {
3243 /* we are nesting into the current transaction */
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04003244 if (cur_th->t_super == sb) {
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003245 BUG_ON(!cur_th->t_refcount);
3246 cur_th->t_refcount++;
3247 memcpy(th, cur_th, sizeof(*th));
3248 if (th->t_refcount <= 1)
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04003249 reiserfs_warning(sb, "reiserfs-2005",
Jeff Mahoney45b03d52009-03-30 14:02:21 -04003250 "BAD: refcount <= 1, but "
3251 "journal_info != 0");
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003252 return 0;
3253 } else {
3254 /* we've ended up with a handle from a different filesystem.
3255 ** save it and restore on journal_end. This should never
3256 ** really happen...
3257 */
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04003258 reiserfs_warning(sb, "clm-2100",
Jeff Mahoney45b03d52009-03-30 14:02:21 -04003259 "nesting info a different FS");
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003260 th->t_handle_save = current->journal_info;
3261 current->journal_info = th;
3262 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003263 } else {
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003264 current->journal_info = th;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003265 }
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04003266 ret = do_journal_begin_r(th, sb, nblocks, JBEGIN_REG);
Eric Sesterhenn14a61442006-10-03 23:36:38 +02003267 BUG_ON(current->journal_info != th);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003268
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003269 /* I guess this boils down to being the reciprocal of clm-2100 above.
3270 * If do_journal_begin_r fails, we need to put it back, since journal_end
3271 * won't be called to do it. */
3272 if (ret)
3273 current->journal_info = th->t_handle_save;
3274 else
3275 BUG_ON(!th->t_refcount);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003276
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003277 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003278}
3279
3280/*
3281** puts bh into the current transaction. If it was already there, reorders removes the
3282** old pointers from the hash, and puts new ones in (to make sure replay happen in the right order).
3283**
3284** if it was dirty, cleans and files onto the clean list. I can't let it be dirty again until the
3285** transaction is committed.
Jeff Mahoney0222e652009-03-30 14:02:44 -04003286**
Linus Torvalds1da177e2005-04-16 15:20:36 -07003287** if j_len, is bigger than j_len_alloc, it pushes j_len_alloc to 10 + j_len.
3288*/
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003289int journal_mark_dirty(struct reiserfs_transaction_handle *th,
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04003290 struct super_block *sb, struct buffer_head *bh)
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003291{
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04003292 struct reiserfs_journal *journal = SB_JOURNAL(sb);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003293 struct reiserfs_journal_cnode *cn = NULL;
3294 int count_already_incd = 0;
3295 int prepared = 0;
3296 BUG_ON(!th->t_trans_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003297
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04003298 PROC_INFO_INC(sb, journal.mark_dirty);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003299 if (th->t_trans_id != journal->j_trans_id) {
Jeff Mahoneyc3a9c212009-03-30 14:02:25 -04003300 reiserfs_panic(th->t_super, "journal-1577",
3301 "handle trans id %ld != current trans id %ld",
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003302 th->t_trans_id, journal->j_trans_id);
3303 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003304
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04003305 sb->s_dirt = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003306
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003307 prepared = test_clear_buffer_journal_prepared(bh);
3308 clear_buffer_journal_restore_dirty(bh);
3309 /* already in this transaction, we are done */
3310 if (buffer_journaled(bh)) {
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04003311 PROC_INFO_INC(sb, journal.mark_dirty_already);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003312 return 0;
3313 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003314
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003315 /* this must be turned into a panic instead of a warning. We can't allow
3316 ** a dirty or journal_dirty or locked buffer to be logged, as some changes
3317 ** could get to disk too early. NOT GOOD.
3318 */
3319 if (!prepared || buffer_dirty(bh)) {
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04003320 reiserfs_warning(sb, "journal-1777",
Jeff Mahoney45b03d52009-03-30 14:02:21 -04003321 "buffer %llu bad state "
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003322 "%cPREPARED %cLOCKED %cDIRTY %cJDIRTY_WAIT",
3323 (unsigned long long)bh->b_blocknr,
3324 prepared ? ' ' : '!',
3325 buffer_locked(bh) ? ' ' : '!',
3326 buffer_dirty(bh) ? ' ' : '!',
3327 buffer_journal_dirty(bh) ? ' ' : '!');
3328 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003329
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003330 if (atomic_read(&(journal->j_wcount)) <= 0) {
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04003331 reiserfs_warning(sb, "journal-1409",
Jeff Mahoney45b03d52009-03-30 14:02:21 -04003332 "returning because j_wcount was %d",
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003333 atomic_read(&(journal->j_wcount)));
3334 return 1;
3335 }
Jeff Mahoney0222e652009-03-30 14:02:44 -04003336 /* this error means I've screwed up, and we've overflowed the transaction.
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003337 ** Nothing can be done here, except make the FS readonly or panic.
3338 */
3339 if (journal->j_len >= journal->j_trans_max) {
Jeff Mahoneyc3a9c212009-03-30 14:02:25 -04003340 reiserfs_panic(th->t_super, "journal-1413",
3341 "j_len (%lu) is too big",
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003342 journal->j_len);
3343 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003344
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003345 if (buffer_journal_dirty(bh)) {
3346 count_already_incd = 1;
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04003347 PROC_INFO_INC(sb, journal.mark_dirty_notjournal);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003348 clear_buffer_journal_dirty(bh);
3349 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003350
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003351 if (journal->j_len > journal->j_len_alloc) {
3352 journal->j_len_alloc = journal->j_len + JOURNAL_PER_BALANCE_CNT;
3353 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003354
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003355 set_buffer_journaled(bh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003356
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003357 /* now put this guy on the end */
3358 if (!cn) {
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04003359 cn = get_cnode(sb);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003360 if (!cn) {
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04003361 reiserfs_panic(sb, "journal-4", "get_cnode failed!");
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003362 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003363
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003364 if (th->t_blocks_logged == th->t_blocks_allocated) {
3365 th->t_blocks_allocated += JOURNAL_PER_BALANCE_CNT;
3366 journal->j_len_alloc += JOURNAL_PER_BALANCE_CNT;
3367 }
3368 th->t_blocks_logged++;
3369 journal->j_len++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003370
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003371 cn->bh = bh;
3372 cn->blocknr = bh->b_blocknr;
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04003373 cn->sb = sb;
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003374 cn->jlist = NULL;
3375 insert_journal_hash(journal->j_hash_table, cn);
3376 if (!count_already_incd) {
3377 get_bh(bh);
3378 }
3379 }
3380 cn->next = NULL;
3381 cn->prev = journal->j_last;
3382 cn->bh = bh;
3383 if (journal->j_last) {
3384 journal->j_last->next = cn;
3385 journal->j_last = cn;
3386 } else {
3387 journal->j_first = cn;
3388 journal->j_last = cn;
3389 }
3390 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003391}
3392
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003393int journal_end(struct reiserfs_transaction_handle *th,
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04003394 struct super_block *sb, unsigned long nblocks)
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003395{
3396 if (!current->journal_info && th->t_refcount > 1)
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04003397 reiserfs_warning(sb, "REISER-NESTING",
Jeff Mahoney45b03d52009-03-30 14:02:21 -04003398 "th NULL, refcount %d", th->t_refcount);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003399
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003400 if (!th->t_trans_id) {
3401 WARN_ON(1);
3402 return -EIO;
3403 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003404
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003405 th->t_refcount--;
3406 if (th->t_refcount > 0) {
3407 struct reiserfs_transaction_handle *cur_th =
3408 current->journal_info;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003409
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003410 /* we aren't allowed to close a nested transaction on a different
3411 ** filesystem from the one in the task struct
3412 */
Eric Sesterhenn14a61442006-10-03 23:36:38 +02003413 BUG_ON(cur_th->t_super != th->t_super);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003414
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003415 if (th != cur_th) {
3416 memcpy(current->journal_info, th, sizeof(*th));
3417 th->t_trans_id = 0;
3418 }
3419 return 0;
3420 } else {
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04003421 return do_journal_end(th, sb, nblocks, 0);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003422 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003423}
3424
Jeff Mahoney0222e652009-03-30 14:02:44 -04003425/* removes from the current transaction, relsing and descrementing any counters.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003426** also files the removed buffer directly onto the clean list
3427**
3428** called by journal_mark_freed when a block has been deleted
3429**
3430** returns 1 if it cleaned and relsed the buffer. 0 otherwise
3431*/
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04003432static int remove_from_transaction(struct super_block *sb,
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003433 b_blocknr_t blocknr, int already_cleaned)
3434{
3435 struct buffer_head *bh;
3436 struct reiserfs_journal_cnode *cn;
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04003437 struct reiserfs_journal *journal = SB_JOURNAL(sb);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003438 int ret = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003439
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04003440 cn = get_journal_hash_dev(sb, journal->j_hash_table, blocknr);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003441 if (!cn || !cn->bh) {
3442 return ret;
3443 }
3444 bh = cn->bh;
3445 if (cn->prev) {
3446 cn->prev->next = cn->next;
3447 }
3448 if (cn->next) {
3449 cn->next->prev = cn->prev;
3450 }
3451 if (cn == journal->j_first) {
3452 journal->j_first = cn->next;
3453 }
3454 if (cn == journal->j_last) {
3455 journal->j_last = cn->prev;
3456 }
3457 if (bh)
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04003458 remove_journal_hash(sb, journal->j_hash_table, NULL,
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003459 bh->b_blocknr, 0);
3460 clear_buffer_journaled(bh); /* don't log this one */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003461
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003462 if (!already_cleaned) {
3463 clear_buffer_journal_dirty(bh);
3464 clear_buffer_dirty(bh);
3465 clear_buffer_journal_test(bh);
3466 put_bh(bh);
3467 if (atomic_read(&(bh->b_count)) < 0) {
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04003468 reiserfs_warning(sb, "journal-1752",
Jeff Mahoney45b03d52009-03-30 14:02:21 -04003469 "b_count < 0");
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003470 }
3471 ret = 1;
3472 }
3473 journal->j_len--;
3474 journal->j_len_alloc--;
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04003475 free_cnode(sb, cn);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003476 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003477}
3478
3479/*
3480** for any cnode in a journal list, it can only be dirtied of all the
Matt LaPlante0779bf22006-11-30 05:24:39 +01003481** transactions that include it are committed to disk.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003482** this checks through each transaction, and returns 1 if you are allowed to dirty,
3483** and 0 if you aren't
3484**
3485** it is called by dirty_journal_list, which is called after flush_commit_list has gotten all the log
3486** blocks for a given transaction on disk
3487**
3488*/
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003489static int can_dirty(struct reiserfs_journal_cnode *cn)
3490{
3491 struct super_block *sb = cn->sb;
3492 b_blocknr_t blocknr = cn->blocknr;
3493 struct reiserfs_journal_cnode *cur = cn->hprev;
3494 int can_dirty = 1;
3495
3496 /* first test hprev. These are all newer than cn, so any node here
3497 ** with the same block number and dev means this node can't be sent
3498 ** to disk right now.
3499 */
3500 while (cur && can_dirty) {
3501 if (cur->jlist && cur->bh && cur->blocknr && cur->sb == sb &&
3502 cur->blocknr == blocknr) {
3503 can_dirty = 0;
3504 }
3505 cur = cur->hprev;
3506 }
3507 /* then test hnext. These are all older than cn. As long as they
3508 ** are committed to the log, it is safe to write cn to disk
3509 */
3510 cur = cn->hnext;
3511 while (cur && can_dirty) {
3512 if (cur->jlist && cur->jlist->j_len > 0 &&
3513 atomic_read(&(cur->jlist->j_commit_left)) > 0 && cur->bh &&
3514 cur->blocknr && cur->sb == sb && cur->blocknr == blocknr) {
3515 can_dirty = 0;
3516 }
3517 cur = cur->hnext;
3518 }
3519 return can_dirty;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003520}
3521
3522/* syncs the commit blocks, but does not force the real buffers to disk
Jeff Mahoney0222e652009-03-30 14:02:44 -04003523** will wait until the current transaction is done/committed before returning
Linus Torvalds1da177e2005-04-16 15:20:36 -07003524*/
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003525int journal_end_sync(struct reiserfs_transaction_handle *th,
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04003526 struct super_block *sb, unsigned long nblocks)
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003527{
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04003528 struct reiserfs_journal *journal = SB_JOURNAL(sb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003529
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003530 BUG_ON(!th->t_trans_id);
3531 /* you can sync while nested, very, very bad */
Eric Sesterhenn14a61442006-10-03 23:36:38 +02003532 BUG_ON(th->t_refcount > 1);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003533 if (journal->j_len == 0) {
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04003534 reiserfs_prepare_for_journal(sb, SB_BUFFER_WITH_SB(sb),
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003535 1);
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04003536 journal_mark_dirty(th, sb, SB_BUFFER_WITH_SB(sb));
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003537 }
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04003538 return do_journal_end(th, sb, nblocks, COMMIT_NOW | WAIT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003539}
3540
3541/*
3542** writeback the pending async commits to disk
3543*/
David Howellsc4028952006-11-22 14:57:56 +00003544static void flush_async_commits(struct work_struct *work)
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003545{
David Howellsc4028952006-11-22 14:57:56 +00003546 struct reiserfs_journal *journal =
3547 container_of(work, struct reiserfs_journal, j_work.work);
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04003548 struct super_block *sb = journal->j_work_sb;
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003549 struct reiserfs_journal_list *jl;
3550 struct list_head *entry;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003551
Frederic Weisbecker8ebc4232009-04-07 04:19:49 +02003552 reiserfs_write_lock(sb);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003553 if (!list_empty(&journal->j_journal_list)) {
3554 /* last entry is the youngest, commit it and you get everything */
3555 entry = journal->j_journal_list.prev;
3556 jl = JOURNAL_LIST_ENTRY(entry);
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04003557 flush_commit_list(sb, jl, 1);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003558 }
Frederic Weisbecker8ebc4232009-04-07 04:19:49 +02003559 reiserfs_write_unlock(sb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003560}
3561
3562/*
3563** flushes any old transactions to disk
3564** ends the current transaction if it is too old
3565*/
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04003566int reiserfs_flush_old_commits(struct super_block *sb)
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003567{
3568 time_t now;
3569 struct reiserfs_transaction_handle th;
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04003570 struct reiserfs_journal *journal = SB_JOURNAL(sb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003571
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003572 now = get_seconds();
3573 /* safety check so we don't flush while we are replaying the log during
3574 * mount
3575 */
3576 if (list_empty(&journal->j_journal_list)) {
3577 return 0;
3578 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003579
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003580 /* check the current transaction. If there are no writers, and it is
3581 * too old, finish it, and force the commit blocks to disk
3582 */
3583 if (atomic_read(&journal->j_wcount) <= 0 &&
3584 journal->j_trans_start_time > 0 &&
3585 journal->j_len > 0 &&
3586 (now - journal->j_trans_start_time) > journal->j_max_trans_age) {
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04003587 if (!journal_join(&th, sb, 1)) {
3588 reiserfs_prepare_for_journal(sb,
3589 SB_BUFFER_WITH_SB(sb),
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003590 1);
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04003591 journal_mark_dirty(&th, sb,
3592 SB_BUFFER_WITH_SB(sb));
Linus Torvalds1da177e2005-04-16 15:20:36 -07003593
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003594 /* we're only being called from kreiserfsd, it makes no sense to do
3595 ** an async commit so that kreiserfsd can do it later
3596 */
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04003597 do_journal_end(&th, sb, 1, COMMIT_NOW | WAIT);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003598 }
3599 }
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04003600 return sb->s_dirt;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003601}
3602
3603/*
3604** 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 -04003605**
3606** 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 -07003607** the writers are done. By the time it wakes up, the transaction it was called has already ended, so it just
3608** flushes the commit list and returns 0.
3609**
3610** 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 -04003611**
Linus Torvalds1da177e2005-04-16 15:20:36 -07003612** Note, we can't allow the journal_end to proceed while there are still writers in the log.
3613*/
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003614static int check_journal_end(struct reiserfs_transaction_handle *th,
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04003615 struct super_block *sb, unsigned long nblocks,
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003616 int flags)
3617{
Linus Torvalds1da177e2005-04-16 15:20:36 -07003618
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003619 time_t now;
3620 int flush = flags & FLUSH_ALL;
3621 int commit_now = flags & COMMIT_NOW;
3622 int wait_on_commit = flags & WAIT;
3623 struct reiserfs_journal_list *jl;
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04003624 struct reiserfs_journal *journal = SB_JOURNAL(sb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003625
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003626 BUG_ON(!th->t_trans_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003627
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003628 if (th->t_trans_id != journal->j_trans_id) {
Jeff Mahoneyc3a9c212009-03-30 14:02:25 -04003629 reiserfs_panic(th->t_super, "journal-1577",
3630 "handle trans id %ld != current trans id %ld",
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003631 th->t_trans_id, journal->j_trans_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003632 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003633
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003634 journal->j_len_alloc -= (th->t_blocks_allocated - th->t_blocks_logged);
3635 if (atomic_read(&(journal->j_wcount)) > 0) { /* <= 0 is allowed. unmounting might not call begin */
3636 atomic_dec(&(journal->j_wcount));
3637 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003638
Jeff Mahoney0222e652009-03-30 14:02:44 -04003639 /* 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 -07003640 ** will be dealt with by next transaction that actually writes something, but should be taken
3641 ** care of in this trans
3642 */
Eric Sesterhenn14a61442006-10-03 23:36:38 +02003643 BUG_ON(journal->j_len == 0);
3644
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003645 /* if wcount > 0, and we are called to with flush or commit_now,
3646 ** we wait on j_join_wait. We will wake up when the last writer has
3647 ** finished the transaction, and started it on its way to the disk.
Jeff Mahoney0222e652009-03-30 14:02:44 -04003648 ** Then, we flush the commit or journal list, and just return 0
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003649 ** because the rest of journal end was already done for this transaction.
3650 */
3651 if (atomic_read(&(journal->j_wcount)) > 0) {
3652 if (flush || commit_now) {
3653 unsigned trans_id;
3654
3655 jl = journal->j_current_jl;
3656 trans_id = jl->j_trans_id;
3657 if (wait_on_commit)
3658 jl->j_state |= LIST_COMMIT_PENDING;
3659 atomic_set(&(journal->j_jlock), 1);
3660 if (flush) {
3661 journal->j_next_full_flush = 1;
3662 }
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04003663 unlock_journal(sb);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003664
3665 /* sleep while the current transaction is still j_jlocked */
3666 while (journal->j_trans_id == trans_id) {
3667 if (atomic_read(&journal->j_jlock)) {
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04003668 queue_log_writer(sb);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003669 } else {
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04003670 lock_journal(sb);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003671 if (journal->j_trans_id == trans_id) {
3672 atomic_set(&(journal->j_jlock),
3673 1);
3674 }
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04003675 unlock_journal(sb);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003676 }
3677 }
Eric Sesterhenn14a61442006-10-03 23:36:38 +02003678 BUG_ON(journal->j_trans_id == trans_id);
3679
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003680 if (commit_now
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04003681 && journal_list_still_alive(sb, trans_id)
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003682 && wait_on_commit) {
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04003683 flush_commit_list(sb, jl, 1);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003684 }
3685 return 0;
3686 }
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04003687 unlock_journal(sb);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003688 return 0;
3689 }
3690
3691 /* deal with old transactions where we are the last writers */
3692 now = get_seconds();
3693 if ((now - journal->j_trans_start_time) > journal->j_max_trans_age) {
3694 commit_now = 1;
3695 journal->j_next_async_flush = 1;
3696 }
3697 /* don't batch when someone is waiting on j_join_wait */
3698 /* don't batch when syncing the commit or flushing the whole trans */
3699 if (!(journal->j_must_wait > 0) && !(atomic_read(&(journal->j_jlock)))
3700 && !flush && !commit_now && (journal->j_len < journal->j_max_batch)
3701 && journal->j_len_alloc < journal->j_max_batch
3702 && journal->j_cnode_free > (journal->j_trans_max * 3)) {
3703 journal->j_bcount++;
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04003704 unlock_journal(sb);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003705 return 0;
3706 }
3707
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04003708 if (journal->j_start > SB_ONDISK_JOURNAL_SIZE(sb)) {
3709 reiserfs_panic(sb, "journal-003",
Jeff Mahoneyc3a9c212009-03-30 14:02:25 -04003710 "j_start (%ld) is too high",
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003711 journal->j_start);
3712 }
3713 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003714}
3715
3716/*
3717** Does all the work that makes deleting blocks safe.
3718** 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 -04003719**
Linus Torvalds1da177e2005-04-16 15:20:36 -07003720** otherwise:
3721** set a bit for the block in the journal bitmap. That will prevent it from being allocated for unformatted nodes
3722** before this transaction has finished.
3723**
3724** mark any cnodes for this block as BLOCK_FREED, and clear their bh pointers. That will prevent any old transactions with
3725** this block from trying to flush to the real location. Since we aren't removing the cnode from the journal_list_hash,
3726** the block can't be reallocated yet.
3727**
3728** Then remove it from the current transaction, decrementing any counters and filing it on the clean list.
3729*/
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003730int journal_mark_freed(struct reiserfs_transaction_handle *th,
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04003731 struct super_block *sb, b_blocknr_t blocknr)
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003732{
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04003733 struct reiserfs_journal *journal = SB_JOURNAL(sb);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003734 struct reiserfs_journal_cnode *cn = NULL;
3735 struct buffer_head *bh = NULL;
3736 struct reiserfs_list_bitmap *jb = NULL;
3737 int cleaned = 0;
3738 BUG_ON(!th->t_trans_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003739
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04003740 cn = get_journal_hash_dev(sb, journal->j_hash_table, blocknr);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003741 if (cn && cn->bh) {
3742 bh = cn->bh;
3743 get_bh(bh);
3744 }
3745 /* if it is journal new, we just remove it from this transaction */
3746 if (bh && buffer_journal_new(bh)) {
3747 clear_buffer_journal_new(bh);
3748 clear_prepared_bits(bh);
3749 reiserfs_clean_and_file_buffer(bh);
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04003750 cleaned = remove_from_transaction(sb, blocknr, cleaned);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003751 } else {
3752 /* set the bit for this block in the journal bitmap for this transaction */
3753 jb = journal->j_current_jl->j_list_bitmap;
3754 if (!jb) {
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04003755 reiserfs_panic(sb, "journal-1702",
Jeff Mahoneyc3a9c212009-03-30 14:02:25 -04003756 "journal_list_bitmap is NULL");
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003757 }
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04003758 set_bit_in_list_bitmap(sb, blocknr, jb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003759
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003760 /* Note, the entire while loop is not allowed to schedule. */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003761
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003762 if (bh) {
3763 clear_prepared_bits(bh);
3764 reiserfs_clean_and_file_buffer(bh);
3765 }
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04003766 cleaned = remove_from_transaction(sb, blocknr, cleaned);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003767
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003768 /* find all older transactions with this block, make sure they don't try to write it out */
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04003769 cn = get_journal_hash_dev(sb, journal->j_list_hash_table,
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003770 blocknr);
3771 while (cn) {
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04003772 if (sb == cn->sb && blocknr == cn->blocknr) {
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003773 set_bit(BLOCK_FREED, &cn->state);
3774 if (cn->bh) {
3775 if (!cleaned) {
3776 /* remove_from_transaction will brelse the buffer if it was
3777 ** in the current trans
3778 */
3779 clear_buffer_journal_dirty(cn->
3780 bh);
3781 clear_buffer_dirty(cn->bh);
3782 clear_buffer_journal_test(cn->
3783 bh);
3784 cleaned = 1;
3785 put_bh(cn->bh);
3786 if (atomic_read
3787 (&(cn->bh->b_count)) < 0) {
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04003788 reiserfs_warning(sb,
Jeff Mahoney45b03d52009-03-30 14:02:21 -04003789 "journal-2138",
3790 "cn->bh->b_count < 0");
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003791 }
3792 }
3793 if (cn->jlist) { /* since we are clearing the bh, we MUST dec nonzerolen */
3794 atomic_dec(&
3795 (cn->jlist->
3796 j_nonzerolen));
3797 }
3798 cn->bh = NULL;
3799 }
3800 }
3801 cn = cn->hnext;
3802 }
3803 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003804
Chris Mason398c95b2007-10-16 23:29:44 -07003805 if (bh)
3806 release_buffer_page(bh); /* get_hash grabs the buffer */
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003807 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003808}
3809
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003810void reiserfs_update_inode_transaction(struct inode *inode)
3811{
3812 struct reiserfs_journal *journal = SB_JOURNAL(inode->i_sb);
3813 REISERFS_I(inode)->i_jl = journal->j_current_jl;
3814 REISERFS_I(inode)->i_trans_id = journal->j_trans_id;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003815}
3816
3817/*
3818 * returns -1 on error, 0 if no commits/barriers were done and 1
3819 * if a transaction was actually committed and the barrier was done
3820 */
3821static int __commit_trans_jl(struct inode *inode, unsigned long id,
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003822 struct reiserfs_journal_list *jl)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003823{
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003824 struct reiserfs_transaction_handle th;
3825 struct super_block *sb = inode->i_sb;
3826 struct reiserfs_journal *journal = SB_JOURNAL(sb);
3827 int ret = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003828
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003829 /* is it from the current transaction, or from an unknown transaction? */
3830 if (id == journal->j_trans_id) {
3831 jl = journal->j_current_jl;
3832 /* try to let other writers come in and grow this transaction */
3833 let_transaction_grow(sb, id);
3834 if (journal->j_trans_id != id) {
3835 goto flush_commit_only;
3836 }
3837
3838 ret = journal_begin(&th, sb, 1);
3839 if (ret)
3840 return ret;
3841
3842 /* someone might have ended this transaction while we joined */
3843 if (journal->j_trans_id != id) {
3844 reiserfs_prepare_for_journal(sb, SB_BUFFER_WITH_SB(sb),
3845 1);
3846 journal_mark_dirty(&th, sb, SB_BUFFER_WITH_SB(sb));
3847 ret = journal_end(&th, sb, 1);
3848 goto flush_commit_only;
3849 }
3850
3851 ret = journal_end_sync(&th, sb, 1);
3852 if (!ret)
3853 ret = 1;
3854
3855 } else {
3856 /* this gets tricky, we have to make sure the journal list in
3857 * the inode still exists. We know the list is still around
3858 * if we've got a larger transaction id than the oldest list
3859 */
3860 flush_commit_only:
3861 if (journal_list_still_alive(inode->i_sb, id)) {
3862 /*
3863 * we only set ret to 1 when we know for sure
3864 * the barrier hasn't been started yet on the commit
3865 * block.
3866 */
3867 if (atomic_read(&jl->j_commit_left) > 1)
3868 ret = 1;
3869 flush_commit_list(sb, jl, 1);
3870 if (journal->j_errno)
3871 ret = journal->j_errno;
3872 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003873 }
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003874 /* otherwise the list is gone, and long since committed */
3875 return ret;
3876}
Linus Torvalds1da177e2005-04-16 15:20:36 -07003877
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003878int reiserfs_commit_for_inode(struct inode *inode)
3879{
Jeff Mahoney600ed412009-03-30 14:02:17 -04003880 unsigned int id = REISERFS_I(inode)->i_trans_id;
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003881 struct reiserfs_journal_list *jl = REISERFS_I(inode)->i_jl;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003882
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003883 /* for the whole inode, assume unset id means it was
3884 * changed in the current transaction. More conservative
Linus Torvalds1da177e2005-04-16 15:20:36 -07003885 */
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003886 if (!id || !jl) {
3887 reiserfs_update_inode_transaction(inode);
3888 id = REISERFS_I(inode)->i_trans_id;
3889 /* jl will be updated in __commit_trans_jl */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003890 }
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003891
3892 return __commit_trans_jl(inode, id, jl);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003893}
3894
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04003895void reiserfs_restore_prepared_buffer(struct super_block *sb,
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003896 struct buffer_head *bh)
3897{
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04003898 struct reiserfs_journal *journal = SB_JOURNAL(sb);
3899 PROC_INFO_INC(sb, journal.restore_prepared);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003900 if (!bh) {
3901 return;
3902 }
3903 if (test_clear_buffer_journal_restore_dirty(bh) &&
3904 buffer_journal_dirty(bh)) {
3905 struct reiserfs_journal_cnode *cn;
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04003906 cn = get_journal_hash_dev(sb,
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003907 journal->j_list_hash_table,
3908 bh->b_blocknr);
3909 if (cn && can_dirty(cn)) {
3910 set_buffer_journal_test(bh);
3911 mark_buffer_dirty(bh);
3912 }
3913 }
3914 clear_buffer_journal_prepared(bh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003915}
3916
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003917extern struct tree_balance *cur_tb;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003918/*
3919** before we can change a metadata block, we have to make sure it won't
3920** be written to disk while we are altering it. So, we must:
3921** clean it
3922** wait on it.
Jeff Mahoney0222e652009-03-30 14:02:44 -04003923**
Linus Torvalds1da177e2005-04-16 15:20:36 -07003924*/
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04003925int reiserfs_prepare_for_journal(struct super_block *sb,
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003926 struct buffer_head *bh, int wait)
3927{
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04003928 PROC_INFO_INC(sb, journal.prepare);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003929
Nick Pigginca5de402008-08-02 12:02:13 +02003930 if (!trylock_buffer(bh)) {
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003931 if (!wait)
3932 return 0;
3933 lock_buffer(bh);
3934 }
3935 set_buffer_journal_prepared(bh);
3936 if (test_clear_buffer_dirty(bh) && buffer_journal_dirty(bh)) {
3937 clear_buffer_journal_test(bh);
3938 set_buffer_journal_restore_dirty(bh);
3939 }
3940 unlock_buffer(bh);
3941 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003942}
3943
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003944static void flush_old_journal_lists(struct super_block *s)
3945{
3946 struct reiserfs_journal *journal = SB_JOURNAL(s);
3947 struct reiserfs_journal_list *jl;
3948 struct list_head *entry;
3949 time_t now = get_seconds();
Linus Torvalds1da177e2005-04-16 15:20:36 -07003950
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003951 while (!list_empty(&journal->j_journal_list)) {
3952 entry = journal->j_journal_list.next;
3953 jl = JOURNAL_LIST_ENTRY(entry);
3954 /* this check should always be run, to send old lists to disk */
Chris Masona3172022006-09-29 01:59:56 -07003955 if (jl->j_timestamp < (now - (JOURNAL_MAX_TRANS_AGE * 4)) &&
3956 atomic_read(&jl->j_commit_left) == 0 &&
3957 test_transaction(s, jl)) {
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003958 flush_used_journal_lists(s, jl);
3959 } else {
3960 break;
3961 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003962 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003963}
3964
Jeff Mahoney0222e652009-03-30 14:02:44 -04003965/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003966** long and ugly. If flush, will not return until all commit
3967** blocks and all real buffers in the trans are on disk.
3968** If no_async, won't return until all commit blocks are on disk.
3969**
3970** keep reading, there are comments as you go along
3971**
3972** If the journal is aborted, we just clean up. Things like flushing
3973** journal lists, etc just won't happen.
3974*/
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003975static int do_journal_end(struct reiserfs_transaction_handle *th,
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04003976 struct super_block *sb, unsigned long nblocks,
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003977 int flags)
3978{
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04003979 struct reiserfs_journal *journal = SB_JOURNAL(sb);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003980 struct reiserfs_journal_cnode *cn, *next, *jl_cn;
3981 struct reiserfs_journal_cnode *last_cn = NULL;
3982 struct reiserfs_journal_desc *desc;
3983 struct reiserfs_journal_commit *commit;
3984 struct buffer_head *c_bh; /* commit bh */
3985 struct buffer_head *d_bh; /* desc bh */
3986 int cur_write_start = 0; /* start index of current log write */
3987 int old_start;
3988 int i;
Alexander Zarochentseva44c94a2006-03-25 03:06:59 -08003989 int flush;
3990 int wait_on_commit;
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003991 struct reiserfs_journal_list *jl, *temp_jl;
3992 struct list_head *entry, *safe;
3993 unsigned long jindex;
Jeff Mahoney600ed412009-03-30 14:02:17 -04003994 unsigned int commit_trans_id;
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003995 int trans_half;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003996
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003997 BUG_ON(th->t_refcount > 1);
3998 BUG_ON(!th->t_trans_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003999
Alexander Zarochentseva44c94a2006-03-25 03:06:59 -08004000 /* protect flush_older_commits from doing mistakes if the
4001 transaction ID counter gets overflowed. */
Jeff Mahoney600ed412009-03-30 14:02:17 -04004002 if (th->t_trans_id == ~0U)
Alexander Zarochentseva44c94a2006-03-25 03:06:59 -08004003 flags |= FLUSH_ALL | COMMIT_NOW | WAIT;
4004 flush = flags & FLUSH_ALL;
4005 wait_on_commit = flags & WAIT;
4006
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07004007 put_fs_excl();
4008 current->journal_info = th->t_handle_save;
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04004009 reiserfs_check_lock_depth(sb, "journal end");
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07004010 if (journal->j_len == 0) {
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04004011 reiserfs_prepare_for_journal(sb, SB_BUFFER_WITH_SB(sb),
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07004012 1);
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04004013 journal_mark_dirty(th, sb, SB_BUFFER_WITH_SB(sb));
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07004014 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004015
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04004016 lock_journal(sb);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07004017 if (journal->j_next_full_flush) {
4018 flags |= FLUSH_ALL;
4019 flush = 1;
4020 }
4021 if (journal->j_next_async_flush) {
4022 flags |= COMMIT_NOW | WAIT;
4023 wait_on_commit = 1;
4024 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004025
Jeff Mahoney0222e652009-03-30 14:02:44 -04004026 /* check_journal_end locks the journal, and unlocks if it does not return 1
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07004027 ** it tells us if we should continue with the journal_end, or just return
4028 */
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04004029 if (!check_journal_end(th, sb, nblocks, flags)) {
4030 sb->s_dirt = 1;
4031 wake_queued_writers(sb);
4032 reiserfs_async_progress_wait(sb);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07004033 goto out;
4034 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004035
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07004036 /* check_journal_end might set these, check again */
4037 if (journal->j_next_full_flush) {
4038 flush = 1;
4039 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004040
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07004041 /*
4042 ** j must wait means we have to flush the log blocks, and the real blocks for
4043 ** this transaction
4044 */
4045 if (journal->j_must_wait > 0) {
4046 flush = 1;
4047 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004048#ifdef REISERFS_PREALLOCATE
Jan Karaef43bc42006-01-11 12:17:40 -08004049 /* quota ops might need to nest, setup the journal_info pointer for them
4050 * and raise the refcount so that it is > 0. */
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07004051 current->journal_info = th;
Jan Karaef43bc42006-01-11 12:17:40 -08004052 th->t_refcount++;
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07004053 reiserfs_discard_all_prealloc(th); /* it should not involve new blocks into
4054 * the transaction */
Jan Karaef43bc42006-01-11 12:17:40 -08004055 th->t_refcount--;
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07004056 current->journal_info = th->t_handle_save;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004057#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07004058
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07004059 /* setup description block */
4060 d_bh =
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04004061 journal_getblk(sb,
4062 SB_ONDISK_JOURNAL_1st_BLOCK(sb) +
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07004063 journal->j_start);
4064 set_buffer_uptodate(d_bh);
4065 desc = (struct reiserfs_journal_desc *)(d_bh)->b_data;
4066 memset(d_bh->b_data, 0, d_bh->b_size);
4067 memcpy(get_journal_desc_magic(d_bh), JOURNAL_DESC_MAGIC, 8);
4068 set_desc_trans_id(desc, journal->j_trans_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004069
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07004070 /* 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 -04004071 c_bh = journal_getblk(sb, SB_ONDISK_JOURNAL_1st_BLOCK(sb) +
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07004072 ((journal->j_start + journal->j_len +
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04004073 1) % SB_ONDISK_JOURNAL_SIZE(sb)));
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07004074 commit = (struct reiserfs_journal_commit *)c_bh->b_data;
4075 memset(c_bh->b_data, 0, c_bh->b_size);
4076 set_commit_trans_id(commit, journal->j_trans_id);
4077 set_buffer_uptodate(c_bh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004078
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07004079 /* init this journal list */
4080 jl = journal->j_current_jl;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004081
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07004082 /* we lock the commit before doing anything because
4083 * we want to make sure nobody tries to run flush_commit_list until
4084 * the new transaction is fully setup, and we've already flushed the
4085 * ordered bh list
4086 */
Frederic Weisbecker8ebc4232009-04-07 04:19:49 +02004087 reiserfs_mutex_lock_safe(&jl->j_commit_mutex, sb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004088
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07004089 /* save the transaction id in case we need to commit it later */
4090 commit_trans_id = jl->j_trans_id;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004091
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07004092 atomic_set(&jl->j_older_commits_done, 0);
4093 jl->j_trans_id = journal->j_trans_id;
4094 jl->j_timestamp = journal->j_trans_start_time;
4095 jl->j_commit_bh = c_bh;
4096 jl->j_start = journal->j_start;
4097 jl->j_len = journal->j_len;
4098 atomic_set(&jl->j_nonzerolen, journal->j_len);
4099 atomic_set(&jl->j_commit_left, journal->j_len + 2);
4100 jl->j_realblock = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004101
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07004102 /* The ENTIRE FOR LOOP MUST not cause schedule to occur.
4103 ** for each real block, add it to the journal list hash,
4104 ** copy into real block index array in the commit or desc block
4105 */
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04004106 trans_half = journal_trans_half(sb->s_blocksize);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07004107 for (i = 0, cn = journal->j_first; cn; cn = cn->next, i++) {
4108 if (buffer_journaled(cn->bh)) {
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04004109 jl_cn = get_cnode(sb);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07004110 if (!jl_cn) {
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04004111 reiserfs_panic(sb, "journal-1676",
Jeff Mahoneyc3a9c212009-03-30 14:02:25 -04004112 "get_cnode returned NULL");
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07004113 }
4114 if (i == 0) {
4115 jl->j_realblock = jl_cn;
4116 }
4117 jl_cn->prev = last_cn;
4118 jl_cn->next = NULL;
4119 if (last_cn) {
4120 last_cn->next = jl_cn;
4121 }
4122 last_cn = jl_cn;
Jeff Mahoney0222e652009-03-30 14:02:44 -04004123 /* make sure the block we are trying to log is not a block
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07004124 of journal or reserved area */
Linus Torvalds1da177e2005-04-16 15:20:36 -07004125
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07004126 if (is_block_in_log_or_reserved_area
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04004127 (sb, cn->bh->b_blocknr)) {
4128 reiserfs_panic(sb, "journal-2332",
Jeff Mahoneyc3a9c212009-03-30 14:02:25 -04004129 "Trying to log block %lu, "
4130 "which is a log block",
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07004131 cn->bh->b_blocknr);
4132 }
4133 jl_cn->blocknr = cn->bh->b_blocknr;
4134 jl_cn->state = 0;
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04004135 jl_cn->sb = sb;
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07004136 jl_cn->bh = cn->bh;
4137 jl_cn->jlist = jl;
4138 insert_journal_hash(journal->j_list_hash_table, jl_cn);
4139 if (i < trans_half) {
4140 desc->j_realblock[i] =
4141 cpu_to_le32(cn->bh->b_blocknr);
4142 } else {
4143 commit->j_realblock[i - trans_half] =
4144 cpu_to_le32(cn->bh->b_blocknr);
4145 }
4146 } else {
4147 i--;
4148 }
4149 }
4150 set_desc_trans_len(desc, journal->j_len);
4151 set_desc_mount_id(desc, journal->j_mount_id);
4152 set_desc_trans_id(desc, journal->j_trans_id);
4153 set_commit_trans_len(commit, journal->j_len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004154
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07004155 /* special check in case all buffers in the journal were marked for not logging */
Eric Sesterhenn14a61442006-10-03 23:36:38 +02004156 BUG_ON(journal->j_len == 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004157
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07004158 /* we're about to dirty all the log blocks, mark the description block
4159 * dirty now too. Don't mark the commit block dirty until all the
4160 * others are on disk
4161 */
4162 mark_buffer_dirty(d_bh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004163
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07004164 /* first data block is j_start + 1, so add one to cur_write_start wherever you use it */
4165 cur_write_start = journal->j_start;
4166 cn = journal->j_first;
4167 jindex = 1; /* start at one so we don't get the desc again */
4168 while (cn) {
4169 clear_buffer_journal_new(cn->bh);
4170 /* copy all the real blocks into log area. dirty log blocks */
4171 if (buffer_journaled(cn->bh)) {
4172 struct buffer_head *tmp_bh;
4173 char *addr;
4174 struct page *page;
4175 tmp_bh =
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04004176 journal_getblk(sb,
4177 SB_ONDISK_JOURNAL_1st_BLOCK(sb) +
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07004178 ((cur_write_start +
4179 jindex) %
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04004180 SB_ONDISK_JOURNAL_SIZE(sb)));
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07004181 set_buffer_uptodate(tmp_bh);
4182 page = cn->bh->b_page;
4183 addr = kmap(page);
4184 memcpy(tmp_bh->b_data,
4185 addr + offset_in_page(cn->bh->b_data),
4186 cn->bh->b_size);
4187 kunmap(page);
4188 mark_buffer_dirty(tmp_bh);
4189 jindex++;
4190 set_buffer_journal_dirty(cn->bh);
4191 clear_buffer_journaled(cn->bh);
4192 } else {
4193 /* JDirty cleared sometime during transaction. don't log this one */
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04004194 reiserfs_warning(sb, "journal-2048",
Jeff Mahoney45b03d52009-03-30 14:02:21 -04004195 "BAD, buffer in journal hash, "
4196 "but not JDirty!");
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07004197 brelse(cn->bh);
4198 }
4199 next = cn->next;
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04004200 free_cnode(sb, cn);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07004201 cn = next;
Frederic Weisbeckere6950a42009-04-30 23:04:32 +02004202 reiserfs_write_unlock(sb);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07004203 cond_resched();
Frederic Weisbeckere6950a42009-04-30 23:04:32 +02004204 reiserfs_write_lock(sb);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07004205 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004206
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07004207 /* we are done with both the c_bh and d_bh, but
4208 ** c_bh must be written after all other commit blocks,
4209 ** so we dirty/relse c_bh in flush_commit_list, with commit_left <= 1.
4210 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07004211
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04004212 journal->j_current_jl = alloc_journal_list(sb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004213
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07004214 /* now it is safe to insert this transaction on the main list */
4215 list_add_tail(&jl->j_list, &journal->j_journal_list);
4216 list_add_tail(&jl->j_working_list, &journal->j_working_list);
4217 journal->j_num_work_lists++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004218
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07004219 /* reset journal values for the next transaction */
4220 old_start = journal->j_start;
4221 journal->j_start =
4222 (journal->j_start + journal->j_len +
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04004223 2) % SB_ONDISK_JOURNAL_SIZE(sb);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07004224 atomic_set(&(journal->j_wcount), 0);
4225 journal->j_bcount = 0;
4226 journal->j_last = NULL;
4227 journal->j_first = NULL;
4228 journal->j_len = 0;
4229 journal->j_trans_start_time = 0;
Alexander Zarochentseva44c94a2006-03-25 03:06:59 -08004230 /* check for trans_id overflow */
4231 if (++journal->j_trans_id == 0)
4232 journal->j_trans_id = 10;
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07004233 journal->j_current_jl->j_trans_id = journal->j_trans_id;
4234 journal->j_must_wait = 0;
4235 journal->j_len_alloc = 0;
4236 journal->j_next_full_flush = 0;
4237 journal->j_next_async_flush = 0;
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04004238 init_journal_hash(sb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004239
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07004240 // make sure reiserfs_add_jh sees the new current_jl before we
4241 // write out the tails
4242 smp_mb();
Linus Torvalds1da177e2005-04-16 15:20:36 -07004243
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07004244 /* tail conversion targets have to hit the disk before we end the
4245 * transaction. Otherwise a later transaction might repack the tail
4246 * before this transaction commits, leaving the data block unflushed and
4247 * clean, if we crash before the later transaction commits, the data block
4248 * is lost.
4249 */
4250 if (!list_empty(&jl->j_tail_bh_list)) {
Frederic Weisbecker8ebc4232009-04-07 04:19:49 +02004251 reiserfs_write_unlock(sb);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07004252 write_ordered_buffers(&journal->j_dirty_buffers_lock,
4253 journal, jl, &jl->j_tail_bh_list);
Frederic Weisbecker8ebc4232009-04-07 04:19:49 +02004254 reiserfs_write_lock(sb);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07004255 }
Eric Sesterhenn14a61442006-10-03 23:36:38 +02004256 BUG_ON(!list_empty(&jl->j_tail_bh_list));
Jeff Mahoney90415de2008-07-25 01:46:40 -07004257 mutex_unlock(&jl->j_commit_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004258
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07004259 /* honor the flush wishes from the caller, simple commits can
4260 ** be done outside the journal lock, they are done below
4261 **
4262 ** if we don't flush the commit list right now, we put it into
4263 ** the work queue so the people waiting on the async progress work
4264 ** queue don't wait for this proc to flush journal lists and such.
4265 */
4266 if (flush) {
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04004267 flush_commit_list(sb, jl, 1);
4268 flush_journal_list(sb, jl, 1);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07004269 } else if (!(jl->j_state & LIST_COMMIT_PENDING))
4270 queue_delayed_work(commit_wq, &journal->j_work, HZ / 10);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004271
Jeff Mahoney0222e652009-03-30 14:02:44 -04004272 /* if the next transaction has any chance of wrapping, flush
4273 ** transactions that might get overwritten. If any journal lists are very
4274 ** old flush them as well.
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07004275 */
4276 first_jl:
4277 list_for_each_safe(entry, safe, &journal->j_journal_list) {
4278 temp_jl = JOURNAL_LIST_ENTRY(entry);
4279 if (journal->j_start <= temp_jl->j_start) {
4280 if ((journal->j_start + journal->j_trans_max + 1) >=
4281 temp_jl->j_start) {
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04004282 flush_used_journal_lists(sb, temp_jl);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07004283 goto first_jl;
4284 } else if ((journal->j_start +
4285 journal->j_trans_max + 1) <
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04004286 SB_ONDISK_JOURNAL_SIZE(sb)) {
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07004287 /* if we don't cross into the next transaction and we don't
4288 * wrap, there is no way we can overlap any later transactions
4289 * break now
4290 */
4291 break;
4292 }
4293 } else if ((journal->j_start +
4294 journal->j_trans_max + 1) >
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04004295 SB_ONDISK_JOURNAL_SIZE(sb)) {
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07004296 if (((journal->j_start + journal->j_trans_max + 1) %
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04004297 SB_ONDISK_JOURNAL_SIZE(sb)) >=
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07004298 temp_jl->j_start) {
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04004299 flush_used_journal_lists(sb, temp_jl);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07004300 goto first_jl;
4301 } else {
4302 /* we don't overlap anything from out start to the end of the
4303 * log, and our wrapped portion doesn't overlap anything at
4304 * the start of the log. We can break
4305 */
4306 break;
4307 }
4308 }
4309 }
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04004310 flush_old_journal_lists(sb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004311
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07004312 journal->j_current_jl->j_list_bitmap =
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04004313 get_list_bitmap(sb, journal->j_current_jl);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004314
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07004315 if (!(journal->j_current_jl->j_list_bitmap)) {
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04004316 reiserfs_panic(sb, "journal-1996",
Jeff Mahoneyc3a9c212009-03-30 14:02:25 -04004317 "could not get a list bitmap");
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07004318 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004319
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07004320 atomic_set(&(journal->j_jlock), 0);
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04004321 unlock_journal(sb);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07004322 /* wake up any body waiting to join. */
4323 clear_bit(J_WRITERS_QUEUED, &journal->j_state);
4324 wake_up(&(journal->j_join_wait));
Linus Torvalds1da177e2005-04-16 15:20:36 -07004325
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07004326 if (!flush && wait_on_commit &&
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04004327 journal_list_still_alive(sb, commit_trans_id)) {
4328 flush_commit_list(sb, jl, 1);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07004329 }
4330 out:
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04004331 reiserfs_check_lock_depth(sb, "journal end2");
Linus Torvalds1da177e2005-04-16 15:20:36 -07004332
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07004333 memset(th, 0, sizeof(*th));
4334 /* Re-set th->t_super, so we can properly keep track of how many
4335 * persistent transactions there are. We need to do this so if this
4336 * call is part of a failed restart_transaction, we can free it later */
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04004337 th->t_super = sb;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004338
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07004339 return journal->j_errno;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004340}
4341
Jeff Mahoney32e8b102009-03-30 14:02:26 -04004342/* Send the file system read only and refuse new transactions */
4343void reiserfs_abort_journal(struct super_block *sb, int errno)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004344{
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07004345 struct reiserfs_journal *journal = SB_JOURNAL(sb);
4346 if (test_bit(J_ABORTED, &journal->j_state))
4347 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004348
Jeff Mahoney32e8b102009-03-30 14:02:26 -04004349 if (!journal->j_errno)
4350 journal->j_errno = errno;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004351
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07004352 sb->s_flags |= MS_RDONLY;
4353 set_bit(J_ABORTED, &journal->j_state);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004354
4355#ifdef CONFIG_REISERFS_CHECK
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07004356 dump_stack();
Linus Torvalds1da177e2005-04-16 15:20:36 -07004357#endif
4358}
4359