blob: ffb7f50abc2fe0a932c44685042edae4e0ba5ce2 [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
Frederic Weisbecker8ebc4232009-04-07 04:19:49 +0200540/*
541 * Several mutexes depend on the write lock.
542 * However sometimes we want to relax the write lock while we hold
543 * these mutexes, according to the release/reacquire on schedule()
544 * properties of the Bkl that were used.
545 * Reiserfs performances and locking were based on this scheme.
546 * Now that the write lock is a mutex and not the bkl anymore, doing so
547 * may result in a deadlock:
548 *
549 * A acquire write_lock
550 * A acquire j_commit_mutex
551 * A release write_lock and wait for something
552 * B acquire write_lock
553 * B can't acquire j_commit_mutex and sleep
554 * A can't acquire write lock anymore
555 * deadlock
556 *
557 * What we do here is avoiding such deadlock by playing the same game
558 * than the Bkl: if we can't acquire a mutex that depends on the write lock,
559 * we release the write lock, wait a bit and then retry.
560 *
561 * The mutexes concerned by this hack are:
562 * - The commit mutex of a journal list
563 * - The flush mutex
564 * - The journal lock
565 */
566static inline void reiserfs_mutex_lock_safe(struct mutex *m,
567 struct super_block *s)
568{
569 while (!mutex_trylock(m)) {
570 reiserfs_write_unlock(s);
571 schedule();
572 reiserfs_write_lock(s);
573 }
574}
575
Linus Torvalds1da177e2005-04-16 15:20:36 -0700576/* lock the current transaction */
Jeff Mahoneya9dd3642009-03-30 14:02:45 -0400577static inline void lock_journal(struct super_block *sb)
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700578{
Jeff Mahoneya9dd3642009-03-30 14:02:45 -0400579 PROC_INFO_INC(sb, journal.lock_journal);
Frederic Weisbecker8ebc4232009-04-07 04:19:49 +0200580
581 reiserfs_mutex_lock_safe(&SB_JOURNAL(sb)->j_mutex, sb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700582}
583
584/* unlock the current transaction */
Jeff Mahoneya9dd3642009-03-30 14:02:45 -0400585static inline void unlock_journal(struct super_block *sb)
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700586{
Jeff Mahoneya9dd3642009-03-30 14:02:45 -0400587 mutex_unlock(&SB_JOURNAL(sb)->j_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700588}
589
590static inline void get_journal_list(struct reiserfs_journal_list *jl)
591{
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700592 jl->j_refcount++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700593}
594
595static inline void put_journal_list(struct super_block *s,
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700596 struct reiserfs_journal_list *jl)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700597{
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700598 if (jl->j_refcount < 1) {
Jeff Mahoneyc3a9c212009-03-30 14:02:25 -0400599 reiserfs_panic(s, "journal-2", "trans id %u, refcount at %d",
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700600 jl->j_trans_id, jl->j_refcount);
601 }
602 if (--jl->j_refcount == 0)
Pekka Enbergd739b422006-02-01 03:06:43 -0800603 kfree(jl);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700604}
605
606/*
607** this used to be much more involved, and I'm keeping it just in case things get ugly again.
608** it gets called by flush_commit_list, and cleans up any data stored about blocks freed during a
609** transaction.
610*/
Jeff Mahoneya9dd3642009-03-30 14:02:45 -0400611static void cleanup_freed_for_journal_list(struct super_block *sb,
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700612 struct reiserfs_journal_list *jl)
613{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700614
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700615 struct reiserfs_list_bitmap *jb = jl->j_list_bitmap;
616 if (jb) {
Jeff Mahoneya9dd3642009-03-30 14:02:45 -0400617 cleanup_bitmap_list(sb, jb);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700618 }
619 jl->j_list_bitmap->journal_list = NULL;
620 jl->j_list_bitmap = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700621}
622
623static int journal_list_still_alive(struct super_block *s,
Jeff Mahoney600ed412009-03-30 14:02:17 -0400624 unsigned int trans_id)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700625{
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700626 struct reiserfs_journal *journal = SB_JOURNAL(s);
627 struct list_head *entry = &journal->j_journal_list;
628 struct reiserfs_journal_list *jl;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700629
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700630 if (!list_empty(entry)) {
631 jl = JOURNAL_LIST_ENTRY(entry->next);
632 if (jl->j_trans_id <= trans_id) {
633 return 1;
634 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700635 }
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700636 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700637}
638
Chris Mason398c95b2007-10-16 23:29:44 -0700639/*
640 * If page->mapping was null, we failed to truncate this page for
641 * some reason. Most likely because it was truncated after being
642 * logged via data=journal.
643 *
644 * This does a check to see if the buffer belongs to one of these
645 * lost pages before doing the final put_bh. If page->mapping was
646 * null, it tries to free buffers on the page, which should make the
647 * final page_cache_release drop the page from the lru.
648 */
649static void release_buffer_page(struct buffer_head *bh)
650{
651 struct page *page = bh->b_page;
Nick Piggin529ae9a2008-08-02 12:01:03 +0200652 if (!page->mapping && trylock_page(page)) {
Chris Mason398c95b2007-10-16 23:29:44 -0700653 page_cache_get(page);
654 put_bh(bh);
655 if (!page->mapping)
656 try_to_free_buffers(page);
657 unlock_page(page);
658 page_cache_release(page);
659 } else {
660 put_bh(bh);
661 }
662}
663
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700664static void reiserfs_end_buffer_io_sync(struct buffer_head *bh, int uptodate)
665{
666 char b[BDEVNAME_SIZE];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700667
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700668 if (buffer_journaled(bh)) {
Jeff Mahoney45b03d52009-03-30 14:02:21 -0400669 reiserfs_warning(NULL, "clm-2084",
670 "pinned buffer %lu:%s sent to disk",
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700671 bh->b_blocknr, bdevname(bh->b_bdev, b));
672 }
673 if (uptodate)
674 set_buffer_uptodate(bh);
675 else
676 clear_buffer_uptodate(bh);
Chris Mason398c95b2007-10-16 23:29:44 -0700677
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700678 unlock_buffer(bh);
Chris Mason398c95b2007-10-16 23:29:44 -0700679 release_buffer_page(bh);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700680}
681
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700682static void reiserfs_end_ordered_io(struct buffer_head *bh, int uptodate)
683{
684 if (uptodate)
685 set_buffer_uptodate(bh);
686 else
687 clear_buffer_uptodate(bh);
688 unlock_buffer(bh);
689 put_bh(bh);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700690}
691
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700692static void submit_logged_buffer(struct buffer_head *bh)
693{
694 get_bh(bh);
695 bh->b_end_io = reiserfs_end_buffer_io_sync;
696 clear_buffer_journal_new(bh);
697 clear_buffer_dirty(bh);
698 if (!test_clear_buffer_journal_test(bh))
699 BUG();
700 if (!buffer_uptodate(bh))
701 BUG();
702 submit_bh(WRITE, bh);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700703}
704
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700705static void submit_ordered_buffer(struct buffer_head *bh)
706{
707 get_bh(bh);
708 bh->b_end_io = reiserfs_end_ordered_io;
709 clear_buffer_dirty(bh);
710 if (!buffer_uptodate(bh))
711 BUG();
712 submit_bh(WRITE, bh);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700713}
714
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700715static int submit_barrier_buffer(struct buffer_head *bh)
716{
717 get_bh(bh);
718 bh->b_end_io = reiserfs_end_ordered_io;
719 clear_buffer_dirty(bh);
720 if (!buffer_uptodate(bh))
721 BUG();
722 return submit_bh(WRITE_BARRIER, bh);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700723}
724
725static void check_barrier_completion(struct super_block *s,
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700726 struct buffer_head *bh)
727{
728 if (buffer_eopnotsupp(bh)) {
729 clear_buffer_eopnotsupp(bh);
730 disable_barrier(s);
731 set_buffer_uptodate(bh);
732 set_buffer_dirty(bh);
Frederic Weisbecker8ebc4232009-04-07 04:19:49 +0200733 reiserfs_write_unlock(s);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700734 sync_dirty_buffer(bh);
Frederic Weisbecker8ebc4232009-04-07 04:19:49 +0200735 reiserfs_write_lock(s);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700736 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700737}
738
739#define CHUNK_SIZE 32
740struct buffer_chunk {
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700741 struct buffer_head *bh[CHUNK_SIZE];
742 int nr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700743};
744
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700745static void write_chunk(struct buffer_chunk *chunk)
746{
747 int i;
748 get_fs_excl();
749 for (i = 0; i < chunk->nr; i++) {
750 submit_logged_buffer(chunk->bh[i]);
751 }
752 chunk->nr = 0;
753 put_fs_excl();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700754}
755
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700756static void write_ordered_chunk(struct buffer_chunk *chunk)
757{
758 int i;
759 get_fs_excl();
760 for (i = 0; i < chunk->nr; i++) {
761 submit_ordered_buffer(chunk->bh[i]);
762 }
763 chunk->nr = 0;
764 put_fs_excl();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700765}
766
767static int add_to_chunk(struct buffer_chunk *chunk, struct buffer_head *bh,
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700768 spinlock_t * lock, void (fn) (struct buffer_chunk *))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700769{
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700770 int ret = 0;
Eric Sesterhenn14a61442006-10-03 23:36:38 +0200771 BUG_ON(chunk->nr >= CHUNK_SIZE);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700772 chunk->bh[chunk->nr++] = bh;
773 if (chunk->nr >= CHUNK_SIZE) {
774 ret = 1;
775 if (lock)
776 spin_unlock(lock);
777 fn(chunk);
778 if (lock)
779 spin_lock(lock);
780 }
781 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700782}
783
Linus Torvalds1da177e2005-04-16 15:20:36 -0700784static atomic_t nr_reiserfs_jh = ATOMIC_INIT(0);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700785static struct reiserfs_jh *alloc_jh(void)
786{
787 struct reiserfs_jh *jh;
788 while (1) {
789 jh = kmalloc(sizeof(*jh), GFP_NOFS);
790 if (jh) {
791 atomic_inc(&nr_reiserfs_jh);
792 return jh;
793 }
794 yield();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700795 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700796}
797
798/*
799 * we want to free the jh when the buffer has been written
800 * and waited on
801 */
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700802void reiserfs_free_jh(struct buffer_head *bh)
803{
804 struct reiserfs_jh *jh;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700805
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700806 jh = bh->b_private;
807 if (jh) {
808 bh->b_private = NULL;
809 jh->bh = NULL;
810 list_del_init(&jh->list);
811 kfree(jh);
812 if (atomic_read(&nr_reiserfs_jh) <= 0)
813 BUG();
814 atomic_dec(&nr_reiserfs_jh);
815 put_bh(bh);
816 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700817}
818
819static inline int __add_jh(struct reiserfs_journal *j, struct buffer_head *bh,
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700820 int tail)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700821{
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700822 struct reiserfs_jh *jh;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700823
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700824 if (bh->b_private) {
825 spin_lock(&j->j_dirty_buffers_lock);
826 if (!bh->b_private) {
827 spin_unlock(&j->j_dirty_buffers_lock);
828 goto no_jh;
829 }
830 jh = bh->b_private;
831 list_del_init(&jh->list);
832 } else {
833 no_jh:
834 get_bh(bh);
835 jh = alloc_jh();
836 spin_lock(&j->j_dirty_buffers_lock);
837 /* buffer must be locked for __add_jh, should be able to have
838 * two adds at the same time
839 */
Eric Sesterhenn14a61442006-10-03 23:36:38 +0200840 BUG_ON(bh->b_private);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700841 jh->bh = bh;
842 bh->b_private = jh;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700843 }
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700844 jh->jl = j->j_current_jl;
845 if (tail)
846 list_add_tail(&jh->list, &jh->jl->j_tail_bh_list);
847 else {
848 list_add_tail(&jh->list, &jh->jl->j_bh_list);
849 }
850 spin_unlock(&j->j_dirty_buffers_lock);
851 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700852}
853
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700854int reiserfs_add_tail_list(struct inode *inode, struct buffer_head *bh)
855{
856 return __add_jh(SB_JOURNAL(inode->i_sb), bh, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700857}
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700858int reiserfs_add_ordered_list(struct inode *inode, struct buffer_head *bh)
859{
860 return __add_jh(SB_JOURNAL(inode->i_sb), bh, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700861}
862
863#define JH_ENTRY(l) list_entry((l), struct reiserfs_jh, list)
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700864static int write_ordered_buffers(spinlock_t * lock,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700865 struct reiserfs_journal *j,
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700866 struct reiserfs_journal_list *jl,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700867 struct list_head *list)
868{
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700869 struct buffer_head *bh;
870 struct reiserfs_jh *jh;
871 int ret = j->j_errno;
872 struct buffer_chunk chunk;
873 struct list_head tmp;
874 INIT_LIST_HEAD(&tmp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700875
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700876 chunk.nr = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700877 spin_lock(lock);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700878 while (!list_empty(list)) {
879 jh = JH_ENTRY(list->next);
880 bh = jh->bh;
881 get_bh(bh);
Nick Pigginca5de402008-08-02 12:02:13 +0200882 if (!trylock_buffer(bh)) {
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700883 if (!buffer_dirty(bh)) {
Akinobu Mitaf1166292006-06-26 00:24:46 -0700884 list_move(&jh->list, &tmp);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700885 goto loop_next;
886 }
887 spin_unlock(lock);
888 if (chunk.nr)
889 write_ordered_chunk(&chunk);
890 wait_on_buffer(bh);
891 cond_resched();
892 spin_lock(lock);
893 goto loop_next;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700894 }
Chris Mason3d4492f2006-02-01 03:06:49 -0800895 /* in theory, dirty non-uptodate buffers should never get here,
896 * but the upper layer io error paths still have a few quirks.
897 * Handle them here as gracefully as we can
898 */
899 if (!buffer_uptodate(bh) && buffer_dirty(bh)) {
900 clear_buffer_dirty(bh);
901 ret = -EIO;
902 }
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700903 if (buffer_dirty(bh)) {
Akinobu Mitaf1166292006-06-26 00:24:46 -0700904 list_move(&jh->list, &tmp);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700905 add_to_chunk(&chunk, bh, lock, write_ordered_chunk);
906 } else {
907 reiserfs_free_jh(bh);
908 unlock_buffer(bh);
909 }
910 loop_next:
911 put_bh(bh);
912 cond_resched_lock(lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700913 }
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700914 if (chunk.nr) {
915 spin_unlock(lock);
916 write_ordered_chunk(&chunk);
917 spin_lock(lock);
918 }
919 while (!list_empty(&tmp)) {
920 jh = JH_ENTRY(tmp.prev);
921 bh = jh->bh;
922 get_bh(bh);
923 reiserfs_free_jh(bh);
924
925 if (buffer_locked(bh)) {
926 spin_unlock(lock);
927 wait_on_buffer(bh);
928 spin_lock(lock);
929 }
930 if (!buffer_uptodate(bh)) {
931 ret = -EIO;
932 }
Chris Masond62b1b82006-02-01 03:06:47 -0800933 /* ugly interaction with invalidatepage here.
934 * reiserfs_invalidate_page will pin any buffer that has a valid
935 * journal head from an older transaction. If someone else sets
936 * our buffer dirty after we write it in the first loop, and
937 * then someone truncates the page away, nobody will ever write
938 * the buffer. We're safe if we write the page one last time
939 * after freeing the journal header.
940 */
941 if (buffer_dirty(bh) && unlikely(bh->b_page->mapping == NULL)) {
942 spin_unlock(lock);
943 ll_rw_block(WRITE, 1, &bh);
944 spin_lock(lock);
945 }
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700946 put_bh(bh);
947 cond_resched_lock(lock);
948 }
949 spin_unlock(lock);
950 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700951}
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700952
953static int flush_older_commits(struct super_block *s,
954 struct reiserfs_journal_list *jl)
955{
956 struct reiserfs_journal *journal = SB_JOURNAL(s);
957 struct reiserfs_journal_list *other_jl;
958 struct reiserfs_journal_list *first_jl;
959 struct list_head *entry;
Jeff Mahoney600ed412009-03-30 14:02:17 -0400960 unsigned int trans_id = jl->j_trans_id;
961 unsigned int other_trans_id;
962 unsigned int first_trans_id;
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700963
964 find_first:
965 /*
966 * first we walk backwards to find the oldest uncommitted transation
967 */
968 first_jl = jl;
969 entry = jl->j_list.prev;
970 while (1) {
971 other_jl = JOURNAL_LIST_ENTRY(entry);
972 if (entry == &journal->j_journal_list ||
973 atomic_read(&other_jl->j_older_commits_done))
974 break;
975
976 first_jl = other_jl;
977 entry = other_jl->j_list.prev;
978 }
979
980 /* if we didn't find any older uncommitted transactions, return now */
981 if (first_jl == jl) {
982 return 0;
983 }
984
985 first_trans_id = first_jl->j_trans_id;
986
987 entry = &first_jl->j_list;
988 while (1) {
989 other_jl = JOURNAL_LIST_ENTRY(entry);
990 other_trans_id = other_jl->j_trans_id;
991
992 if (other_trans_id < trans_id) {
993 if (atomic_read(&other_jl->j_commit_left) != 0) {
994 flush_commit_list(s, other_jl, 0);
995
996 /* list we were called with is gone, return */
997 if (!journal_list_still_alive(s, trans_id))
998 return 1;
999
1000 /* the one we just flushed is gone, this means all
1001 * older lists are also gone, so first_jl is no longer
1002 * valid either. Go back to the beginning.
1003 */
1004 if (!journal_list_still_alive
1005 (s, other_trans_id)) {
1006 goto find_first;
1007 }
1008 }
1009 entry = entry->next;
1010 if (entry == &journal->j_journal_list)
1011 return 0;
1012 } else {
1013 return 0;
1014 }
1015 }
1016 return 0;
1017}
Adrian Bunkdeba0f42007-10-16 23:26:03 -07001018
1019static int reiserfs_async_progress_wait(struct super_block *s)
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001020{
1021 DEFINE_WAIT(wait);
1022 struct reiserfs_journal *j = SB_JOURNAL(s);
Frederic Weisbecker8ebc4232009-04-07 04:19:49 +02001023
1024 if (atomic_read(&j->j_async_throttle)) {
1025 reiserfs_write_unlock(s);
Jens Axboe8aa7e842009-07-09 14:52:32 +02001026 congestion_wait(BLK_RW_ASYNC, HZ / 10);
Frederic Weisbecker8ebc4232009-04-07 04:19:49 +02001027 reiserfs_write_lock(s);
1028 }
1029
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001030 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001031}
1032
1033/*
1034** if this journal list still has commit blocks unflushed, send them to disk.
1035**
1036** log areas must be flushed in order (transaction 2 can't commit before transaction 1)
1037** Before the commit block can by written, every other log block must be safely on disk
1038**
1039*/
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001040static int flush_commit_list(struct super_block *s,
1041 struct reiserfs_journal_list *jl, int flushall)
1042{
1043 int i;
Jeff Mahoney3ee16672007-10-18 23:39:25 -07001044 b_blocknr_t bn;
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001045 struct buffer_head *tbh = NULL;
Jeff Mahoney600ed412009-03-30 14:02:17 -04001046 unsigned int trans_id = jl->j_trans_id;
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001047 struct reiserfs_journal *journal = SB_JOURNAL(s);
1048 int barrier = 0;
1049 int retval = 0;
Chris Masone0e851c2006-02-01 03:06:49 -08001050 int write_len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001051
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001052 reiserfs_check_lock_depth(s, "flush_commit_list");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001053
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001054 if (atomic_read(&jl->j_older_commits_done)) {
1055 return 0;
1056 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001057
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001058 get_fs_excl();
Jens Axboe22e2c502005-06-27 10:55:12 +02001059
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001060 /* before we can put our commit blocks on disk, we have to make sure everyone older than
1061 ** us is on disk too
1062 */
1063 BUG_ON(jl->j_len <= 0);
1064 BUG_ON(trans_id == journal->j_trans_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001065
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001066 get_journal_list(jl);
1067 if (flushall) {
1068 if (flush_older_commits(s, jl) == 1) {
1069 /* list disappeared during flush_older_commits. return */
1070 goto put_jl;
1071 }
1072 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001073
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001074 /* make sure nobody is trying to flush this one at the same time */
Frederic Weisbecker8ebc4232009-04-07 04:19:49 +02001075 reiserfs_mutex_lock_safe(&jl->j_commit_mutex, s);
1076
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001077 if (!journal_list_still_alive(s, trans_id)) {
Jeff Mahoney90415de2008-07-25 01:46:40 -07001078 mutex_unlock(&jl->j_commit_mutex);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001079 goto put_jl;
1080 }
1081 BUG_ON(jl->j_trans_id == 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001082
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001083 /* this commit is done, exit */
1084 if (atomic_read(&(jl->j_commit_left)) <= 0) {
1085 if (flushall) {
1086 atomic_set(&(jl->j_older_commits_done), 1);
1087 }
Jeff Mahoney90415de2008-07-25 01:46:40 -07001088 mutex_unlock(&jl->j_commit_mutex);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001089 goto put_jl;
1090 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001091
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001092 if (!list_empty(&jl->j_bh_list)) {
Chris Mason3d4492f2006-02-01 03:06:49 -08001093 int ret;
Frederic Weisbecker8ebc4232009-04-07 04:19:49 +02001094
1095 /*
1096 * We might sleep in numerous places inside
1097 * write_ordered_buffers. Relax the write lock.
1098 */
1099 reiserfs_write_unlock(s);
Chris Mason3d4492f2006-02-01 03:06:49 -08001100 ret = write_ordered_buffers(&journal->j_dirty_buffers_lock,
1101 journal, jl, &jl->j_bh_list);
1102 if (ret < 0 && retval == 0)
1103 retval = ret;
Frederic Weisbecker8ebc4232009-04-07 04:19:49 +02001104 reiserfs_write_lock(s);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001105 }
1106 BUG_ON(!list_empty(&jl->j_bh_list));
1107 /*
1108 * for the description block and all the log blocks, submit any buffers
Chris Masone0e851c2006-02-01 03:06:49 -08001109 * that haven't already reached the disk. Try to write at least 256
1110 * log blocks. later on, we will only wait on blocks that correspond
1111 * to this transaction, but while we're unplugging we might as well
1112 * get a chunk of data on there.
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001113 */
1114 atomic_inc(&journal->j_async_throttle);
Chris Masone0e851c2006-02-01 03:06:49 -08001115 write_len = jl->j_len + 1;
1116 if (write_len < 256)
1117 write_len = 256;
1118 for (i = 0 ; i < write_len ; i++) {
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001119 bn = SB_ONDISK_JOURNAL_1st_BLOCK(s) + (jl->j_start + i) %
1120 SB_ONDISK_JOURNAL_SIZE(s);
1121 tbh = journal_find_get_block(s, bn);
Chris Masone0e851c2006-02-01 03:06:49 -08001122 if (tbh) {
Frederic Weisbecker6e3647a2009-05-01 02:27:39 +02001123 if (buffer_dirty(tbh)) {
1124 reiserfs_write_unlock(s);
1125 ll_rw_block(WRITE, 1, &tbh);
1126 reiserfs_write_lock(s);
1127 }
Chris Masone0e851c2006-02-01 03:06:49 -08001128 put_bh(tbh) ;
1129 }
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001130 }
1131 atomic_dec(&journal->j_async_throttle);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001132
Jeff Mahoney5d5e81562005-12-14 14:38:36 -05001133 /* We're skipping the commit if there's an error */
1134 if (retval || reiserfs_is_journal_aborted(journal))
1135 barrier = 0;
1136
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001137 /* wait on everything written so far before writing the commit
1138 * if we are in barrier mode, send the commit down now
1139 */
1140 barrier = reiserfs_barrier_flush(s);
1141 if (barrier) {
1142 int ret;
1143 lock_buffer(jl->j_commit_bh);
1144 ret = submit_barrier_buffer(jl->j_commit_bh);
1145 if (ret == -EOPNOTSUPP) {
1146 set_buffer_uptodate(jl->j_commit_bh);
1147 disable_barrier(s);
1148 barrier = 0;
1149 }
1150 }
1151 for (i = 0; i < (jl->j_len + 1); i++) {
1152 bn = SB_ONDISK_JOURNAL_1st_BLOCK(s) +
1153 (jl->j_start + i) % SB_ONDISK_JOURNAL_SIZE(s);
1154 tbh = journal_find_get_block(s, bn);
Frederic Weisbecker8ebc4232009-04-07 04:19:49 +02001155
1156 reiserfs_write_unlock(s);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001157 wait_on_buffer(tbh);
Frederic Weisbecker8ebc4232009-04-07 04:19:49 +02001158 reiserfs_write_lock(s);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001159 // since we're using ll_rw_blk above, it might have skipped over
1160 // a locked buffer. Double check here
1161 //
Frederic Weisbecker8ebc4232009-04-07 04:19:49 +02001162 /* redundant, sync_dirty_buffer() checks */
1163 if (buffer_dirty(tbh)) {
1164 reiserfs_write_unlock(s);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001165 sync_dirty_buffer(tbh);
Frederic Weisbecker8ebc4232009-04-07 04:19:49 +02001166 reiserfs_write_lock(s);
1167 }
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001168 if (unlikely(!buffer_uptodate(tbh))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001169#ifdef CONFIG_REISERFS_CHECK
Jeff Mahoney45b03d52009-03-30 14:02:21 -04001170 reiserfs_warning(s, "journal-601",
1171 "buffer write failed");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001172#endif
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001173 retval = -EIO;
1174 }
1175 put_bh(tbh); /* once for journal_find_get_block */
1176 put_bh(tbh); /* once due to original getblk in do_journal_end */
1177 atomic_dec(&(jl->j_commit_left));
1178 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001179
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001180 BUG_ON(atomic_read(&(jl->j_commit_left)) != 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001181
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001182 if (!barrier) {
Jeff Mahoney5d5e81562005-12-14 14:38:36 -05001183 /* If there was a write error in the journal - we can't commit
1184 * this transaction - it will be invalid and, if successful,
Robert P. J. Daybeb7dd82007-05-09 07:14:03 +02001185 * will just end up propagating the write error out to
Jeff Mahoney5d5e81562005-12-14 14:38:36 -05001186 * the file system. */
1187 if (likely(!retval && !reiserfs_is_journal_aborted (journal))) {
1188 if (buffer_dirty(jl->j_commit_bh))
1189 BUG();
1190 mark_buffer_dirty(jl->j_commit_bh) ;
Frederic Weisbecker8ebc4232009-04-07 04:19:49 +02001191 reiserfs_write_unlock(s);
Jeff Mahoney5d5e81562005-12-14 14:38:36 -05001192 sync_dirty_buffer(jl->j_commit_bh) ;
Frederic Weisbecker8ebc4232009-04-07 04:19:49 +02001193 reiserfs_write_lock(s);
Jeff Mahoney5d5e81562005-12-14 14:38:36 -05001194 }
Frederic Weisbecker8ebc4232009-04-07 04:19:49 +02001195 } else {
1196 reiserfs_write_unlock(s);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001197 wait_on_buffer(jl->j_commit_bh);
Frederic Weisbecker8ebc4232009-04-07 04:19:49 +02001198 reiserfs_write_lock(s);
1199 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001200
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001201 check_barrier_completion(s, jl->j_commit_bh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001202
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001203 /* If there was a write error in the journal - we can't commit this
1204 * transaction - it will be invalid and, if successful, will just end
Robert P. J. Daybeb7dd82007-05-09 07:14:03 +02001205 * up propagating the write error out to the filesystem. */
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001206 if (unlikely(!buffer_uptodate(jl->j_commit_bh))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001207#ifdef CONFIG_REISERFS_CHECK
Jeff Mahoney45b03d52009-03-30 14:02:21 -04001208 reiserfs_warning(s, "journal-615", "buffer write failed");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001209#endif
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001210 retval = -EIO;
1211 }
1212 bforget(jl->j_commit_bh);
1213 if (journal->j_last_commit_id != 0 &&
1214 (jl->j_trans_id - journal->j_last_commit_id) != 1) {
Jeff Mahoney45b03d52009-03-30 14:02:21 -04001215 reiserfs_warning(s, "clm-2200", "last commit %lu, current %lu",
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001216 journal->j_last_commit_id, jl->j_trans_id);
1217 }
1218 journal->j_last_commit_id = jl->j_trans_id;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001219
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001220 /* now, every commit block is on the disk. It is safe to allow blocks freed during this transaction to be reallocated */
1221 cleanup_freed_for_journal_list(s, jl);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001222
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001223 retval = retval ? retval : journal->j_errno;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001224
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001225 /* mark the metadata dirty */
1226 if (!retval)
1227 dirty_one_transaction(s, jl);
1228 atomic_dec(&(jl->j_commit_left));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001229
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001230 if (flushall) {
1231 atomic_set(&(jl->j_older_commits_done), 1);
1232 }
Jeff Mahoney90415de2008-07-25 01:46:40 -07001233 mutex_unlock(&jl->j_commit_mutex);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001234 put_jl:
1235 put_journal_list(s, jl);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001236
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001237 if (retval)
1238 reiserfs_abort(s, retval, "Journal write error in %s",
Harvey Harrisonfbe54982008-04-28 02:16:22 -07001239 __func__);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001240 put_fs_excl();
1241 return retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001242}
1243
1244/*
Jeff Mahoney0222e652009-03-30 14:02:44 -04001245** flush_journal_list frequently needs to find a newer transaction for a given block. This does that, or
1246** returns NULL if it can't find anything
Linus Torvalds1da177e2005-04-16 15:20:36 -07001247*/
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001248static struct reiserfs_journal_list *find_newer_jl_for_cn(struct
1249 reiserfs_journal_cnode
1250 *cn)
1251{
1252 struct super_block *sb = cn->sb;
1253 b_blocknr_t blocknr = cn->blocknr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001254
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001255 cn = cn->hprev;
1256 while (cn) {
1257 if (cn->sb == sb && cn->blocknr == blocknr && cn->jlist) {
1258 return cn->jlist;
1259 }
1260 cn = cn->hprev;
1261 }
1262 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001263}
1264
Chris Masona3172022006-09-29 01:59:56 -07001265static int newer_jl_done(struct reiserfs_journal_cnode *cn)
1266{
1267 struct super_block *sb = cn->sb;
1268 b_blocknr_t blocknr = cn->blocknr;
1269
1270 cn = cn->hprev;
1271 while (cn) {
1272 if (cn->sb == sb && cn->blocknr == blocknr && cn->jlist &&
1273 atomic_read(&cn->jlist->j_commit_left) != 0)
1274 return 0;
1275 cn = cn->hprev;
1276 }
1277 return 1;
1278}
1279
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001280static void remove_journal_hash(struct super_block *,
1281 struct reiserfs_journal_cnode **,
1282 struct reiserfs_journal_list *, unsigned long,
1283 int);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001284
1285/*
1286** once all the real blocks have been flushed, it is safe to remove them from the
1287** journal list for this transaction. Aside from freeing the cnode, this also allows the
1288** block to be reallocated for data blocks if it had been deleted.
1289*/
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04001290static void remove_all_from_journal_list(struct super_block *sb,
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001291 struct reiserfs_journal_list *jl,
1292 int debug)
1293{
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04001294 struct reiserfs_journal *journal = SB_JOURNAL(sb);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001295 struct reiserfs_journal_cnode *cn, *last;
1296 cn = jl->j_realblock;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001297
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001298 /* which is better, to lock once around the whole loop, or
1299 ** to lock for each call to remove_journal_hash?
1300 */
1301 while (cn) {
1302 if (cn->blocknr != 0) {
1303 if (debug) {
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04001304 reiserfs_warning(sb, "reiserfs-2201",
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001305 "block %u, bh is %d, state %ld",
1306 cn->blocknr, cn->bh ? 1 : 0,
1307 cn->state);
1308 }
1309 cn->state = 0;
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04001310 remove_journal_hash(sb, journal->j_list_hash_table,
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001311 jl, cn->blocknr, 1);
1312 }
1313 last = cn;
1314 cn = cn->next;
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04001315 free_cnode(sb, last);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001316 }
1317 jl->j_realblock = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001318}
1319
1320/*
1321** if this timestamp is greater than the timestamp we wrote last to the header block, write it to the header block.
1322** once this is done, I can safely say the log area for this transaction won't ever be replayed, and I can start
1323** releasing blocks in this transaction for reuse as data blocks.
1324** called by flush_journal_list, before it calls remove_all_from_journal_list
1325**
1326*/
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04001327static int _update_journal_header_block(struct super_block *sb,
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001328 unsigned long offset,
Jeff Mahoney600ed412009-03-30 14:02:17 -04001329 unsigned int trans_id)
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001330{
1331 struct reiserfs_journal_header *jh;
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04001332 struct reiserfs_journal *journal = SB_JOURNAL(sb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001333
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001334 if (reiserfs_is_journal_aborted(journal))
1335 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001336
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001337 if (trans_id >= journal->j_last_flush_trans_id) {
1338 if (buffer_locked((journal->j_header_bh))) {
Frederic Weisbecker8ebc4232009-04-07 04:19:49 +02001339 reiserfs_write_unlock(sb);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001340 wait_on_buffer((journal->j_header_bh));
Frederic Weisbecker8ebc4232009-04-07 04:19:49 +02001341 reiserfs_write_lock(sb);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001342 if (unlikely(!buffer_uptodate(journal->j_header_bh))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001343#ifdef CONFIG_REISERFS_CHECK
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04001344 reiserfs_warning(sb, "journal-699",
Jeff Mahoney45b03d52009-03-30 14:02:21 -04001345 "buffer write failed");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001346#endif
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001347 return -EIO;
1348 }
1349 }
1350 journal->j_last_flush_trans_id = trans_id;
1351 journal->j_first_unflushed_offset = offset;
1352 jh = (struct reiserfs_journal_header *)(journal->j_header_bh->
1353 b_data);
1354 jh->j_last_flush_trans_id = cpu_to_le32(trans_id);
1355 jh->j_first_unflushed_offset = cpu_to_le32(offset);
1356 jh->j_mount_id = cpu_to_le32(journal->j_mount_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001357
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04001358 if (reiserfs_barrier_flush(sb)) {
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001359 int ret;
1360 lock_buffer(journal->j_header_bh);
1361 ret = submit_barrier_buffer(journal->j_header_bh);
1362 if (ret == -EOPNOTSUPP) {
1363 set_buffer_uptodate(journal->j_header_bh);
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04001364 disable_barrier(sb);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001365 goto sync;
1366 }
Frederic Weisbecker8ebc4232009-04-07 04:19:49 +02001367 reiserfs_write_unlock(sb);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001368 wait_on_buffer(journal->j_header_bh);
Frederic Weisbecker8ebc4232009-04-07 04:19:49 +02001369 reiserfs_write_lock(sb);
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04001370 check_barrier_completion(sb, journal->j_header_bh);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001371 } else {
1372 sync:
1373 set_buffer_dirty(journal->j_header_bh);
Frederic Weisbecker8ebc4232009-04-07 04:19:49 +02001374 reiserfs_write_unlock(sb);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001375 sync_dirty_buffer(journal->j_header_bh);
Frederic Weisbecker8ebc4232009-04-07 04:19:49 +02001376 reiserfs_write_lock(sb);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001377 }
1378 if (!buffer_uptodate(journal->j_header_bh)) {
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04001379 reiserfs_warning(sb, "journal-837",
Jeff Mahoney45b03d52009-03-30 14:02:21 -04001380 "IO error during journal replay");
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001381 return -EIO;
1382 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001383 }
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001384 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001385}
1386
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04001387static int update_journal_header_block(struct super_block *sb,
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001388 unsigned long offset,
Jeff Mahoney600ed412009-03-30 14:02:17 -04001389 unsigned int trans_id)
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001390{
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04001391 return _update_journal_header_block(sb, offset, trans_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001392}
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001393
Jeff Mahoney0222e652009-03-30 14:02:44 -04001394/*
1395** flush any and all journal lists older than you are
Linus Torvalds1da177e2005-04-16 15:20:36 -07001396** can only be called from flush_journal_list
1397*/
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04001398static int flush_older_journal_lists(struct super_block *sb,
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001399 struct reiserfs_journal_list *jl)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001400{
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001401 struct list_head *entry;
1402 struct reiserfs_journal_list *other_jl;
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04001403 struct reiserfs_journal *journal = SB_JOURNAL(sb);
Jeff Mahoney600ed412009-03-30 14:02:17 -04001404 unsigned int trans_id = jl->j_trans_id;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001405
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001406 /* we know we are the only ones flushing things, no extra race
1407 * protection is required.
1408 */
1409 restart:
1410 entry = journal->j_journal_list.next;
1411 /* Did we wrap? */
1412 if (entry == &journal->j_journal_list)
1413 return 0;
1414 other_jl = JOURNAL_LIST_ENTRY(entry);
1415 if (other_jl->j_trans_id < trans_id) {
1416 BUG_ON(other_jl->j_refcount <= 0);
1417 /* do not flush all */
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04001418 flush_journal_list(sb, other_jl, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001419
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001420 /* other_jl is now deleted from the list */
1421 goto restart;
1422 }
1423 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001424}
1425
1426static void del_from_work_list(struct super_block *s,
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001427 struct reiserfs_journal_list *jl)
1428{
1429 struct reiserfs_journal *journal = SB_JOURNAL(s);
1430 if (!list_empty(&jl->j_working_list)) {
1431 list_del_init(&jl->j_working_list);
1432 journal->j_num_work_lists--;
1433 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001434}
1435
1436/* flush a journal list, both commit and real blocks
1437**
1438** always set flushall to 1, unless you are calling from inside
1439** flush_journal_list
1440**
Jeff Mahoney0222e652009-03-30 14:02:44 -04001441** IMPORTANT. This can only be called while there are no journal writers,
1442** and the journal is locked. That means it can only be called from
Linus Torvalds1da177e2005-04-16 15:20:36 -07001443** do_journal_end, or by journal_release
1444*/
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001445static int flush_journal_list(struct super_block *s,
1446 struct reiserfs_journal_list *jl, int flushall)
1447{
1448 struct reiserfs_journal_list *pjl;
1449 struct reiserfs_journal_cnode *cn, *last;
1450 int count;
1451 int was_jwait = 0;
1452 int was_dirty = 0;
1453 struct buffer_head *saved_bh;
1454 unsigned long j_len_saved = jl->j_len;
1455 struct reiserfs_journal *journal = SB_JOURNAL(s);
1456 int err = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001457
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001458 BUG_ON(j_len_saved <= 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001459
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001460 if (atomic_read(&journal->j_wcount) != 0) {
Jeff Mahoney45b03d52009-03-30 14:02:21 -04001461 reiserfs_warning(s, "clm-2048", "called with wcount %d",
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001462 atomic_read(&journal->j_wcount));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001463 }
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001464 BUG_ON(jl->j_trans_id == 0);
1465
1466 /* if flushall == 0, the lock is already held */
1467 if (flushall) {
Frederic Weisbecker8ebc4232009-04-07 04:19:49 +02001468 reiserfs_mutex_lock_safe(&journal->j_flush_mutex, s);
Jeff Mahoneyafe70252008-07-25 01:46:39 -07001469 } else if (mutex_trylock(&journal->j_flush_mutex)) {
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001470 BUG();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001471 }
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001472
1473 count = 0;
1474 if (j_len_saved > journal->j_trans_max) {
Jeff Mahoneyc3a9c212009-03-30 14:02:25 -04001475 reiserfs_panic(s, "journal-715", "length is %lu, trans id %lu",
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001476 j_len_saved, jl->j_trans_id);
1477 return 0;
1478 }
1479
1480 get_fs_excl();
1481
1482 /* if all the work is already done, get out of here */
1483 if (atomic_read(&(jl->j_nonzerolen)) <= 0 &&
1484 atomic_read(&(jl->j_commit_left)) <= 0) {
1485 goto flush_older_and_return;
1486 }
1487
Jeff Mahoney0222e652009-03-30 14:02:44 -04001488 /* start by putting the commit list on disk. This will also flush
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001489 ** the commit lists of any olders transactions
1490 */
1491 flush_commit_list(s, jl, 1);
1492
1493 if (!(jl->j_state & LIST_DIRTY)
1494 && !reiserfs_is_journal_aborted(journal))
1495 BUG();
1496
1497 /* are we done now? */
1498 if (atomic_read(&(jl->j_nonzerolen)) <= 0 &&
1499 atomic_read(&(jl->j_commit_left)) <= 0) {
1500 goto flush_older_and_return;
1501 }
1502
Jeff Mahoney0222e652009-03-30 14:02:44 -04001503 /* loop through each cnode, see if we need to write it,
1504 ** or wait on a more recent transaction, or just ignore it
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001505 */
1506 if (atomic_read(&(journal->j_wcount)) != 0) {
Jeff Mahoneyc3a9c212009-03-30 14:02:25 -04001507 reiserfs_panic(s, "journal-844", "journal list is flushing, "
1508 "wcount is not 0");
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001509 }
1510 cn = jl->j_realblock;
1511 while (cn) {
1512 was_jwait = 0;
1513 was_dirty = 0;
1514 saved_bh = NULL;
1515 /* blocknr of 0 is no longer in the hash, ignore it */
1516 if (cn->blocknr == 0) {
1517 goto free_cnode;
1518 }
1519
1520 /* This transaction failed commit. Don't write out to the disk */
1521 if (!(jl->j_state & LIST_DIRTY))
1522 goto free_cnode;
1523
1524 pjl = find_newer_jl_for_cn(cn);
1525 /* the order is important here. We check pjl to make sure we
1526 ** don't clear BH_JDirty_wait if we aren't the one writing this
1527 ** block to disk
1528 */
1529 if (!pjl && cn->bh) {
1530 saved_bh = cn->bh;
1531
Jeff Mahoney0222e652009-03-30 14:02:44 -04001532 /* we do this to make sure nobody releases the buffer while
1533 ** we are working with it
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001534 */
1535 get_bh(saved_bh);
1536
1537 if (buffer_journal_dirty(saved_bh)) {
1538 BUG_ON(!can_dirty(cn));
1539 was_jwait = 1;
1540 was_dirty = 1;
1541 } else if (can_dirty(cn)) {
1542 /* everything with !pjl && jwait should be writable */
1543 BUG();
1544 }
1545 }
1546
1547 /* if someone has this block in a newer transaction, just make
Matt LaPlante0779bf22006-11-30 05:24:39 +01001548 ** sure they are committed, and don't try writing it to disk
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001549 */
1550 if (pjl) {
1551 if (atomic_read(&pjl->j_commit_left))
1552 flush_commit_list(s, pjl, 1);
1553 goto free_cnode;
1554 }
1555
Jeff Mahoney0222e652009-03-30 14:02:44 -04001556 /* bh == NULL when the block got to disk on its own, OR,
1557 ** the block got freed in a future transaction
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001558 */
1559 if (saved_bh == NULL) {
1560 goto free_cnode;
1561 }
1562
1563 /* this should never happen. kupdate_one_transaction has this list
1564 ** locked while it works, so we should never see a buffer here that
1565 ** is not marked JDirty_wait
1566 */
1567 if ((!was_jwait) && !buffer_locked(saved_bh)) {
Jeff Mahoney45b03d52009-03-30 14:02:21 -04001568 reiserfs_warning(s, "journal-813",
1569 "BAD! buffer %llu %cdirty %cjwait, "
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001570 "not in a newer tranasction",
1571 (unsigned long long)saved_bh->
1572 b_blocknr, was_dirty ? ' ' : '!',
1573 was_jwait ? ' ' : '!');
1574 }
1575 if (was_dirty) {
1576 /* we inc again because saved_bh gets decremented at free_cnode */
1577 get_bh(saved_bh);
1578 set_bit(BLOCK_NEEDS_FLUSH, &cn->state);
1579 lock_buffer(saved_bh);
1580 BUG_ON(cn->blocknr != saved_bh->b_blocknr);
1581 if (buffer_dirty(saved_bh))
1582 submit_logged_buffer(saved_bh);
1583 else
1584 unlock_buffer(saved_bh);
1585 count++;
1586 } else {
Jeff Mahoney45b03d52009-03-30 14:02:21 -04001587 reiserfs_warning(s, "clm-2082",
1588 "Unable to flush buffer %llu in %s",
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001589 (unsigned long long)saved_bh->
Harvey Harrisonfbe54982008-04-28 02:16:22 -07001590 b_blocknr, __func__);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001591 }
1592 free_cnode:
1593 last = cn;
1594 cn = cn->next;
1595 if (saved_bh) {
1596 /* we incremented this to keep others from taking the buffer head away */
1597 put_bh(saved_bh);
1598 if (atomic_read(&(saved_bh->b_count)) < 0) {
Jeff Mahoney45b03d52009-03-30 14:02:21 -04001599 reiserfs_warning(s, "journal-945",
1600 "saved_bh->b_count < 0");
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001601 }
1602 }
1603 }
1604 if (count > 0) {
1605 cn = jl->j_realblock;
1606 while (cn) {
1607 if (test_bit(BLOCK_NEEDS_FLUSH, &cn->state)) {
1608 if (!cn->bh) {
Jeff Mahoneyc3a9c212009-03-30 14:02:25 -04001609 reiserfs_panic(s, "journal-1011",
1610 "cn->bh is NULL");
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001611 }
Frederic Weisbecker8ebc4232009-04-07 04:19:49 +02001612
1613 reiserfs_write_unlock(s);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001614 wait_on_buffer(cn->bh);
Frederic Weisbecker8ebc4232009-04-07 04:19:49 +02001615 reiserfs_write_lock(s);
1616
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001617 if (!cn->bh) {
Jeff Mahoneyc3a9c212009-03-30 14:02:25 -04001618 reiserfs_panic(s, "journal-1012",
1619 "cn->bh is NULL");
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001620 }
1621 if (unlikely(!buffer_uptodate(cn->bh))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001622#ifdef CONFIG_REISERFS_CHECK
Jeff Mahoney45b03d52009-03-30 14:02:21 -04001623 reiserfs_warning(s, "journal-949",
1624 "buffer write failed");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001625#endif
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001626 err = -EIO;
1627 }
1628 /* note, we must clear the JDirty_wait bit after the up to date
1629 ** check, otherwise we race against our flushpage routine
1630 */
1631 BUG_ON(!test_clear_buffer_journal_dirty
1632 (cn->bh));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001633
Chris Mason398c95b2007-10-16 23:29:44 -07001634 /* drop one ref for us */
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001635 put_bh(cn->bh);
Chris Mason398c95b2007-10-16 23:29:44 -07001636 /* drop one ref for journal_mark_dirty */
1637 release_buffer_page(cn->bh);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001638 }
1639 cn = cn->next;
1640 }
1641 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001642
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001643 if (err)
1644 reiserfs_abort(s, -EIO,
1645 "Write error while pushing transaction to disk in %s",
Harvey Harrisonfbe54982008-04-28 02:16:22 -07001646 __func__);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001647 flush_older_and_return:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001648
Jeff Mahoney0222e652009-03-30 14:02:44 -04001649 /* before we can update the journal header block, we _must_ flush all
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001650 ** real blocks from all older transactions to disk. This is because
1651 ** once the header block is updated, this transaction will not be
1652 ** replayed after a crash
1653 */
1654 if (flushall) {
1655 flush_older_journal_lists(s, jl);
1656 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001657
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001658 err = journal->j_errno;
Jeff Mahoney0222e652009-03-30 14:02:44 -04001659 /* before we can remove everything from the hash tables for this
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001660 ** transaction, we must make sure it can never be replayed
1661 **
1662 ** since we are only called from do_journal_end, we know for sure there
1663 ** are no allocations going on while we are flushing journal lists. So,
1664 ** we only need to update the journal header block for the last list
1665 ** being flushed
1666 */
1667 if (!err && flushall) {
1668 err =
1669 update_journal_header_block(s,
1670 (jl->j_start + jl->j_len +
1671 2) % SB_ONDISK_JOURNAL_SIZE(s),
1672 jl->j_trans_id);
1673 if (err)
1674 reiserfs_abort(s, -EIO,
1675 "Write error while updating journal header in %s",
Harvey Harrisonfbe54982008-04-28 02:16:22 -07001676 __func__);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001677 }
1678 remove_all_from_journal_list(s, jl, 0);
1679 list_del_init(&jl->j_list);
1680 journal->j_num_lists--;
1681 del_from_work_list(s, jl);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001682
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001683 if (journal->j_last_flush_id != 0 &&
1684 (jl->j_trans_id - journal->j_last_flush_id) != 1) {
Jeff Mahoney45b03d52009-03-30 14:02:21 -04001685 reiserfs_warning(s, "clm-2201", "last flush %lu, current %lu",
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001686 journal->j_last_flush_id, jl->j_trans_id);
1687 }
1688 journal->j_last_flush_id = jl->j_trans_id;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001689
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001690 /* not strictly required since we are freeing the list, but it should
1691 * help find code using dead lists later on
1692 */
1693 jl->j_len = 0;
1694 atomic_set(&(jl->j_nonzerolen), 0);
1695 jl->j_start = 0;
1696 jl->j_realblock = NULL;
1697 jl->j_commit_bh = NULL;
1698 jl->j_trans_id = 0;
1699 jl->j_state = 0;
1700 put_journal_list(s, jl);
1701 if (flushall)
Jeff Mahoneyafe70252008-07-25 01:46:39 -07001702 mutex_unlock(&journal->j_flush_mutex);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001703 put_fs_excl();
1704 return err;
1705}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001706
Chris Masona3172022006-09-29 01:59:56 -07001707static int test_transaction(struct super_block *s,
1708 struct reiserfs_journal_list *jl)
1709{
1710 struct reiserfs_journal_cnode *cn;
1711
1712 if (jl->j_len == 0 || atomic_read(&jl->j_nonzerolen) == 0)
1713 return 1;
1714
1715 cn = jl->j_realblock;
1716 while (cn) {
1717 /* if the blocknr == 0, this has been cleared from the hash,
1718 ** skip it
1719 */
1720 if (cn->blocknr == 0) {
1721 goto next;
1722 }
1723 if (cn->bh && !newer_jl_done(cn))
1724 return 0;
1725 next:
1726 cn = cn->next;
1727 cond_resched();
1728 }
1729 return 0;
1730}
1731
Linus Torvalds1da177e2005-04-16 15:20:36 -07001732static int write_one_transaction(struct super_block *s,
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001733 struct reiserfs_journal_list *jl,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001734 struct buffer_chunk *chunk)
1735{
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001736 struct reiserfs_journal_cnode *cn;
1737 int ret = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001738
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001739 jl->j_state |= LIST_TOUCHED;
1740 del_from_work_list(s, jl);
1741 if (jl->j_len == 0 || atomic_read(&jl->j_nonzerolen) == 0) {
1742 return 0;
1743 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001744
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001745 cn = jl->j_realblock;
1746 while (cn) {
1747 /* if the blocknr == 0, this has been cleared from the hash,
1748 ** skip it
1749 */
1750 if (cn->blocknr == 0) {
1751 goto next;
1752 }
1753 if (cn->bh && can_dirty(cn) && buffer_dirty(cn->bh)) {
1754 struct buffer_head *tmp_bh;
1755 /* we can race against journal_mark_freed when we try
1756 * to lock_buffer(cn->bh), so we have to inc the buffer
1757 * count, and recheck things after locking
1758 */
1759 tmp_bh = cn->bh;
1760 get_bh(tmp_bh);
1761 lock_buffer(tmp_bh);
1762 if (cn->bh && can_dirty(cn) && buffer_dirty(tmp_bh)) {
1763 if (!buffer_journal_dirty(tmp_bh) ||
1764 buffer_journal_prepared(tmp_bh))
1765 BUG();
1766 add_to_chunk(chunk, tmp_bh, NULL, write_chunk);
1767 ret++;
1768 } else {
1769 /* note, cn->bh might be null now */
1770 unlock_buffer(tmp_bh);
1771 }
1772 put_bh(tmp_bh);
1773 }
1774 next:
1775 cn = cn->next;
1776 cond_resched();
1777 }
1778 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001779}
1780
1781/* used by flush_commit_list */
1782static int dirty_one_transaction(struct super_block *s,
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001783 struct reiserfs_journal_list *jl)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001784{
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001785 struct reiserfs_journal_cnode *cn;
1786 struct reiserfs_journal_list *pjl;
1787 int ret = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001788
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001789 jl->j_state |= LIST_DIRTY;
1790 cn = jl->j_realblock;
1791 while (cn) {
1792 /* look for a more recent transaction that logged this
1793 ** buffer. Only the most recent transaction with a buffer in
1794 ** it is allowed to send that buffer to disk
1795 */
1796 pjl = find_newer_jl_for_cn(cn);
1797 if (!pjl && cn->blocknr && cn->bh
1798 && buffer_journal_dirty(cn->bh)) {
1799 BUG_ON(!can_dirty(cn));
1800 /* if the buffer is prepared, it will either be logged
1801 * or restored. If restored, we need to make sure
1802 * it actually gets marked dirty
1803 */
1804 clear_buffer_journal_new(cn->bh);
1805 if (buffer_journal_prepared(cn->bh)) {
1806 set_buffer_journal_restore_dirty(cn->bh);
1807 } else {
1808 set_buffer_journal_test(cn->bh);
1809 mark_buffer_dirty(cn->bh);
1810 }
1811 }
1812 cn = cn->next;
1813 }
1814 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001815}
1816
1817static int kupdate_transactions(struct super_block *s,
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001818 struct reiserfs_journal_list *jl,
1819 struct reiserfs_journal_list **next_jl,
Jeff Mahoney600ed412009-03-30 14:02:17 -04001820 unsigned int *next_trans_id,
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001821 int num_blocks, int num_trans)
1822{
1823 int ret = 0;
1824 int written = 0;
1825 int transactions_flushed = 0;
Jeff Mahoney600ed412009-03-30 14:02:17 -04001826 unsigned int orig_trans_id = jl->j_trans_id;
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001827 struct buffer_chunk chunk;
1828 struct list_head *entry;
1829 struct reiserfs_journal *journal = SB_JOURNAL(s);
1830 chunk.nr = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001831
Frederic Weisbeckera412f9e2009-04-14 00:10:35 +02001832 reiserfs_mutex_lock_safe(&journal->j_flush_mutex, s);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001833 if (!journal_list_still_alive(s, orig_trans_id)) {
1834 goto done;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001835 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001836
Jeff Mahoneyafe70252008-07-25 01:46:39 -07001837 /* we've got j_flush_mutex held, nobody is going to delete any
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001838 * of these lists out from underneath us
1839 */
1840 while ((num_trans && transactions_flushed < num_trans) ||
1841 (!num_trans && written < num_blocks)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001842
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001843 if (jl->j_len == 0 || (jl->j_state & LIST_TOUCHED) ||
1844 atomic_read(&jl->j_commit_left)
1845 || !(jl->j_state & LIST_DIRTY)) {
1846 del_from_work_list(s, jl);
1847 break;
1848 }
1849 ret = write_one_transaction(s, jl, &chunk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001850
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001851 if (ret < 0)
1852 goto done;
1853 transactions_flushed++;
1854 written += ret;
1855 entry = jl->j_list.next;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001856
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001857 /* did we wrap? */
1858 if (entry == &journal->j_journal_list) {
1859 break;
1860 }
1861 jl = JOURNAL_LIST_ENTRY(entry);
1862
1863 /* don't bother with older transactions */
1864 if (jl->j_trans_id <= orig_trans_id)
1865 break;
1866 }
1867 if (chunk.nr) {
1868 write_chunk(&chunk);
1869 }
1870
1871 done:
Jeff Mahoneyafe70252008-07-25 01:46:39 -07001872 mutex_unlock(&journal->j_flush_mutex);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001873 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001874}
1875
1876/* for o_sync and fsync heavy applications, they tend to use
1877** all the journa list slots with tiny transactions. These
1878** trigger lots and lots of calls to update the header block, which
1879** adds seeks and slows things down.
1880**
1881** This function tries to clear out a large chunk of the journal lists
1882** at once, which makes everything faster since only the newest journal
1883** list updates the header block
1884*/
1885static int flush_used_journal_lists(struct super_block *s,
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001886 struct reiserfs_journal_list *jl)
1887{
1888 unsigned long len = 0;
1889 unsigned long cur_len;
1890 int ret;
1891 int i;
1892 int limit = 256;
1893 struct reiserfs_journal_list *tjl;
1894 struct reiserfs_journal_list *flush_jl;
Jeff Mahoney600ed412009-03-30 14:02:17 -04001895 unsigned int trans_id;
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001896 struct reiserfs_journal *journal = SB_JOURNAL(s);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001897
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001898 flush_jl = tjl = jl;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001899
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001900 /* in data logging mode, try harder to flush a lot of blocks */
1901 if (reiserfs_data_log(s))
1902 limit = 1024;
1903 /* flush for 256 transactions or limit blocks, whichever comes first */
1904 for (i = 0; i < 256 && len < limit; i++) {
1905 if (atomic_read(&tjl->j_commit_left) ||
1906 tjl->j_trans_id < jl->j_trans_id) {
1907 break;
1908 }
1909 cur_len = atomic_read(&tjl->j_nonzerolen);
1910 if (cur_len > 0) {
1911 tjl->j_state &= ~LIST_TOUCHED;
1912 }
1913 len += cur_len;
1914 flush_jl = tjl;
1915 if (tjl->j_list.next == &journal->j_journal_list)
1916 break;
1917 tjl = JOURNAL_LIST_ENTRY(tjl->j_list.next);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001918 }
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001919 /* try to find a group of blocks we can flush across all the
1920 ** transactions, but only bother if we've actually spanned
1921 ** across multiple lists
1922 */
1923 if (flush_jl != jl) {
1924 ret = kupdate_transactions(s, jl, &tjl, &trans_id, len, i);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001925 }
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001926 flush_journal_list(s, flush_jl, 1);
1927 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001928}
1929
1930/*
1931** removes any nodes in table with name block and dev as bh.
1932** only touchs the hnext and hprev pointers.
1933*/
1934void remove_journal_hash(struct super_block *sb,
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001935 struct reiserfs_journal_cnode **table,
1936 struct reiserfs_journal_list *jl,
1937 unsigned long block, int remove_freed)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001938{
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001939 struct reiserfs_journal_cnode *cur;
1940 struct reiserfs_journal_cnode **head;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001941
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001942 head = &(journal_hash(table, sb, block));
1943 if (!head) {
1944 return;
1945 }
1946 cur = *head;
1947 while (cur) {
1948 if (cur->blocknr == block && cur->sb == sb
1949 && (jl == NULL || jl == cur->jlist)
1950 && (!test_bit(BLOCK_FREED, &cur->state) || remove_freed)) {
1951 if (cur->hnext) {
1952 cur->hnext->hprev = cur->hprev;
1953 }
1954 if (cur->hprev) {
1955 cur->hprev->hnext = cur->hnext;
1956 } else {
1957 *head = cur->hnext;
1958 }
1959 cur->blocknr = 0;
1960 cur->sb = NULL;
1961 cur->state = 0;
1962 if (cur->bh && cur->jlist) /* anybody who clears the cur->bh will also dec the nonzerolen */
1963 atomic_dec(&(cur->jlist->j_nonzerolen));
1964 cur->bh = NULL;
1965 cur->jlist = NULL;
1966 }
1967 cur = cur->hnext;
1968 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001969}
1970
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04001971static void free_journal_ram(struct super_block *sb)
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001972{
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04001973 struct reiserfs_journal *journal = SB_JOURNAL(sb);
Pekka Enbergd739b422006-02-01 03:06:43 -08001974 kfree(journal->j_current_jl);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001975 journal->j_num_lists--;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001976
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001977 vfree(journal->j_cnode_free_orig);
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04001978 free_list_bitmaps(sb, journal->j_list_bitmap);
1979 free_bitmap_nodes(sb); /* must be after free_list_bitmaps */
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001980 if (journal->j_header_bh) {
1981 brelse(journal->j_header_bh);
1982 }
1983 /* j_header_bh is on the journal dev, make sure not to release the journal
1984 * dev until we brelse j_header_bh
1985 */
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04001986 release_journal_dev(sb, journal);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001987 vfree(journal);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001988}
1989
1990/*
1991** call on unmount. Only set error to 1 if you haven't made your way out
1992** of read_super() yet. Any other caller must keep error at 0.
1993*/
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001994static int do_journal_release(struct reiserfs_transaction_handle *th,
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04001995 struct super_block *sb, int error)
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001996{
1997 struct reiserfs_transaction_handle myth;
1998 int flushed = 0;
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04001999 struct reiserfs_journal *journal = SB_JOURNAL(sb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002000
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002001 /* we only want to flush out transactions if we were called with error == 0
2002 */
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04002003 if (!error && !(sb->s_flags & MS_RDONLY)) {
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002004 /* end the current trans */
2005 BUG_ON(!th->t_trans_id);
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04002006 do_journal_end(th, sb, 10, FLUSH_ALL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002007
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002008 /* make sure something gets logged to force our way into the flush code */
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04002009 if (!journal_join(&myth, sb, 1)) {
2010 reiserfs_prepare_for_journal(sb,
2011 SB_BUFFER_WITH_SB(sb),
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002012 1);
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04002013 journal_mark_dirty(&myth, sb,
2014 SB_BUFFER_WITH_SB(sb));
2015 do_journal_end(&myth, sb, 1, FLUSH_ALL);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002016 flushed = 1;
2017 }
2018 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002019
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002020 /* this also catches errors during the do_journal_end above */
2021 if (!error && reiserfs_is_journal_aborted(journal)) {
2022 memset(&myth, 0, sizeof(myth));
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04002023 if (!journal_join_abort(&myth, sb, 1)) {
2024 reiserfs_prepare_for_journal(sb,
2025 SB_BUFFER_WITH_SB(sb),
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002026 1);
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04002027 journal_mark_dirty(&myth, sb,
2028 SB_BUFFER_WITH_SB(sb));
2029 do_journal_end(&myth, sb, 1, FLUSH_ALL);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002030 }
2031 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002032
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002033 reiserfs_mounted_fs_count--;
2034 /* wait for all commits to finish */
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04002035 cancel_delayed_work(&SB_JOURNAL(sb)->j_work);
Frederic Weisbecker8ebc4232009-04-07 04:19:49 +02002036
2037 /*
2038 * We must release the write lock here because
2039 * the workqueue job (flush_async_commit) needs this lock
2040 */
2041 reiserfs_write_unlock(sb);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002042 flush_workqueue(commit_wq);
Frederic Weisbecker8ebc4232009-04-07 04:19:49 +02002043
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002044 if (!reiserfs_mounted_fs_count) {
2045 destroy_workqueue(commit_wq);
2046 commit_wq = NULL;
2047 }
Frederic Weisbecker8ebc4232009-04-07 04:19:49 +02002048 reiserfs_write_lock(sb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002049
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04002050 free_journal_ram(sb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002051
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002052 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002053}
2054
2055/*
2056** call on unmount. flush all journal trans, release all alloc'd ram
2057*/
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002058int journal_release(struct reiserfs_transaction_handle *th,
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04002059 struct super_block *sb)
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002060{
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04002061 return do_journal_release(th, sb, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002062}
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002063
Linus Torvalds1da177e2005-04-16 15:20:36 -07002064/*
2065** only call from an error condition inside reiserfs_read_super!
2066*/
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002067int journal_release_error(struct reiserfs_transaction_handle *th,
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04002068 struct super_block *sb)
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002069{
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04002070 return do_journal_release(th, sb, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002071}
2072
2073/* compares description block with commit block. returns 1 if they differ, 0 if they are the same */
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04002074static int journal_compare_desc_commit(struct super_block *sb,
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002075 struct reiserfs_journal_desc *desc,
2076 struct reiserfs_journal_commit *commit)
2077{
2078 if (get_commit_trans_id(commit) != get_desc_trans_id(desc) ||
2079 get_commit_trans_len(commit) != get_desc_trans_len(desc) ||
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04002080 get_commit_trans_len(commit) > SB_JOURNAL(sb)->j_trans_max ||
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002081 get_commit_trans_len(commit) <= 0) {
2082 return 1;
2083 }
2084 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002085}
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002086
Jeff Mahoney0222e652009-03-30 14:02:44 -04002087/* returns 0 if it did not find a description block
Linus Torvalds1da177e2005-04-16 15:20:36 -07002088** returns -1 if it found a corrupt commit block
Jeff Mahoney0222e652009-03-30 14:02:44 -04002089** returns 1 if both desc and commit were valid
Linus Torvalds1da177e2005-04-16 15:20:36 -07002090*/
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04002091static int journal_transaction_is_valid(struct super_block *sb,
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002092 struct buffer_head *d_bh,
Jeff Mahoney600ed412009-03-30 14:02:17 -04002093 unsigned int *oldest_invalid_trans_id,
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002094 unsigned long *newest_mount_id)
2095{
2096 struct reiserfs_journal_desc *desc;
2097 struct reiserfs_journal_commit *commit;
2098 struct buffer_head *c_bh;
2099 unsigned long offset;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002100
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002101 if (!d_bh)
2102 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002103
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002104 desc = (struct reiserfs_journal_desc *)d_bh->b_data;
2105 if (get_desc_trans_len(desc) > 0
2106 && !memcmp(get_journal_desc_magic(d_bh), JOURNAL_DESC_MAGIC, 8)) {
2107 if (oldest_invalid_trans_id && *oldest_invalid_trans_id
2108 && get_desc_trans_id(desc) > *oldest_invalid_trans_id) {
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04002109 reiserfs_debug(sb, REISERFS_DEBUG_CODE,
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002110 "journal-986: transaction "
2111 "is valid returning because trans_id %d is greater than "
2112 "oldest_invalid %lu",
2113 get_desc_trans_id(desc),
2114 *oldest_invalid_trans_id);
2115 return 0;
2116 }
2117 if (newest_mount_id
2118 && *newest_mount_id > get_desc_mount_id(desc)) {
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04002119 reiserfs_debug(sb, REISERFS_DEBUG_CODE,
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002120 "journal-1087: transaction "
2121 "is valid returning because mount_id %d is less than "
2122 "newest_mount_id %lu",
2123 get_desc_mount_id(desc),
2124 *newest_mount_id);
2125 return -1;
2126 }
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04002127 if (get_desc_trans_len(desc) > SB_JOURNAL(sb)->j_trans_max) {
2128 reiserfs_warning(sb, "journal-2018",
Jeff Mahoney45b03d52009-03-30 14:02:21 -04002129 "Bad transaction length %d "
2130 "encountered, ignoring transaction",
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002131 get_desc_trans_len(desc));
2132 return -1;
2133 }
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04002134 offset = d_bh->b_blocknr - SB_ONDISK_JOURNAL_1st_BLOCK(sb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002135
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002136 /* ok, we have a journal description block, lets see if the transaction was valid */
2137 c_bh =
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04002138 journal_bread(sb,
2139 SB_ONDISK_JOURNAL_1st_BLOCK(sb) +
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002140 ((offset + get_desc_trans_len(desc) +
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04002141 1) % SB_ONDISK_JOURNAL_SIZE(sb)));
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002142 if (!c_bh)
2143 return 0;
2144 commit = (struct reiserfs_journal_commit *)c_bh->b_data;
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04002145 if (journal_compare_desc_commit(sb, desc, commit)) {
2146 reiserfs_debug(sb, REISERFS_DEBUG_CODE,
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002147 "journal_transaction_is_valid, commit offset %ld had bad "
2148 "time %d or length %d",
2149 c_bh->b_blocknr -
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04002150 SB_ONDISK_JOURNAL_1st_BLOCK(sb),
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002151 get_commit_trans_id(commit),
2152 get_commit_trans_len(commit));
2153 brelse(c_bh);
2154 if (oldest_invalid_trans_id) {
2155 *oldest_invalid_trans_id =
2156 get_desc_trans_id(desc);
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04002157 reiserfs_debug(sb, REISERFS_DEBUG_CODE,
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002158 "journal-1004: "
2159 "transaction_is_valid setting oldest invalid trans_id "
2160 "to %d",
2161 get_desc_trans_id(desc));
2162 }
2163 return -1;
2164 }
2165 brelse(c_bh);
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04002166 reiserfs_debug(sb, REISERFS_DEBUG_CODE,
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002167 "journal-1006: found valid "
2168 "transaction start offset %llu, len %d id %d",
2169 d_bh->b_blocknr -
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04002170 SB_ONDISK_JOURNAL_1st_BLOCK(sb),
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002171 get_desc_trans_len(desc),
2172 get_desc_trans_id(desc));
2173 return 1;
2174 } else {
2175 return 0;
2176 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002177}
2178
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002179static void brelse_array(struct buffer_head **heads, int num)
2180{
2181 int i;
2182 for (i = 0; i < num; i++) {
2183 brelse(heads[i]);
2184 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002185}
2186
2187/*
2188** given the start, and values for the oldest acceptable transactions,
2189** this either reads in a replays a transaction, or returns because the transaction
2190** is invalid, or too old.
2191*/
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04002192static int journal_read_transaction(struct super_block *sb,
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002193 unsigned long cur_dblock,
2194 unsigned long oldest_start,
Jeff Mahoney600ed412009-03-30 14:02:17 -04002195 unsigned int oldest_trans_id,
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002196 unsigned long newest_mount_id)
2197{
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04002198 struct reiserfs_journal *journal = SB_JOURNAL(sb);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002199 struct reiserfs_journal_desc *desc;
2200 struct reiserfs_journal_commit *commit;
Jeff Mahoney600ed412009-03-30 14:02:17 -04002201 unsigned int trans_id = 0;
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002202 struct buffer_head *c_bh;
2203 struct buffer_head *d_bh;
2204 struct buffer_head **log_blocks = NULL;
2205 struct buffer_head **real_blocks = NULL;
Jeff Mahoney600ed412009-03-30 14:02:17 -04002206 unsigned int trans_offset;
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002207 int i;
2208 int trans_half;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002209
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04002210 d_bh = journal_bread(sb, cur_dblock);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002211 if (!d_bh)
2212 return 1;
2213 desc = (struct reiserfs_journal_desc *)d_bh->b_data;
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04002214 trans_offset = d_bh->b_blocknr - SB_ONDISK_JOURNAL_1st_BLOCK(sb);
2215 reiserfs_debug(sb, REISERFS_DEBUG_CODE, "journal-1037: "
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002216 "journal_read_transaction, offset %llu, len %d mount_id %d",
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04002217 d_bh->b_blocknr - SB_ONDISK_JOURNAL_1st_BLOCK(sb),
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002218 get_desc_trans_len(desc), get_desc_mount_id(desc));
2219 if (get_desc_trans_id(desc) < oldest_trans_id) {
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04002220 reiserfs_debug(sb, REISERFS_DEBUG_CODE, "journal-1039: "
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002221 "journal_read_trans skipping because %lu is too old",
2222 cur_dblock -
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04002223 SB_ONDISK_JOURNAL_1st_BLOCK(sb));
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002224 brelse(d_bh);
2225 return 1;
2226 }
2227 if (get_desc_mount_id(desc) != newest_mount_id) {
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04002228 reiserfs_debug(sb, REISERFS_DEBUG_CODE, "journal-1146: "
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002229 "journal_read_trans skipping because %d is != "
2230 "newest_mount_id %lu", get_desc_mount_id(desc),
2231 newest_mount_id);
2232 brelse(d_bh);
2233 return 1;
2234 }
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04002235 c_bh = journal_bread(sb, SB_ONDISK_JOURNAL_1st_BLOCK(sb) +
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002236 ((trans_offset + get_desc_trans_len(desc) + 1) %
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04002237 SB_ONDISK_JOURNAL_SIZE(sb)));
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002238 if (!c_bh) {
2239 brelse(d_bh);
2240 return 1;
2241 }
2242 commit = (struct reiserfs_journal_commit *)c_bh->b_data;
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04002243 if (journal_compare_desc_commit(sb, desc, commit)) {
2244 reiserfs_debug(sb, REISERFS_DEBUG_CODE,
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002245 "journal_read_transaction, "
2246 "commit offset %llu had bad time %d or length %d",
2247 c_bh->b_blocknr -
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04002248 SB_ONDISK_JOURNAL_1st_BLOCK(sb),
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002249 get_commit_trans_id(commit),
2250 get_commit_trans_len(commit));
2251 brelse(c_bh);
2252 brelse(d_bh);
2253 return 1;
2254 }
2255 trans_id = get_desc_trans_id(desc);
2256 /* now we know we've got a good transaction, and it was inside the valid time ranges */
Pekka Enbergd739b422006-02-01 03:06:43 -08002257 log_blocks = kmalloc(get_desc_trans_len(desc) *
2258 sizeof(struct buffer_head *), GFP_NOFS);
2259 real_blocks = kmalloc(get_desc_trans_len(desc) *
2260 sizeof(struct buffer_head *), GFP_NOFS);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002261 if (!log_blocks || !real_blocks) {
2262 brelse(c_bh);
2263 brelse(d_bh);
Pekka Enbergd739b422006-02-01 03:06:43 -08002264 kfree(log_blocks);
2265 kfree(real_blocks);
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04002266 reiserfs_warning(sb, "journal-1169",
Jeff Mahoney45b03d52009-03-30 14:02:21 -04002267 "kmalloc failed, unable to mount FS");
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002268 return -1;
2269 }
2270 /* get all the buffer heads */
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04002271 trans_half = journal_trans_half(sb->s_blocksize);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002272 for (i = 0; i < get_desc_trans_len(desc); i++) {
2273 log_blocks[i] =
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04002274 journal_getblk(sb,
2275 SB_ONDISK_JOURNAL_1st_BLOCK(sb) +
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002276 (trans_offset + 1 +
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04002277 i) % SB_ONDISK_JOURNAL_SIZE(sb));
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002278 if (i < trans_half) {
2279 real_blocks[i] =
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04002280 sb_getblk(sb,
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002281 le32_to_cpu(desc->j_realblock[i]));
2282 } else {
2283 real_blocks[i] =
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04002284 sb_getblk(sb,
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002285 le32_to_cpu(commit->
2286 j_realblock[i - trans_half]));
2287 }
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04002288 if (real_blocks[i]->b_blocknr > SB_BLOCK_COUNT(sb)) {
2289 reiserfs_warning(sb, "journal-1207",
Jeff Mahoney45b03d52009-03-30 14:02:21 -04002290 "REPLAY FAILURE fsck required! "
2291 "Block to replay is outside of "
2292 "filesystem");
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002293 goto abort_replay;
2294 }
2295 /* make sure we don't try to replay onto log or reserved area */
2296 if (is_block_in_log_or_reserved_area
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04002297 (sb, real_blocks[i]->b_blocknr)) {
2298 reiserfs_warning(sb, "journal-1204",
Jeff Mahoney45b03d52009-03-30 14:02:21 -04002299 "REPLAY FAILURE fsck required! "
2300 "Trying to replay onto a log block");
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002301 abort_replay:
2302 brelse_array(log_blocks, i);
2303 brelse_array(real_blocks, i);
2304 brelse(c_bh);
2305 brelse(d_bh);
Pekka Enbergd739b422006-02-01 03:06:43 -08002306 kfree(log_blocks);
2307 kfree(real_blocks);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002308 return -1;
2309 }
2310 }
2311 /* read in the log blocks, memcpy to the corresponding real block */
2312 ll_rw_block(READ, get_desc_trans_len(desc), log_blocks);
2313 for (i = 0; i < get_desc_trans_len(desc); i++) {
Frederic Weisbecker8ebc4232009-04-07 04:19:49 +02002314
2315 reiserfs_write_unlock(sb);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002316 wait_on_buffer(log_blocks[i]);
Frederic Weisbecker8ebc4232009-04-07 04:19:49 +02002317 reiserfs_write_lock(sb);
2318
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002319 if (!buffer_uptodate(log_blocks[i])) {
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04002320 reiserfs_warning(sb, "journal-1212",
Jeff Mahoney45b03d52009-03-30 14:02:21 -04002321 "REPLAY FAILURE fsck required! "
2322 "buffer write failed");
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002323 brelse_array(log_blocks + i,
2324 get_desc_trans_len(desc) - i);
2325 brelse_array(real_blocks, get_desc_trans_len(desc));
2326 brelse(c_bh);
2327 brelse(d_bh);
Pekka Enbergd739b422006-02-01 03:06:43 -08002328 kfree(log_blocks);
2329 kfree(real_blocks);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002330 return -1;
2331 }
2332 memcpy(real_blocks[i]->b_data, log_blocks[i]->b_data,
2333 real_blocks[i]->b_size);
2334 set_buffer_uptodate(real_blocks[i]);
2335 brelse(log_blocks[i]);
2336 }
2337 /* flush out the real blocks */
2338 for (i = 0; i < get_desc_trans_len(desc); i++) {
2339 set_buffer_dirty(real_blocks[i]);
Jan Kara53778ff2005-09-06 15:19:14 -07002340 ll_rw_block(SWRITE, 1, real_blocks + i);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002341 }
2342 for (i = 0; i < get_desc_trans_len(desc); i++) {
2343 wait_on_buffer(real_blocks[i]);
2344 if (!buffer_uptodate(real_blocks[i])) {
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04002345 reiserfs_warning(sb, "journal-1226",
Jeff Mahoney45b03d52009-03-30 14:02:21 -04002346 "REPLAY FAILURE, fsck required! "
2347 "buffer write failed");
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002348 brelse_array(real_blocks + i,
2349 get_desc_trans_len(desc) - i);
2350 brelse(c_bh);
2351 brelse(d_bh);
Pekka Enbergd739b422006-02-01 03:06:43 -08002352 kfree(log_blocks);
2353 kfree(real_blocks);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002354 return -1;
2355 }
2356 brelse(real_blocks[i]);
2357 }
2358 cur_dblock =
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04002359 SB_ONDISK_JOURNAL_1st_BLOCK(sb) +
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002360 ((trans_offset + get_desc_trans_len(desc) +
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04002361 2) % SB_ONDISK_JOURNAL_SIZE(sb));
2362 reiserfs_debug(sb, REISERFS_DEBUG_CODE,
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002363 "journal-1095: setting journal " "start to offset %ld",
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04002364 cur_dblock - SB_ONDISK_JOURNAL_1st_BLOCK(sb));
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002365
2366 /* init starting values for the first transaction, in case this is the last transaction to be replayed. */
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04002367 journal->j_start = cur_dblock - SB_ONDISK_JOURNAL_1st_BLOCK(sb);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002368 journal->j_last_flush_trans_id = trans_id;
2369 journal->j_trans_id = trans_id + 1;
Alexander Zarochentseva44c94a2006-03-25 03:06:59 -08002370 /* check for trans_id overflow */
2371 if (journal->j_trans_id == 0)
2372 journal->j_trans_id = 10;
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002373 brelse(c_bh);
2374 brelse(d_bh);
Pekka Enbergd739b422006-02-01 03:06:43 -08002375 kfree(log_blocks);
2376 kfree(real_blocks);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002377 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002378}
2379
2380/* This function reads blocks starting from block and to max_block of bufsize
2381 size (but no more than BUFNR blocks at a time). This proved to improve
2382 mounting speed on self-rebuilding raid5 arrays at least.
2383 Right now it is only used from journal code. But later we might use it
2384 from other places.
2385 Note: Do not use journal_getblk/sb_getblk functions here! */
Jeff Mahoney3ee16672007-10-18 23:39:25 -07002386static struct buffer_head *reiserfs_breada(struct block_device *dev,
2387 b_blocknr_t block, int bufsize,
2388 b_blocknr_t max_block)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002389{
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002390 struct buffer_head *bhlist[BUFNR];
Linus Torvalds1da177e2005-04-16 15:20:36 -07002391 unsigned int blocks = BUFNR;
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002392 struct buffer_head *bh;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002393 int i, j;
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002394
2395 bh = __getblk(dev, block, bufsize);
2396 if (buffer_uptodate(bh))
2397 return (bh);
2398
Linus Torvalds1da177e2005-04-16 15:20:36 -07002399 if (block + BUFNR > max_block) {
2400 blocks = max_block - block;
2401 }
2402 bhlist[0] = bh;
2403 j = 1;
2404 for (i = 1; i < blocks; i++) {
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002405 bh = __getblk(dev, block + i, bufsize);
2406 if (buffer_uptodate(bh)) {
2407 brelse(bh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002408 break;
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002409 } else
2410 bhlist[j++] = bh;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002411 }
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002412 ll_rw_block(READ, j, bhlist);
2413 for (i = 1; i < j; i++)
2414 brelse(bhlist[i]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002415 bh = bhlist[0];
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002416 wait_on_buffer(bh);
2417 if (buffer_uptodate(bh))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002418 return bh;
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002419 brelse(bh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002420 return NULL;
2421}
2422
2423/*
2424** read and replay the log
2425** on a clean unmount, the journal header's next unflushed pointer will be to an invalid
2426** transaction. This tests that before finding all the transactions in the log, which makes normal mount times fast.
2427**
2428** After a crash, this starts with the next unflushed transaction, and replays until it finds one too old, or invalid.
2429**
2430** On exit, it sets things up so the first transaction will work correctly.
2431*/
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04002432static int journal_read(struct super_block *sb)
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002433{
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04002434 struct reiserfs_journal *journal = SB_JOURNAL(sb);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002435 struct reiserfs_journal_desc *desc;
Jeff Mahoney600ed412009-03-30 14:02:17 -04002436 unsigned int oldest_trans_id = 0;
2437 unsigned int oldest_invalid_trans_id = 0;
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002438 time_t start;
2439 unsigned long oldest_start = 0;
2440 unsigned long cur_dblock = 0;
2441 unsigned long newest_mount_id = 9;
2442 struct buffer_head *d_bh;
2443 struct reiserfs_journal_header *jh;
2444 int valid_journal_header = 0;
2445 int replay_count = 0;
2446 int continue_replay = 1;
2447 int ret;
2448 char b[BDEVNAME_SIZE];
Linus Torvalds1da177e2005-04-16 15:20:36 -07002449
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04002450 cur_dblock = SB_ONDISK_JOURNAL_1st_BLOCK(sb);
2451 reiserfs_info(sb, "checking transaction log (%s)\n",
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002452 bdevname(journal->j_dev_bd, b));
2453 start = get_seconds();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002454
Jeff Mahoney0222e652009-03-30 14:02:44 -04002455 /* step 1, read in the journal header block. Check the transaction it says
2456 ** is the first unflushed, and if that transaction is not valid,
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002457 ** replay is done
2458 */
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04002459 journal->j_header_bh = journal_bread(sb,
2460 SB_ONDISK_JOURNAL_1st_BLOCK(sb)
2461 + SB_ONDISK_JOURNAL_SIZE(sb));
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002462 if (!journal->j_header_bh) {
2463 return 1;
2464 }
2465 jh = (struct reiserfs_journal_header *)(journal->j_header_bh->b_data);
Vladimir V. Savelievc499ec22006-03-02 02:54:39 -08002466 if (le32_to_cpu(jh->j_first_unflushed_offset) <
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04002467 SB_ONDISK_JOURNAL_SIZE(sb)
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002468 && le32_to_cpu(jh->j_last_flush_trans_id) > 0) {
2469 oldest_start =
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04002470 SB_ONDISK_JOURNAL_1st_BLOCK(sb) +
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002471 le32_to_cpu(jh->j_first_unflushed_offset);
2472 oldest_trans_id = le32_to_cpu(jh->j_last_flush_trans_id) + 1;
2473 newest_mount_id = le32_to_cpu(jh->j_mount_id);
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04002474 reiserfs_debug(sb, REISERFS_DEBUG_CODE,
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002475 "journal-1153: found in "
2476 "header: first_unflushed_offset %d, last_flushed_trans_id "
2477 "%lu", le32_to_cpu(jh->j_first_unflushed_offset),
2478 le32_to_cpu(jh->j_last_flush_trans_id));
2479 valid_journal_header = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002480
Jeff Mahoney0222e652009-03-30 14:02:44 -04002481 /* now, we try to read the first unflushed offset. If it is not valid,
2482 ** there is nothing more we can do, and it makes no sense to read
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002483 ** through the whole log.
2484 */
2485 d_bh =
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04002486 journal_bread(sb,
2487 SB_ONDISK_JOURNAL_1st_BLOCK(sb) +
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002488 le32_to_cpu(jh->j_first_unflushed_offset));
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04002489 ret = journal_transaction_is_valid(sb, d_bh, NULL, NULL);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002490 if (!ret) {
2491 continue_replay = 0;
2492 }
2493 brelse(d_bh);
2494 goto start_log_replay;
2495 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002496
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04002497 if (continue_replay && bdev_read_only(sb->s_bdev)) {
2498 reiserfs_warning(sb, "clm-2076",
Jeff Mahoney45b03d52009-03-30 14:02:21 -04002499 "device is readonly, unable to replay log");
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002500 return -1;
2501 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002502
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002503 /* ok, there are transactions that need to be replayed. start with the first log block, find
2504 ** all the valid transactions, and pick out the oldest.
2505 */
2506 while (continue_replay
2507 && cur_dblock <
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04002508 (SB_ONDISK_JOURNAL_1st_BLOCK(sb) +
2509 SB_ONDISK_JOURNAL_SIZE(sb))) {
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002510 /* Note that it is required for blocksize of primary fs device and journal
2511 device to be the same */
2512 d_bh =
2513 reiserfs_breada(journal->j_dev_bd, cur_dblock,
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04002514 sb->s_blocksize,
2515 SB_ONDISK_JOURNAL_1st_BLOCK(sb) +
2516 SB_ONDISK_JOURNAL_SIZE(sb));
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002517 ret =
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04002518 journal_transaction_is_valid(sb, d_bh,
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002519 &oldest_invalid_trans_id,
2520 &newest_mount_id);
2521 if (ret == 1) {
2522 desc = (struct reiserfs_journal_desc *)d_bh->b_data;
2523 if (oldest_start == 0) { /* init all oldest_ values */
2524 oldest_trans_id = get_desc_trans_id(desc);
2525 oldest_start = d_bh->b_blocknr;
2526 newest_mount_id = get_desc_mount_id(desc);
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04002527 reiserfs_debug(sb, REISERFS_DEBUG_CODE,
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002528 "journal-1179: Setting "
2529 "oldest_start to offset %llu, trans_id %lu",
2530 oldest_start -
2531 SB_ONDISK_JOURNAL_1st_BLOCK
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04002532 (sb), oldest_trans_id);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002533 } else if (oldest_trans_id > get_desc_trans_id(desc)) {
2534 /* one we just read was older */
2535 oldest_trans_id = get_desc_trans_id(desc);
2536 oldest_start = d_bh->b_blocknr;
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04002537 reiserfs_debug(sb, REISERFS_DEBUG_CODE,
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002538 "journal-1180: Resetting "
2539 "oldest_start to offset %lu, trans_id %lu",
2540 oldest_start -
2541 SB_ONDISK_JOURNAL_1st_BLOCK
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04002542 (sb), oldest_trans_id);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002543 }
2544 if (newest_mount_id < get_desc_mount_id(desc)) {
2545 newest_mount_id = get_desc_mount_id(desc);
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04002546 reiserfs_debug(sb, REISERFS_DEBUG_CODE,
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002547 "journal-1299: Setting "
2548 "newest_mount_id to %d",
2549 get_desc_mount_id(desc));
2550 }
2551 cur_dblock += get_desc_trans_len(desc) + 2;
2552 } else {
2553 cur_dblock++;
2554 }
2555 brelse(d_bh);
2556 }
2557
2558 start_log_replay:
2559 cur_dblock = oldest_start;
2560 if (oldest_trans_id) {
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04002561 reiserfs_debug(sb, REISERFS_DEBUG_CODE,
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002562 "journal-1206: Starting replay "
2563 "from offset %llu, trans_id %lu",
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04002564 cur_dblock - SB_ONDISK_JOURNAL_1st_BLOCK(sb),
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002565 oldest_trans_id);
2566
2567 }
2568 replay_count = 0;
2569 while (continue_replay && oldest_trans_id > 0) {
2570 ret =
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04002571 journal_read_transaction(sb, cur_dblock, oldest_start,
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002572 oldest_trans_id, newest_mount_id);
2573 if (ret < 0) {
2574 return ret;
2575 } else if (ret != 0) {
2576 break;
2577 }
2578 cur_dblock =
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04002579 SB_ONDISK_JOURNAL_1st_BLOCK(sb) + journal->j_start;
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002580 replay_count++;
2581 if (cur_dblock == oldest_start)
2582 break;
2583 }
2584
2585 if (oldest_trans_id == 0) {
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04002586 reiserfs_debug(sb, REISERFS_DEBUG_CODE,
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002587 "journal-1225: No valid " "transactions found");
2588 }
2589 /* j_start does not get set correctly if we don't replay any transactions.
2590 ** if we had a valid journal_header, set j_start to the first unflushed transaction value,
2591 ** copy the trans_id from the header
2592 */
2593 if (valid_journal_header && replay_count == 0) {
2594 journal->j_start = le32_to_cpu(jh->j_first_unflushed_offset);
2595 journal->j_trans_id =
2596 le32_to_cpu(jh->j_last_flush_trans_id) + 1;
Alexander Zarochentseva44c94a2006-03-25 03:06:59 -08002597 /* check for trans_id overflow */
2598 if (journal->j_trans_id == 0)
2599 journal->j_trans_id = 10;
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002600 journal->j_last_flush_trans_id =
2601 le32_to_cpu(jh->j_last_flush_trans_id);
2602 journal->j_mount_id = le32_to_cpu(jh->j_mount_id) + 1;
2603 } else {
2604 journal->j_mount_id = newest_mount_id + 1;
2605 }
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04002606 reiserfs_debug(sb, REISERFS_DEBUG_CODE, "journal-1299: Setting "
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002607 "newest_mount_id to %lu", journal->j_mount_id);
2608 journal->j_first_unflushed_offset = journal->j_start;
2609 if (replay_count > 0) {
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04002610 reiserfs_info(sb,
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002611 "replayed %d transactions in %lu seconds\n",
2612 replay_count, get_seconds() - start);
2613 }
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04002614 if (!bdev_read_only(sb->s_bdev) &&
2615 _update_journal_header_block(sb, journal->j_start,
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002616 journal->j_last_flush_trans_id)) {
2617 /* replay failed, caller must call free_journal_ram and abort
2618 ** the mount
2619 */
2620 return -1;
2621 }
2622 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002623}
2624
2625static struct reiserfs_journal_list *alloc_journal_list(struct super_block *s)
2626{
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002627 struct reiserfs_journal_list *jl;
Pekka Enberg8c777cc2006-02-01 03:06:43 -08002628 jl = kzalloc(sizeof(struct reiserfs_journal_list),
2629 GFP_NOFS | __GFP_NOFAIL);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002630 INIT_LIST_HEAD(&jl->j_list);
2631 INIT_LIST_HEAD(&jl->j_working_list);
2632 INIT_LIST_HEAD(&jl->j_tail_bh_list);
2633 INIT_LIST_HEAD(&jl->j_bh_list);
Jeff Mahoney90415de2008-07-25 01:46:40 -07002634 mutex_init(&jl->j_commit_mutex);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002635 SB_JOURNAL(s)->j_num_lists++;
2636 get_journal_list(jl);
2637 return jl;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002638}
2639
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04002640static void journal_list_init(struct super_block *sb)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002641{
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04002642 SB_JOURNAL(sb)->j_current_jl = alloc_journal_list(sb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002643}
2644
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002645static int release_journal_dev(struct super_block *super,
2646 struct reiserfs_journal *journal)
2647{
2648 int result;
2649
2650 result = 0;
2651
Christoph Hellwig86098fa2008-04-30 00:54:46 -07002652 if (journal->j_dev_bd != NULL) {
2653 if (journal->j_dev_bd->bd_dev != super->s_dev)
2654 bd_release(journal->j_dev_bd);
Al Viroe5eb8ca2007-10-08 13:24:05 -04002655 result = blkdev_put(journal->j_dev_bd, journal->j_dev_mode);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002656 journal->j_dev_bd = NULL;
2657 }
2658
2659 if (result != 0) {
Jeff Mahoney45b03d52009-03-30 14:02:21 -04002660 reiserfs_warning(super, "sh-457",
2661 "Cannot release journal device: %i", result);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002662 }
2663 return result;
2664}
2665
2666static int journal_init_dev(struct super_block *super,
2667 struct reiserfs_journal *journal,
2668 const char *jdev_name)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002669{
2670 int result;
2671 dev_t jdev;
Al Viroaeb5d722008-09-02 15:28:45 -04002672 fmode_t blkdev_mode = FMODE_READ | FMODE_WRITE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002673 char b[BDEVNAME_SIZE];
2674
2675 result = 0;
2676
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002677 journal->j_dev_bd = NULL;
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002678 jdev = SB_ONDISK_JOURNAL_DEVICE(super) ?
2679 new_decode_dev(SB_ONDISK_JOURNAL_DEVICE(super)) : super->s_dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002680
2681 if (bdev_read_only(super->s_bdev))
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002682 blkdev_mode = FMODE_READ;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002683
2684 /* there is no "jdev" option and journal is on separate device */
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002685 if ((!jdev_name || !jdev_name[0])) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002686 journal->j_dev_bd = open_by_devnum(jdev, blkdev_mode);
Al Viroe5eb8ca2007-10-08 13:24:05 -04002687 journal->j_dev_mode = blkdev_mode;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002688 if (IS_ERR(journal->j_dev_bd)) {
2689 result = PTR_ERR(journal->j_dev_bd);
2690 journal->j_dev_bd = NULL;
Jeff Mahoney45b03d52009-03-30 14:02:21 -04002691 reiserfs_warning(super, "sh-458",
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002692 "cannot init journal device '%s': %i",
2693 __bdevname(jdev, b), result);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002694 return result;
Christoph Hellwig86098fa2008-04-30 00:54:46 -07002695 } else if (jdev != super->s_dev) {
2696 result = bd_claim(journal->j_dev_bd, journal);
2697 if (result) {
Al Viro9a1c3542008-02-22 20:40:24 -05002698 blkdev_put(journal->j_dev_bd, blkdev_mode);
Christoph Hellwig86098fa2008-04-30 00:54:46 -07002699 return result;
2700 }
2701
Linus Torvalds1da177e2005-04-16 15:20:36 -07002702 set_blocksize(journal->j_dev_bd, super->s_blocksize);
Christoph Hellwig86098fa2008-04-30 00:54:46 -07002703 }
2704
Linus Torvalds1da177e2005-04-16 15:20:36 -07002705 return 0;
2706 }
2707
Al Viroe5eb8ca2007-10-08 13:24:05 -04002708 journal->j_dev_mode = blkdev_mode;
Al Viro30c40d22008-02-22 19:50:45 -05002709 journal->j_dev_bd = open_bdev_exclusive(jdev_name,
Al Viroe5eb8ca2007-10-08 13:24:05 -04002710 blkdev_mode, journal);
Christoph Hellwig86098fa2008-04-30 00:54:46 -07002711 if (IS_ERR(journal->j_dev_bd)) {
2712 result = PTR_ERR(journal->j_dev_bd);
2713 journal->j_dev_bd = NULL;
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002714 reiserfs_warning(super,
2715 "journal_init_dev: Cannot open '%s': %i",
2716 jdev_name, result);
Christoph Hellwig86098fa2008-04-30 00:54:46 -07002717 return result;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002718 }
Christoph Hellwig86098fa2008-04-30 00:54:46 -07002719
2720 set_blocksize(journal->j_dev_bd, super->s_blocksize);
2721 reiserfs_info(super,
2722 "journal_init_dev: journal device: %s\n",
2723 bdevname(journal->j_dev_bd, b));
2724 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002725}
2726
Edward Shishkincf3d0b82007-10-16 23:30:30 -07002727/**
2728 * When creating/tuning a file system user can assign some
2729 * journal params within boundaries which depend on the ratio
2730 * blocksize/standard_blocksize.
2731 *
2732 * For blocks >= standard_blocksize transaction size should
2733 * be not less then JOURNAL_TRANS_MIN_DEFAULT, and not more
2734 * then JOURNAL_TRANS_MAX_DEFAULT.
2735 *
2736 * For blocks < standard_blocksize these boundaries should be
2737 * decreased proportionally.
2738 */
2739#define REISERFS_STANDARD_BLKSIZE (4096)
2740
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04002741static int check_advise_trans_params(struct super_block *sb,
Edward Shishkincf3d0b82007-10-16 23:30:30 -07002742 struct reiserfs_journal *journal)
2743{
2744 if (journal->j_trans_max) {
2745 /* Non-default journal params.
2746 Do sanity check for them. */
2747 int ratio = 1;
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04002748 if (sb->s_blocksize < REISERFS_STANDARD_BLKSIZE)
2749 ratio = REISERFS_STANDARD_BLKSIZE / sb->s_blocksize;
Edward Shishkincf3d0b82007-10-16 23:30:30 -07002750
2751 if (journal->j_trans_max > JOURNAL_TRANS_MAX_DEFAULT / ratio ||
2752 journal->j_trans_max < JOURNAL_TRANS_MIN_DEFAULT / ratio ||
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04002753 SB_ONDISK_JOURNAL_SIZE(sb) / journal->j_trans_max <
Edward Shishkincf3d0b82007-10-16 23:30:30 -07002754 JOURNAL_MIN_RATIO) {
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04002755 reiserfs_warning(sb, "sh-462",
Jeff Mahoney45b03d52009-03-30 14:02:21 -04002756 "bad transaction max size (%u). "
2757 "FSCK?", journal->j_trans_max);
Edward Shishkincf3d0b82007-10-16 23:30:30 -07002758 return 1;
2759 }
2760 if (journal->j_max_batch != (journal->j_trans_max) *
2761 JOURNAL_MAX_BATCH_DEFAULT/JOURNAL_TRANS_MAX_DEFAULT) {
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04002762 reiserfs_warning(sb, "sh-463",
Jeff Mahoney45b03d52009-03-30 14:02:21 -04002763 "bad transaction max batch (%u). "
2764 "FSCK?", journal->j_max_batch);
Edward Shishkincf3d0b82007-10-16 23:30:30 -07002765 return 1;
2766 }
2767 } else {
2768 /* Default journal params.
2769 The file system was created by old version
2770 of mkreiserfs, so some fields contain zeros,
2771 and we need to advise proper values for them */
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04002772 if (sb->s_blocksize != REISERFS_STANDARD_BLKSIZE) {
2773 reiserfs_warning(sb, "sh-464", "bad blocksize (%u)",
2774 sb->s_blocksize);
Jeff Mahoney45b03d52009-03-30 14:02:21 -04002775 return 1;
2776 }
Edward Shishkincf3d0b82007-10-16 23:30:30 -07002777 journal->j_trans_max = JOURNAL_TRANS_MAX_DEFAULT;
2778 journal->j_max_batch = JOURNAL_MAX_BATCH_DEFAULT;
2779 journal->j_max_commit_age = JOURNAL_MAX_COMMIT_AGE;
2780 }
2781 return 0;
2782}
2783
Linus Torvalds1da177e2005-04-16 15:20:36 -07002784/*
2785** must be called once on fs mount. calls journal_read for you
2786*/
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04002787int journal_init(struct super_block *sb, const char *j_dev_name,
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002788 int old_format, unsigned int commit_max_age)
2789{
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04002790 int num_cnodes = SB_ONDISK_JOURNAL_SIZE(sb) * 2;
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002791 struct buffer_head *bhjh;
2792 struct reiserfs_super_block *rs;
2793 struct reiserfs_journal_header *jh;
2794 struct reiserfs_journal *journal;
2795 struct reiserfs_journal_list *jl;
2796 char b[BDEVNAME_SIZE];
Linus Torvalds1da177e2005-04-16 15:20:36 -07002797
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04002798 journal = SB_JOURNAL(sb) = vmalloc(sizeof(struct reiserfs_journal));
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002799 if (!journal) {
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04002800 reiserfs_warning(sb, "journal-1256",
Jeff Mahoney45b03d52009-03-30 14:02:21 -04002801 "unable to get memory for journal structure");
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002802 return 1;
2803 }
2804 memset(journal, 0, sizeof(struct reiserfs_journal));
2805 INIT_LIST_HEAD(&journal->j_bitmap_nodes);
2806 INIT_LIST_HEAD(&journal->j_prealloc_list);
2807 INIT_LIST_HEAD(&journal->j_working_list);
2808 INIT_LIST_HEAD(&journal->j_journal_list);
2809 journal->j_persistent_trans = 0;
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04002810 if (reiserfs_allocate_list_bitmaps(sb,
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002811 journal->j_list_bitmap,
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04002812 reiserfs_bmap_count(sb)))
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002813 goto free_and_return;
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04002814 allocate_bitmap_nodes(sb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002815
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002816 /* reserved for journal area support */
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04002817 SB_JOURNAL_1st_RESERVED_BLOCK(sb) = (old_format ?
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002818 REISERFS_OLD_DISK_OFFSET_IN_BYTES
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04002819 / sb->s_blocksize +
2820 reiserfs_bmap_count(sb) +
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002821 1 :
2822 REISERFS_DISK_OFFSET_IN_BYTES /
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04002823 sb->s_blocksize + 2);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002824
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002825 /* Sanity check to see is the standard journal fitting withing first bitmap
2826 (actual for small blocksizes) */
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04002827 if (!SB_ONDISK_JOURNAL_DEVICE(sb) &&
2828 (SB_JOURNAL_1st_RESERVED_BLOCK(sb) +
2829 SB_ONDISK_JOURNAL_SIZE(sb) > sb->s_blocksize * 8)) {
2830 reiserfs_warning(sb, "journal-1393",
Jeff Mahoney45b03d52009-03-30 14:02:21 -04002831 "journal does not fit for area addressed "
2832 "by first of bitmap blocks. It starts at "
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002833 "%u and its size is %u. Block size %ld",
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04002834 SB_JOURNAL_1st_RESERVED_BLOCK(sb),
2835 SB_ONDISK_JOURNAL_SIZE(sb),
2836 sb->s_blocksize);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002837 goto free_and_return;
2838 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002839
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04002840 if (journal_init_dev(sb, journal, j_dev_name) != 0) {
2841 reiserfs_warning(sb, "sh-462",
Jeff Mahoney45b03d52009-03-30 14:02:21 -04002842 "unable to initialize jornal device");
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002843 goto free_and_return;
2844 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002845
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04002846 rs = SB_DISK_SUPER_BLOCK(sb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002847
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002848 /* read journal header */
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04002849 bhjh = journal_bread(sb,
2850 SB_ONDISK_JOURNAL_1st_BLOCK(sb) +
2851 SB_ONDISK_JOURNAL_SIZE(sb));
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002852 if (!bhjh) {
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04002853 reiserfs_warning(sb, "sh-459",
Jeff Mahoney45b03d52009-03-30 14:02:21 -04002854 "unable to read journal header");
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002855 goto free_and_return;
2856 }
2857 jh = (struct reiserfs_journal_header *)(bhjh->b_data);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002858
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002859 /* make sure that journal matches to the super block */
2860 if (is_reiserfs_jr(rs)
2861 && (le32_to_cpu(jh->jh_journal.jp_journal_magic) !=
2862 sb_jp_journal_magic(rs))) {
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04002863 reiserfs_warning(sb, "sh-460",
Jeff Mahoney45b03d52009-03-30 14:02:21 -04002864 "journal header magic %x (device %s) does "
2865 "not match to magic found in super block %x",
2866 jh->jh_journal.jp_journal_magic,
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002867 bdevname(journal->j_dev_bd, b),
2868 sb_jp_journal_magic(rs));
2869 brelse(bhjh);
2870 goto free_and_return;
2871 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002872
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002873 journal->j_trans_max = le32_to_cpu(jh->jh_journal.jp_journal_trans_max);
2874 journal->j_max_batch = le32_to_cpu(jh->jh_journal.jp_journal_max_batch);
2875 journal->j_max_commit_age =
2876 le32_to_cpu(jh->jh_journal.jp_journal_max_commit_age);
2877 journal->j_max_trans_age = JOURNAL_MAX_TRANS_AGE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002878
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04002879 if (check_advise_trans_params(sb, journal) != 0)
Edward Shishkincf3d0b82007-10-16 23:30:30 -07002880 goto free_and_return;
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002881 journal->j_default_max_commit_age = journal->j_max_commit_age;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002882
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002883 if (commit_max_age != 0) {
2884 journal->j_max_commit_age = commit_max_age;
2885 journal->j_max_trans_age = commit_max_age;
2886 }
2887
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04002888 reiserfs_info(sb, "journal params: device %s, size %u, "
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002889 "journal first block %u, max trans len %u, max batch %u, "
2890 "max commit age %u, max trans age %u\n",
2891 bdevname(journal->j_dev_bd, b),
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04002892 SB_ONDISK_JOURNAL_SIZE(sb),
2893 SB_ONDISK_JOURNAL_1st_BLOCK(sb),
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002894 journal->j_trans_max,
2895 journal->j_max_batch,
2896 journal->j_max_commit_age, journal->j_max_trans_age);
2897
2898 brelse(bhjh);
2899
2900 journal->j_list_bitmap_index = 0;
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04002901 journal_list_init(sb);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002902
2903 memset(journal->j_list_hash_table, 0,
2904 JOURNAL_HASH_SIZE * sizeof(struct reiserfs_journal_cnode *));
2905
2906 INIT_LIST_HEAD(&journal->j_dirty_buffers);
2907 spin_lock_init(&journal->j_dirty_buffers_lock);
2908
2909 journal->j_start = 0;
2910 journal->j_len = 0;
2911 journal->j_len_alloc = 0;
2912 atomic_set(&(journal->j_wcount), 0);
2913 atomic_set(&(journal->j_async_throttle), 0);
2914 journal->j_bcount = 0;
2915 journal->j_trans_start_time = 0;
2916 journal->j_last = NULL;
2917 journal->j_first = NULL;
2918 init_waitqueue_head(&(journal->j_join_wait));
Jeff Mahoneyf68215c2008-07-25 01:46:38 -07002919 mutex_init(&journal->j_mutex);
Jeff Mahoneyafe70252008-07-25 01:46:39 -07002920 mutex_init(&journal->j_flush_mutex);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002921
2922 journal->j_trans_id = 10;
2923 journal->j_mount_id = 10;
2924 journal->j_state = 0;
2925 atomic_set(&(journal->j_jlock), 0);
2926 journal->j_cnode_free_list = allocate_cnodes(num_cnodes);
2927 journal->j_cnode_free_orig = journal->j_cnode_free_list;
2928 journal->j_cnode_free = journal->j_cnode_free_list ? num_cnodes : 0;
2929 journal->j_cnode_used = 0;
2930 journal->j_must_wait = 0;
2931
Jeff Mahoney576f6d72005-11-29 19:34:39 -08002932 if (journal->j_cnode_free == 0) {
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04002933 reiserfs_warning(sb, "journal-2004", "Journal cnode memory "
Jeff Mahoney576f6d72005-11-29 19:34:39 -08002934 "allocation failed (%ld bytes). Journal is "
2935 "too large for available memory. Usually "
2936 "this is due to a journal that is too large.",
2937 sizeof (struct reiserfs_journal_cnode) * num_cnodes);
2938 goto free_and_return;
2939 }
2940
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04002941 init_journal_hash(sb);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002942 jl = journal->j_current_jl;
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04002943 jl->j_list_bitmap = get_list_bitmap(sb, jl);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002944 if (!jl->j_list_bitmap) {
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04002945 reiserfs_warning(sb, "journal-2005",
Jeff Mahoney45b03d52009-03-30 14:02:21 -04002946 "get_list_bitmap failed for journal list 0");
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002947 goto free_and_return;
2948 }
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04002949 if (journal_read(sb) < 0) {
2950 reiserfs_warning(sb, "reiserfs-2006",
Jeff Mahoney45b03d52009-03-30 14:02:21 -04002951 "Replay Failure, unable to mount");
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002952 goto free_and_return;
2953 }
2954
2955 reiserfs_mounted_fs_count++;
2956 if (reiserfs_mounted_fs_count <= 1)
2957 commit_wq = create_workqueue("reiserfs");
2958
David Howellsc4028952006-11-22 14:57:56 +00002959 INIT_DELAYED_WORK(&journal->j_work, flush_async_commits);
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04002960 journal->j_work_sb = sb;
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002961 return 0;
2962 free_and_return:
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04002963 free_journal_ram(sb);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002964 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002965}
2966
2967/*
2968** test for a polite end of the current transaction. Used by file_write, and should
2969** be used by delete to make sure they don't write more than can fit inside a single
2970** transaction
2971*/
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002972int journal_transaction_should_end(struct reiserfs_transaction_handle *th,
2973 int new_alloc)
2974{
2975 struct reiserfs_journal *journal = SB_JOURNAL(th->t_super);
2976 time_t now = get_seconds();
2977 /* cannot restart while nested */
2978 BUG_ON(!th->t_trans_id);
2979 if (th->t_refcount > 1)
2980 return 0;
2981 if (journal->j_must_wait > 0 ||
2982 (journal->j_len_alloc + new_alloc) >= journal->j_max_batch ||
2983 atomic_read(&(journal->j_jlock)) ||
2984 (now - journal->j_trans_start_time) > journal->j_max_trans_age ||
2985 journal->j_cnode_free < (journal->j_trans_max * 3)) {
2986 return 1;
2987 }
Chris Mason6ae1ea42006-02-01 03:06:50 -08002988 /* protected by the BKL here */
2989 journal->j_len_alloc += new_alloc;
2990 th->t_blocks_allocated += new_alloc ;
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002991 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002992}
2993
Jeff Mahoney0222e652009-03-30 14:02:44 -04002994/* this must be called inside a transaction, and requires the
Linus Torvalds1da177e2005-04-16 15:20:36 -07002995** kernel_lock to be held
2996*/
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002997void reiserfs_block_writes(struct reiserfs_transaction_handle *th)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002998{
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002999 struct reiserfs_journal *journal = SB_JOURNAL(th->t_super);
3000 BUG_ON(!th->t_trans_id);
3001 journal->j_must_wait = 1;
3002 set_bit(J_WRITERS_BLOCKED, &journal->j_state);
3003 return;
3004}
3005
3006/* this must be called without a transaction started, and does not
3007** require BKL
3008*/
3009void reiserfs_allow_writes(struct super_block *s)
3010{
3011 struct reiserfs_journal *journal = SB_JOURNAL(s);
3012 clear_bit(J_WRITERS_BLOCKED, &journal->j_state);
3013 wake_up(&journal->j_join_wait);
3014}
3015
3016/* this must be called without a transaction started, and does not
3017** require BKL
3018*/
3019void reiserfs_wait_on_write_block(struct super_block *s)
3020{
3021 struct reiserfs_journal *journal = SB_JOURNAL(s);
3022 wait_event(journal->j_join_wait,
3023 !test_bit(J_WRITERS_BLOCKED, &journal->j_state));
3024}
3025
3026static void queue_log_writer(struct super_block *s)
3027{
3028 wait_queue_t wait;
3029 struct reiserfs_journal *journal = SB_JOURNAL(s);
3030 set_bit(J_WRITERS_QUEUED, &journal->j_state);
3031
3032 /*
3033 * we don't want to use wait_event here because
3034 * we only want to wait once.
3035 */
3036 init_waitqueue_entry(&wait, current);
3037 add_wait_queue(&journal->j_join_wait, &wait);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003038 set_current_state(TASK_UNINTERRUPTIBLE);
Frederic Weisbecker8ebc4232009-04-07 04:19:49 +02003039 if (test_bit(J_WRITERS_QUEUED, &journal->j_state)) {
3040 reiserfs_write_unlock(s);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003041 schedule();
Frederic Weisbecker8ebc4232009-04-07 04:19:49 +02003042 reiserfs_write_lock(s);
3043 }
Milind Arun Choudhary5ab2f7e2007-05-08 00:30:51 -07003044 __set_current_state(TASK_RUNNING);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003045 remove_wait_queue(&journal->j_join_wait, &wait);
3046}
3047
3048static void wake_queued_writers(struct super_block *s)
3049{
3050 struct reiserfs_journal *journal = SB_JOURNAL(s);
3051 if (test_and_clear_bit(J_WRITERS_QUEUED, &journal->j_state))
3052 wake_up(&journal->j_join_wait);
3053}
3054
Jeff Mahoney600ed412009-03-30 14:02:17 -04003055static void let_transaction_grow(struct super_block *sb, unsigned int trans_id)
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003056{
3057 struct reiserfs_journal *journal = SB_JOURNAL(sb);
3058 unsigned long bcount = journal->j_bcount;
3059 while (1) {
Frederic Weisbecker8ebc4232009-04-07 04:19:49 +02003060 reiserfs_write_unlock(sb);
Nishanth Aravamudan041e0e32005-09-10 00:27:23 -07003061 schedule_timeout_uninterruptible(1);
Frederic Weisbecker8ebc4232009-04-07 04:19:49 +02003062 reiserfs_write_lock(sb);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003063 journal->j_current_jl->j_state |= LIST_COMMIT_PENDING;
3064 while ((atomic_read(&journal->j_wcount) > 0 ||
3065 atomic_read(&journal->j_jlock)) &&
3066 journal->j_trans_id == trans_id) {
3067 queue_log_writer(sb);
3068 }
3069 if (journal->j_trans_id != trans_id)
3070 break;
3071 if (bcount == journal->j_bcount)
3072 break;
3073 bcount = journal->j_bcount;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003074 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003075}
3076
3077/* join == true if you must join an existing transaction.
3078** join == false if you can deal with waiting for others to finish
3079**
3080** this will block until the transaction is joinable. send the number of blocks you
3081** expect to use in nblocks.
3082*/
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003083static int do_journal_begin_r(struct reiserfs_transaction_handle *th,
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04003084 struct super_block *sb, unsigned long nblocks,
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003085 int join)
3086{
3087 time_t now = get_seconds();
Jeff Mahoney600ed412009-03-30 14:02:17 -04003088 unsigned int old_trans_id;
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04003089 struct reiserfs_journal *journal = SB_JOURNAL(sb);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003090 struct reiserfs_transaction_handle myth;
3091 int sched_count = 0;
3092 int retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003093
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04003094 reiserfs_check_lock_depth(sb, "journal_begin");
Eric Sesterhenn14a61442006-10-03 23:36:38 +02003095 BUG_ON(nblocks > journal->j_trans_max);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003096
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04003097 PROC_INFO_INC(sb, journal.journal_being);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003098 /* set here for journal_join */
3099 th->t_refcount = 1;
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04003100 th->t_super = sb;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003101
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003102 relock:
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04003103 lock_journal(sb);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003104 if (join != JBEGIN_ABORT && reiserfs_is_journal_aborted(journal)) {
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04003105 unlock_journal(sb);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003106 retval = journal->j_errno;
3107 goto out_fail;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003108 }
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003109 journal->j_bcount++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003110
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003111 if (test_bit(J_WRITERS_BLOCKED, &journal->j_state)) {
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04003112 unlock_journal(sb);
Frederic Weisbecker8ebc4232009-04-07 04:19:49 +02003113 reiserfs_write_unlock(sb);
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04003114 reiserfs_wait_on_write_block(sb);
Frederic Weisbecker8ebc4232009-04-07 04:19:49 +02003115 reiserfs_write_lock(sb);
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04003116 PROC_INFO_INC(sb, journal.journal_relock_writers);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003117 goto relock;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003118 }
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003119 now = get_seconds();
Linus Torvalds1da177e2005-04-16 15:20:36 -07003120
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003121 /* if there is no room in the journal OR
Jeff Mahoney0222e652009-03-30 14:02:44 -04003122 ** 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 -07003123 ** we don't sleep if there aren't other writers
3124 */
3125
3126 if ((!join && journal->j_must_wait > 0) ||
3127 (!join
3128 && (journal->j_len_alloc + nblocks + 2) >= journal->j_max_batch)
3129 || (!join && atomic_read(&journal->j_wcount) > 0
3130 && journal->j_trans_start_time > 0
3131 && (now - journal->j_trans_start_time) >
3132 journal->j_max_trans_age) || (!join
3133 && atomic_read(&journal->j_jlock))
3134 || (!join && journal->j_cnode_free < (journal->j_trans_max * 3))) {
3135
3136 old_trans_id = journal->j_trans_id;
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04003137 unlock_journal(sb); /* allow others to finish this transaction */
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003138
3139 if (!join && (journal->j_len_alloc + nblocks + 2) >=
3140 journal->j_max_batch &&
3141 ((journal->j_len + nblocks + 2) * 100) <
3142 (journal->j_len_alloc * 75)) {
3143 if (atomic_read(&journal->j_wcount) > 10) {
3144 sched_count++;
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04003145 queue_log_writer(sb);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003146 goto relock;
3147 }
3148 }
3149 /* don't mess with joining the transaction if all we have to do is
3150 * wait for someone else to do a commit
3151 */
3152 if (atomic_read(&journal->j_jlock)) {
3153 while (journal->j_trans_id == old_trans_id &&
3154 atomic_read(&journal->j_jlock)) {
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04003155 queue_log_writer(sb);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003156 }
3157 goto relock;
3158 }
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04003159 retval = journal_join(&myth, sb, 1);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003160 if (retval)
3161 goto out_fail;
3162
3163 /* someone might have ended the transaction while we joined */
3164 if (old_trans_id != journal->j_trans_id) {
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04003165 retval = do_journal_end(&myth, sb, 1, 0);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003166 } else {
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04003167 retval = do_journal_end(&myth, sb, 1, COMMIT_NOW);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003168 }
3169
3170 if (retval)
3171 goto out_fail;
3172
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04003173 PROC_INFO_INC(sb, journal.journal_relock_wcount);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003174 goto relock;
3175 }
3176 /* we are the first writer, set trans_id */
3177 if (journal->j_trans_start_time == 0) {
3178 journal->j_trans_start_time = get_seconds();
3179 }
3180 atomic_inc(&(journal->j_wcount));
3181 journal->j_len_alloc += nblocks;
3182 th->t_blocks_logged = 0;
3183 th->t_blocks_allocated = nblocks;
3184 th->t_trans_id = journal->j_trans_id;
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04003185 unlock_journal(sb);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003186 INIT_LIST_HEAD(&th->t_list);
3187 get_fs_excl();
3188 return 0;
3189
3190 out_fail:
3191 memset(th, 0, sizeof(*th));
3192 /* Re-set th->t_super, so we can properly keep track of how many
3193 * persistent transactions there are. We need to do this so if this
3194 * call is part of a failed restart_transaction, we can free it later */
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04003195 th->t_super = sb;
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003196 return retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003197}
3198
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003199struct reiserfs_transaction_handle *reiserfs_persistent_transaction(struct
3200 super_block
3201 *s,
3202 int nblocks)
3203{
3204 int ret;
3205 struct reiserfs_transaction_handle *th;
3206
3207 /* if we're nesting into an existing transaction. It will be
3208 ** persistent on its own
3209 */
3210 if (reiserfs_transaction_running(s)) {
3211 th = current->journal_info;
3212 th->t_refcount++;
Eric Sesterhenn14a61442006-10-03 23:36:38 +02003213 BUG_ON(th->t_refcount < 2);
3214
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003215 return th;
3216 }
Pekka Enbergd739b422006-02-01 03:06:43 -08003217 th = kmalloc(sizeof(struct reiserfs_transaction_handle), GFP_NOFS);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003218 if (!th)
3219 return NULL;
3220 ret = journal_begin(th, s, nblocks);
3221 if (ret) {
Pekka Enbergd739b422006-02-01 03:06:43 -08003222 kfree(th);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003223 return NULL;
3224 }
3225
3226 SB_JOURNAL(s)->j_persistent_trans++;
3227 return th;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003228}
3229
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003230int reiserfs_end_persistent_transaction(struct reiserfs_transaction_handle *th)
3231{
3232 struct super_block *s = th->t_super;
3233 int ret = 0;
3234 if (th->t_trans_id)
3235 ret = journal_end(th, th->t_super, th->t_blocks_allocated);
3236 else
3237 ret = -EIO;
3238 if (th->t_refcount == 0) {
3239 SB_JOURNAL(s)->j_persistent_trans--;
Pekka Enbergd739b422006-02-01 03:06:43 -08003240 kfree(th);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003241 }
3242 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003243}
3244
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003245static int journal_join(struct reiserfs_transaction_handle *th,
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04003246 struct super_block *sb, unsigned long nblocks)
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003247{
3248 struct reiserfs_transaction_handle *cur_th = current->journal_info;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003249
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003250 /* this keeps do_journal_end from NULLing out the current->journal_info
3251 ** pointer
3252 */
3253 th->t_handle_save = cur_th;
Eric Sesterhenn14a61442006-10-03 23:36:38 +02003254 BUG_ON(cur_th && cur_th->t_refcount > 1);
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04003255 return do_journal_begin_r(th, sb, nblocks, JBEGIN_JOIN);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003256}
3257
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003258int journal_join_abort(struct reiserfs_transaction_handle *th,
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04003259 struct super_block *sb, unsigned long nblocks)
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003260{
3261 struct reiserfs_transaction_handle *cur_th = current->journal_info;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003262
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003263 /* this keeps do_journal_end from NULLing out the current->journal_info
3264 ** pointer
3265 */
3266 th->t_handle_save = cur_th;
Eric Sesterhenn14a61442006-10-03 23:36:38 +02003267 BUG_ON(cur_th && cur_th->t_refcount > 1);
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04003268 return do_journal_begin_r(th, sb, nblocks, JBEGIN_ABORT);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003269}
3270
3271int journal_begin(struct reiserfs_transaction_handle *th,
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04003272 struct super_block *sb, unsigned long nblocks)
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003273{
3274 struct reiserfs_transaction_handle *cur_th = current->journal_info;
3275 int ret;
3276
3277 th->t_handle_save = NULL;
3278 if (cur_th) {
3279 /* we are nesting into the current transaction */
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04003280 if (cur_th->t_super == sb) {
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003281 BUG_ON(!cur_th->t_refcount);
3282 cur_th->t_refcount++;
3283 memcpy(th, cur_th, sizeof(*th));
3284 if (th->t_refcount <= 1)
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04003285 reiserfs_warning(sb, "reiserfs-2005",
Jeff Mahoney45b03d52009-03-30 14:02:21 -04003286 "BAD: refcount <= 1, but "
3287 "journal_info != 0");
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003288 return 0;
3289 } else {
3290 /* we've ended up with a handle from a different filesystem.
3291 ** save it and restore on journal_end. This should never
3292 ** really happen...
3293 */
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04003294 reiserfs_warning(sb, "clm-2100",
Jeff Mahoney45b03d52009-03-30 14:02:21 -04003295 "nesting info a different FS");
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003296 th->t_handle_save = current->journal_info;
3297 current->journal_info = th;
3298 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003299 } else {
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003300 current->journal_info = th;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003301 }
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04003302 ret = do_journal_begin_r(th, sb, nblocks, JBEGIN_REG);
Eric Sesterhenn14a61442006-10-03 23:36:38 +02003303 BUG_ON(current->journal_info != th);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003304
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003305 /* I guess this boils down to being the reciprocal of clm-2100 above.
3306 * If do_journal_begin_r fails, we need to put it back, since journal_end
3307 * won't be called to do it. */
3308 if (ret)
3309 current->journal_info = th->t_handle_save;
3310 else
3311 BUG_ON(!th->t_refcount);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003312
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003313 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003314}
3315
3316/*
3317** puts bh into the current transaction. If it was already there, reorders removes the
3318** old pointers from the hash, and puts new ones in (to make sure replay happen in the right order).
3319**
3320** if it was dirty, cleans and files onto the clean list. I can't let it be dirty again until the
3321** transaction is committed.
Jeff Mahoney0222e652009-03-30 14:02:44 -04003322**
Linus Torvalds1da177e2005-04-16 15:20:36 -07003323** if j_len, is bigger than j_len_alloc, it pushes j_len_alloc to 10 + j_len.
3324*/
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003325int journal_mark_dirty(struct reiserfs_transaction_handle *th,
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04003326 struct super_block *sb, struct buffer_head *bh)
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003327{
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04003328 struct reiserfs_journal *journal = SB_JOURNAL(sb);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003329 struct reiserfs_journal_cnode *cn = NULL;
3330 int count_already_incd = 0;
3331 int prepared = 0;
3332 BUG_ON(!th->t_trans_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003333
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04003334 PROC_INFO_INC(sb, journal.mark_dirty);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003335 if (th->t_trans_id != journal->j_trans_id) {
Jeff Mahoneyc3a9c212009-03-30 14:02:25 -04003336 reiserfs_panic(th->t_super, "journal-1577",
3337 "handle trans id %ld != current trans id %ld",
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003338 th->t_trans_id, journal->j_trans_id);
3339 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003340
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04003341 sb->s_dirt = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003342
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003343 prepared = test_clear_buffer_journal_prepared(bh);
3344 clear_buffer_journal_restore_dirty(bh);
3345 /* already in this transaction, we are done */
3346 if (buffer_journaled(bh)) {
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04003347 PROC_INFO_INC(sb, journal.mark_dirty_already);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003348 return 0;
3349 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003350
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003351 /* this must be turned into a panic instead of a warning. We can't allow
3352 ** a dirty or journal_dirty or locked buffer to be logged, as some changes
3353 ** could get to disk too early. NOT GOOD.
3354 */
3355 if (!prepared || buffer_dirty(bh)) {
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04003356 reiserfs_warning(sb, "journal-1777",
Jeff Mahoney45b03d52009-03-30 14:02:21 -04003357 "buffer %llu bad state "
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003358 "%cPREPARED %cLOCKED %cDIRTY %cJDIRTY_WAIT",
3359 (unsigned long long)bh->b_blocknr,
3360 prepared ? ' ' : '!',
3361 buffer_locked(bh) ? ' ' : '!',
3362 buffer_dirty(bh) ? ' ' : '!',
3363 buffer_journal_dirty(bh) ? ' ' : '!');
3364 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003365
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003366 if (atomic_read(&(journal->j_wcount)) <= 0) {
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04003367 reiserfs_warning(sb, "journal-1409",
Jeff Mahoney45b03d52009-03-30 14:02:21 -04003368 "returning because j_wcount was %d",
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003369 atomic_read(&(journal->j_wcount)));
3370 return 1;
3371 }
Jeff Mahoney0222e652009-03-30 14:02:44 -04003372 /* this error means I've screwed up, and we've overflowed the transaction.
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003373 ** Nothing can be done here, except make the FS readonly or panic.
3374 */
3375 if (journal->j_len >= journal->j_trans_max) {
Jeff Mahoneyc3a9c212009-03-30 14:02:25 -04003376 reiserfs_panic(th->t_super, "journal-1413",
3377 "j_len (%lu) is too big",
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003378 journal->j_len);
3379 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003380
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003381 if (buffer_journal_dirty(bh)) {
3382 count_already_incd = 1;
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04003383 PROC_INFO_INC(sb, journal.mark_dirty_notjournal);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003384 clear_buffer_journal_dirty(bh);
3385 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003386
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003387 if (journal->j_len > journal->j_len_alloc) {
3388 journal->j_len_alloc = journal->j_len + JOURNAL_PER_BALANCE_CNT;
3389 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003390
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003391 set_buffer_journaled(bh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003392
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003393 /* now put this guy on the end */
3394 if (!cn) {
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04003395 cn = get_cnode(sb);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003396 if (!cn) {
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04003397 reiserfs_panic(sb, "journal-4", "get_cnode failed!");
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003398 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003399
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003400 if (th->t_blocks_logged == th->t_blocks_allocated) {
3401 th->t_blocks_allocated += JOURNAL_PER_BALANCE_CNT;
3402 journal->j_len_alloc += JOURNAL_PER_BALANCE_CNT;
3403 }
3404 th->t_blocks_logged++;
3405 journal->j_len++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003406
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003407 cn->bh = bh;
3408 cn->blocknr = bh->b_blocknr;
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04003409 cn->sb = sb;
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003410 cn->jlist = NULL;
3411 insert_journal_hash(journal->j_hash_table, cn);
3412 if (!count_already_incd) {
3413 get_bh(bh);
3414 }
3415 }
3416 cn->next = NULL;
3417 cn->prev = journal->j_last;
3418 cn->bh = bh;
3419 if (journal->j_last) {
3420 journal->j_last->next = cn;
3421 journal->j_last = cn;
3422 } else {
3423 journal->j_first = cn;
3424 journal->j_last = cn;
3425 }
3426 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003427}
3428
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003429int journal_end(struct reiserfs_transaction_handle *th,
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04003430 struct super_block *sb, unsigned long nblocks)
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003431{
3432 if (!current->journal_info && th->t_refcount > 1)
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04003433 reiserfs_warning(sb, "REISER-NESTING",
Jeff Mahoney45b03d52009-03-30 14:02:21 -04003434 "th NULL, refcount %d", th->t_refcount);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003435
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003436 if (!th->t_trans_id) {
3437 WARN_ON(1);
3438 return -EIO;
3439 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003440
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003441 th->t_refcount--;
3442 if (th->t_refcount > 0) {
3443 struct reiserfs_transaction_handle *cur_th =
3444 current->journal_info;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003445
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003446 /* we aren't allowed to close a nested transaction on a different
3447 ** filesystem from the one in the task struct
3448 */
Eric Sesterhenn14a61442006-10-03 23:36:38 +02003449 BUG_ON(cur_th->t_super != th->t_super);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003450
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003451 if (th != cur_th) {
3452 memcpy(current->journal_info, th, sizeof(*th));
3453 th->t_trans_id = 0;
3454 }
3455 return 0;
3456 } else {
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04003457 return do_journal_end(th, sb, nblocks, 0);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003458 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003459}
3460
Jeff Mahoney0222e652009-03-30 14:02:44 -04003461/* removes from the current transaction, relsing and descrementing any counters.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003462** also files the removed buffer directly onto the clean list
3463**
3464** called by journal_mark_freed when a block has been deleted
3465**
3466** returns 1 if it cleaned and relsed the buffer. 0 otherwise
3467*/
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04003468static int remove_from_transaction(struct super_block *sb,
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003469 b_blocknr_t blocknr, int already_cleaned)
3470{
3471 struct buffer_head *bh;
3472 struct reiserfs_journal_cnode *cn;
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04003473 struct reiserfs_journal *journal = SB_JOURNAL(sb);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003474 int ret = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003475
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04003476 cn = get_journal_hash_dev(sb, journal->j_hash_table, blocknr);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003477 if (!cn || !cn->bh) {
3478 return ret;
3479 }
3480 bh = cn->bh;
3481 if (cn->prev) {
3482 cn->prev->next = cn->next;
3483 }
3484 if (cn->next) {
3485 cn->next->prev = cn->prev;
3486 }
3487 if (cn == journal->j_first) {
3488 journal->j_first = cn->next;
3489 }
3490 if (cn == journal->j_last) {
3491 journal->j_last = cn->prev;
3492 }
3493 if (bh)
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04003494 remove_journal_hash(sb, journal->j_hash_table, NULL,
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003495 bh->b_blocknr, 0);
3496 clear_buffer_journaled(bh); /* don't log this one */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003497
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003498 if (!already_cleaned) {
3499 clear_buffer_journal_dirty(bh);
3500 clear_buffer_dirty(bh);
3501 clear_buffer_journal_test(bh);
3502 put_bh(bh);
3503 if (atomic_read(&(bh->b_count)) < 0) {
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04003504 reiserfs_warning(sb, "journal-1752",
Jeff Mahoney45b03d52009-03-30 14:02:21 -04003505 "b_count < 0");
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003506 }
3507 ret = 1;
3508 }
3509 journal->j_len--;
3510 journal->j_len_alloc--;
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04003511 free_cnode(sb, cn);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003512 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003513}
3514
3515/*
3516** for any cnode in a journal list, it can only be dirtied of all the
Matt LaPlante0779bf22006-11-30 05:24:39 +01003517** transactions that include it are committed to disk.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003518** this checks through each transaction, and returns 1 if you are allowed to dirty,
3519** and 0 if you aren't
3520**
3521** it is called by dirty_journal_list, which is called after flush_commit_list has gotten all the log
3522** blocks for a given transaction on disk
3523**
3524*/
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003525static int can_dirty(struct reiserfs_journal_cnode *cn)
3526{
3527 struct super_block *sb = cn->sb;
3528 b_blocknr_t blocknr = cn->blocknr;
3529 struct reiserfs_journal_cnode *cur = cn->hprev;
3530 int can_dirty = 1;
3531
3532 /* first test hprev. These are all newer than cn, so any node here
3533 ** with the same block number and dev means this node can't be sent
3534 ** to disk right now.
3535 */
3536 while (cur && can_dirty) {
3537 if (cur->jlist && cur->bh && cur->blocknr && cur->sb == sb &&
3538 cur->blocknr == blocknr) {
3539 can_dirty = 0;
3540 }
3541 cur = cur->hprev;
3542 }
3543 /* then test hnext. These are all older than cn. As long as they
3544 ** are committed to the log, it is safe to write cn to disk
3545 */
3546 cur = cn->hnext;
3547 while (cur && can_dirty) {
3548 if (cur->jlist && cur->jlist->j_len > 0 &&
3549 atomic_read(&(cur->jlist->j_commit_left)) > 0 && cur->bh &&
3550 cur->blocknr && cur->sb == sb && cur->blocknr == blocknr) {
3551 can_dirty = 0;
3552 }
3553 cur = cur->hnext;
3554 }
3555 return can_dirty;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003556}
3557
3558/* syncs the commit blocks, but does not force the real buffers to disk
Jeff Mahoney0222e652009-03-30 14:02:44 -04003559** will wait until the current transaction is done/committed before returning
Linus Torvalds1da177e2005-04-16 15:20:36 -07003560*/
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003561int journal_end_sync(struct reiserfs_transaction_handle *th,
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04003562 struct super_block *sb, unsigned long nblocks)
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003563{
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04003564 struct reiserfs_journal *journal = SB_JOURNAL(sb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003565
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003566 BUG_ON(!th->t_trans_id);
3567 /* you can sync while nested, very, very bad */
Eric Sesterhenn14a61442006-10-03 23:36:38 +02003568 BUG_ON(th->t_refcount > 1);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003569 if (journal->j_len == 0) {
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04003570 reiserfs_prepare_for_journal(sb, SB_BUFFER_WITH_SB(sb),
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003571 1);
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04003572 journal_mark_dirty(th, sb, SB_BUFFER_WITH_SB(sb));
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003573 }
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04003574 return do_journal_end(th, sb, nblocks, COMMIT_NOW | WAIT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003575}
3576
3577/*
3578** writeback the pending async commits to disk
3579*/
David Howellsc4028952006-11-22 14:57:56 +00003580static void flush_async_commits(struct work_struct *work)
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003581{
David Howellsc4028952006-11-22 14:57:56 +00003582 struct reiserfs_journal *journal =
3583 container_of(work, struct reiserfs_journal, j_work.work);
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04003584 struct super_block *sb = journal->j_work_sb;
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003585 struct reiserfs_journal_list *jl;
3586 struct list_head *entry;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003587
Frederic Weisbecker8ebc4232009-04-07 04:19:49 +02003588 reiserfs_write_lock(sb);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003589 if (!list_empty(&journal->j_journal_list)) {
3590 /* last entry is the youngest, commit it and you get everything */
3591 entry = journal->j_journal_list.prev;
3592 jl = JOURNAL_LIST_ENTRY(entry);
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04003593 flush_commit_list(sb, jl, 1);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003594 }
Frederic Weisbecker8ebc4232009-04-07 04:19:49 +02003595 reiserfs_write_unlock(sb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003596}
3597
3598/*
3599** flushes any old transactions to disk
3600** ends the current transaction if it is too old
3601*/
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04003602int reiserfs_flush_old_commits(struct super_block *sb)
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003603{
3604 time_t now;
3605 struct reiserfs_transaction_handle th;
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04003606 struct reiserfs_journal *journal = SB_JOURNAL(sb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003607
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003608 now = get_seconds();
3609 /* safety check so we don't flush while we are replaying the log during
3610 * mount
3611 */
3612 if (list_empty(&journal->j_journal_list)) {
3613 return 0;
3614 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003615
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003616 /* check the current transaction. If there are no writers, and it is
3617 * too old, finish it, and force the commit blocks to disk
3618 */
3619 if (atomic_read(&journal->j_wcount) <= 0 &&
3620 journal->j_trans_start_time > 0 &&
3621 journal->j_len > 0 &&
3622 (now - journal->j_trans_start_time) > journal->j_max_trans_age) {
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04003623 if (!journal_join(&th, sb, 1)) {
3624 reiserfs_prepare_for_journal(sb,
3625 SB_BUFFER_WITH_SB(sb),
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003626 1);
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04003627 journal_mark_dirty(&th, sb,
3628 SB_BUFFER_WITH_SB(sb));
Linus Torvalds1da177e2005-04-16 15:20:36 -07003629
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003630 /* we're only being called from kreiserfsd, it makes no sense to do
3631 ** an async commit so that kreiserfsd can do it later
3632 */
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04003633 do_journal_end(&th, sb, 1, COMMIT_NOW | WAIT);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003634 }
3635 }
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04003636 return sb->s_dirt;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003637}
3638
3639/*
3640** 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 -04003641**
3642** 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 -07003643** the writers are done. By the time it wakes up, the transaction it was called has already ended, so it just
3644** flushes the commit list and returns 0.
3645**
3646** 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 -04003647**
Linus Torvalds1da177e2005-04-16 15:20:36 -07003648** Note, we can't allow the journal_end to proceed while there are still writers in the log.
3649*/
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003650static int check_journal_end(struct reiserfs_transaction_handle *th,
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04003651 struct super_block *sb, unsigned long nblocks,
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003652 int flags)
3653{
Linus Torvalds1da177e2005-04-16 15:20:36 -07003654
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003655 time_t now;
3656 int flush = flags & FLUSH_ALL;
3657 int commit_now = flags & COMMIT_NOW;
3658 int wait_on_commit = flags & WAIT;
3659 struct reiserfs_journal_list *jl;
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04003660 struct reiserfs_journal *journal = SB_JOURNAL(sb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003661
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003662 BUG_ON(!th->t_trans_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003663
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003664 if (th->t_trans_id != journal->j_trans_id) {
Jeff Mahoneyc3a9c212009-03-30 14:02:25 -04003665 reiserfs_panic(th->t_super, "journal-1577",
3666 "handle trans id %ld != current trans id %ld",
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003667 th->t_trans_id, journal->j_trans_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003668 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003669
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003670 journal->j_len_alloc -= (th->t_blocks_allocated - th->t_blocks_logged);
3671 if (atomic_read(&(journal->j_wcount)) > 0) { /* <= 0 is allowed. unmounting might not call begin */
3672 atomic_dec(&(journal->j_wcount));
3673 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003674
Jeff Mahoney0222e652009-03-30 14:02:44 -04003675 /* 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 -07003676 ** will be dealt with by next transaction that actually writes something, but should be taken
3677 ** care of in this trans
3678 */
Eric Sesterhenn14a61442006-10-03 23:36:38 +02003679 BUG_ON(journal->j_len == 0);
3680
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003681 /* if wcount > 0, and we are called to with flush or commit_now,
3682 ** we wait on j_join_wait. We will wake up when the last writer has
3683 ** finished the transaction, and started it on its way to the disk.
Jeff Mahoney0222e652009-03-30 14:02:44 -04003684 ** Then, we flush the commit or journal list, and just return 0
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003685 ** because the rest of journal end was already done for this transaction.
3686 */
3687 if (atomic_read(&(journal->j_wcount)) > 0) {
3688 if (flush || commit_now) {
3689 unsigned trans_id;
3690
3691 jl = journal->j_current_jl;
3692 trans_id = jl->j_trans_id;
3693 if (wait_on_commit)
3694 jl->j_state |= LIST_COMMIT_PENDING;
3695 atomic_set(&(journal->j_jlock), 1);
3696 if (flush) {
3697 journal->j_next_full_flush = 1;
3698 }
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04003699 unlock_journal(sb);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003700
3701 /* sleep while the current transaction is still j_jlocked */
3702 while (journal->j_trans_id == trans_id) {
3703 if (atomic_read(&journal->j_jlock)) {
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04003704 queue_log_writer(sb);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003705 } else {
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04003706 lock_journal(sb);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003707 if (journal->j_trans_id == trans_id) {
3708 atomic_set(&(journal->j_jlock),
3709 1);
3710 }
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04003711 unlock_journal(sb);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003712 }
3713 }
Eric Sesterhenn14a61442006-10-03 23:36:38 +02003714 BUG_ON(journal->j_trans_id == trans_id);
3715
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003716 if (commit_now
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04003717 && journal_list_still_alive(sb, trans_id)
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003718 && wait_on_commit) {
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04003719 flush_commit_list(sb, jl, 1);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003720 }
3721 return 0;
3722 }
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04003723 unlock_journal(sb);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003724 return 0;
3725 }
3726
3727 /* deal with old transactions where we are the last writers */
3728 now = get_seconds();
3729 if ((now - journal->j_trans_start_time) > journal->j_max_trans_age) {
3730 commit_now = 1;
3731 journal->j_next_async_flush = 1;
3732 }
3733 /* don't batch when someone is waiting on j_join_wait */
3734 /* don't batch when syncing the commit or flushing the whole trans */
3735 if (!(journal->j_must_wait > 0) && !(atomic_read(&(journal->j_jlock)))
3736 && !flush && !commit_now && (journal->j_len < journal->j_max_batch)
3737 && journal->j_len_alloc < journal->j_max_batch
3738 && journal->j_cnode_free > (journal->j_trans_max * 3)) {
3739 journal->j_bcount++;
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04003740 unlock_journal(sb);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003741 return 0;
3742 }
3743
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04003744 if (journal->j_start > SB_ONDISK_JOURNAL_SIZE(sb)) {
3745 reiserfs_panic(sb, "journal-003",
Jeff Mahoneyc3a9c212009-03-30 14:02:25 -04003746 "j_start (%ld) is too high",
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003747 journal->j_start);
3748 }
3749 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003750}
3751
3752/*
3753** Does all the work that makes deleting blocks safe.
3754** 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 -04003755**
Linus Torvalds1da177e2005-04-16 15:20:36 -07003756** otherwise:
3757** set a bit for the block in the journal bitmap. That will prevent it from being allocated for unformatted nodes
3758** before this transaction has finished.
3759**
3760** mark any cnodes for this block as BLOCK_FREED, and clear their bh pointers. That will prevent any old transactions with
3761** this block from trying to flush to the real location. Since we aren't removing the cnode from the journal_list_hash,
3762** the block can't be reallocated yet.
3763**
3764** Then remove it from the current transaction, decrementing any counters and filing it on the clean list.
3765*/
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003766int journal_mark_freed(struct reiserfs_transaction_handle *th,
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04003767 struct super_block *sb, b_blocknr_t blocknr)
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003768{
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04003769 struct reiserfs_journal *journal = SB_JOURNAL(sb);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003770 struct reiserfs_journal_cnode *cn = NULL;
3771 struct buffer_head *bh = NULL;
3772 struct reiserfs_list_bitmap *jb = NULL;
3773 int cleaned = 0;
3774 BUG_ON(!th->t_trans_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003775
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04003776 cn = get_journal_hash_dev(sb, journal->j_hash_table, blocknr);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003777 if (cn && cn->bh) {
3778 bh = cn->bh;
3779 get_bh(bh);
3780 }
3781 /* if it is journal new, we just remove it from this transaction */
3782 if (bh && buffer_journal_new(bh)) {
3783 clear_buffer_journal_new(bh);
3784 clear_prepared_bits(bh);
3785 reiserfs_clean_and_file_buffer(bh);
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04003786 cleaned = remove_from_transaction(sb, blocknr, cleaned);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003787 } else {
3788 /* set the bit for this block in the journal bitmap for this transaction */
3789 jb = journal->j_current_jl->j_list_bitmap;
3790 if (!jb) {
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04003791 reiserfs_panic(sb, "journal-1702",
Jeff Mahoneyc3a9c212009-03-30 14:02:25 -04003792 "journal_list_bitmap is NULL");
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003793 }
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04003794 set_bit_in_list_bitmap(sb, blocknr, jb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003795
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003796 /* Note, the entire while loop is not allowed to schedule. */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003797
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003798 if (bh) {
3799 clear_prepared_bits(bh);
3800 reiserfs_clean_and_file_buffer(bh);
3801 }
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04003802 cleaned = remove_from_transaction(sb, blocknr, cleaned);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003803
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003804 /* find all older transactions with this block, make sure they don't try to write it out */
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04003805 cn = get_journal_hash_dev(sb, journal->j_list_hash_table,
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003806 blocknr);
3807 while (cn) {
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04003808 if (sb == cn->sb && blocknr == cn->blocknr) {
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003809 set_bit(BLOCK_FREED, &cn->state);
3810 if (cn->bh) {
3811 if (!cleaned) {
3812 /* remove_from_transaction will brelse the buffer if it was
3813 ** in the current trans
3814 */
3815 clear_buffer_journal_dirty(cn->
3816 bh);
3817 clear_buffer_dirty(cn->bh);
3818 clear_buffer_journal_test(cn->
3819 bh);
3820 cleaned = 1;
3821 put_bh(cn->bh);
3822 if (atomic_read
3823 (&(cn->bh->b_count)) < 0) {
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04003824 reiserfs_warning(sb,
Jeff Mahoney45b03d52009-03-30 14:02:21 -04003825 "journal-2138",
3826 "cn->bh->b_count < 0");
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003827 }
3828 }
3829 if (cn->jlist) { /* since we are clearing the bh, we MUST dec nonzerolen */
3830 atomic_dec(&
3831 (cn->jlist->
3832 j_nonzerolen));
3833 }
3834 cn->bh = NULL;
3835 }
3836 }
3837 cn = cn->hnext;
3838 }
3839 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003840
Chris Mason398c95b2007-10-16 23:29:44 -07003841 if (bh)
3842 release_buffer_page(bh); /* get_hash grabs the buffer */
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003843 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003844}
3845
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003846void reiserfs_update_inode_transaction(struct inode *inode)
3847{
3848 struct reiserfs_journal *journal = SB_JOURNAL(inode->i_sb);
3849 REISERFS_I(inode)->i_jl = journal->j_current_jl;
3850 REISERFS_I(inode)->i_trans_id = journal->j_trans_id;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003851}
3852
3853/*
3854 * returns -1 on error, 0 if no commits/barriers were done and 1
3855 * if a transaction was actually committed and the barrier was done
3856 */
3857static int __commit_trans_jl(struct inode *inode, unsigned long id,
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003858 struct reiserfs_journal_list *jl)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003859{
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003860 struct reiserfs_transaction_handle th;
3861 struct super_block *sb = inode->i_sb;
3862 struct reiserfs_journal *journal = SB_JOURNAL(sb);
3863 int ret = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003864
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003865 /* is it from the current transaction, or from an unknown transaction? */
3866 if (id == journal->j_trans_id) {
3867 jl = journal->j_current_jl;
3868 /* try to let other writers come in and grow this transaction */
3869 let_transaction_grow(sb, id);
3870 if (journal->j_trans_id != id) {
3871 goto flush_commit_only;
3872 }
3873
3874 ret = journal_begin(&th, sb, 1);
3875 if (ret)
3876 return ret;
3877
3878 /* someone might have ended this transaction while we joined */
3879 if (journal->j_trans_id != id) {
3880 reiserfs_prepare_for_journal(sb, SB_BUFFER_WITH_SB(sb),
3881 1);
3882 journal_mark_dirty(&th, sb, SB_BUFFER_WITH_SB(sb));
3883 ret = journal_end(&th, sb, 1);
3884 goto flush_commit_only;
3885 }
3886
3887 ret = journal_end_sync(&th, sb, 1);
3888 if (!ret)
3889 ret = 1;
3890
3891 } else {
3892 /* this gets tricky, we have to make sure the journal list in
3893 * the inode still exists. We know the list is still around
3894 * if we've got a larger transaction id than the oldest list
3895 */
3896 flush_commit_only:
3897 if (journal_list_still_alive(inode->i_sb, id)) {
3898 /*
3899 * we only set ret to 1 when we know for sure
3900 * the barrier hasn't been started yet on the commit
3901 * block.
3902 */
3903 if (atomic_read(&jl->j_commit_left) > 1)
3904 ret = 1;
3905 flush_commit_list(sb, jl, 1);
3906 if (journal->j_errno)
3907 ret = journal->j_errno;
3908 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003909 }
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003910 /* otherwise the list is gone, and long since committed */
3911 return ret;
3912}
Linus Torvalds1da177e2005-04-16 15:20:36 -07003913
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003914int reiserfs_commit_for_inode(struct inode *inode)
3915{
Jeff Mahoney600ed412009-03-30 14:02:17 -04003916 unsigned int id = REISERFS_I(inode)->i_trans_id;
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003917 struct reiserfs_journal_list *jl = REISERFS_I(inode)->i_jl;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003918
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003919 /* for the whole inode, assume unset id means it was
3920 * changed in the current transaction. More conservative
Linus Torvalds1da177e2005-04-16 15:20:36 -07003921 */
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003922 if (!id || !jl) {
3923 reiserfs_update_inode_transaction(inode);
3924 id = REISERFS_I(inode)->i_trans_id;
3925 /* jl will be updated in __commit_trans_jl */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003926 }
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003927
3928 return __commit_trans_jl(inode, id, jl);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003929}
3930
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04003931void reiserfs_restore_prepared_buffer(struct super_block *sb,
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003932 struct buffer_head *bh)
3933{
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04003934 struct reiserfs_journal *journal = SB_JOURNAL(sb);
3935 PROC_INFO_INC(sb, journal.restore_prepared);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003936 if (!bh) {
3937 return;
3938 }
3939 if (test_clear_buffer_journal_restore_dirty(bh) &&
3940 buffer_journal_dirty(bh)) {
3941 struct reiserfs_journal_cnode *cn;
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04003942 cn = get_journal_hash_dev(sb,
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003943 journal->j_list_hash_table,
3944 bh->b_blocknr);
3945 if (cn && can_dirty(cn)) {
3946 set_buffer_journal_test(bh);
3947 mark_buffer_dirty(bh);
3948 }
3949 }
3950 clear_buffer_journal_prepared(bh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003951}
3952
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003953extern struct tree_balance *cur_tb;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003954/*
3955** before we can change a metadata block, we have to make sure it won't
3956** be written to disk while we are altering it. So, we must:
3957** clean it
3958** wait on it.
Jeff Mahoney0222e652009-03-30 14:02:44 -04003959**
Linus Torvalds1da177e2005-04-16 15:20:36 -07003960*/
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04003961int reiserfs_prepare_for_journal(struct super_block *sb,
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003962 struct buffer_head *bh, int wait)
3963{
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04003964 PROC_INFO_INC(sb, journal.prepare);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003965
Nick Pigginca5de402008-08-02 12:02:13 +02003966 if (!trylock_buffer(bh)) {
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003967 if (!wait)
3968 return 0;
3969 lock_buffer(bh);
3970 }
3971 set_buffer_journal_prepared(bh);
3972 if (test_clear_buffer_dirty(bh) && buffer_journal_dirty(bh)) {
3973 clear_buffer_journal_test(bh);
3974 set_buffer_journal_restore_dirty(bh);
3975 }
3976 unlock_buffer(bh);
3977 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003978}
3979
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003980static void flush_old_journal_lists(struct super_block *s)
3981{
3982 struct reiserfs_journal *journal = SB_JOURNAL(s);
3983 struct reiserfs_journal_list *jl;
3984 struct list_head *entry;
3985 time_t now = get_seconds();
Linus Torvalds1da177e2005-04-16 15:20:36 -07003986
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003987 while (!list_empty(&journal->j_journal_list)) {
3988 entry = journal->j_journal_list.next;
3989 jl = JOURNAL_LIST_ENTRY(entry);
3990 /* this check should always be run, to send old lists to disk */
Chris Masona3172022006-09-29 01:59:56 -07003991 if (jl->j_timestamp < (now - (JOURNAL_MAX_TRANS_AGE * 4)) &&
3992 atomic_read(&jl->j_commit_left) == 0 &&
3993 test_transaction(s, jl)) {
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003994 flush_used_journal_lists(s, jl);
3995 } else {
3996 break;
3997 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003998 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003999}
4000
Jeff Mahoney0222e652009-03-30 14:02:44 -04004001/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07004002** long and ugly. If flush, will not return until all commit
4003** blocks and all real buffers in the trans are on disk.
4004** If no_async, won't return until all commit blocks are on disk.
4005**
4006** keep reading, there are comments as you go along
4007**
4008** If the journal is aborted, we just clean up. Things like flushing
4009** journal lists, etc just won't happen.
4010*/
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07004011static int do_journal_end(struct reiserfs_transaction_handle *th,
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04004012 struct super_block *sb, unsigned long nblocks,
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07004013 int flags)
4014{
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04004015 struct reiserfs_journal *journal = SB_JOURNAL(sb);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07004016 struct reiserfs_journal_cnode *cn, *next, *jl_cn;
4017 struct reiserfs_journal_cnode *last_cn = NULL;
4018 struct reiserfs_journal_desc *desc;
4019 struct reiserfs_journal_commit *commit;
4020 struct buffer_head *c_bh; /* commit bh */
4021 struct buffer_head *d_bh; /* desc bh */
4022 int cur_write_start = 0; /* start index of current log write */
4023 int old_start;
4024 int i;
Alexander Zarochentseva44c94a2006-03-25 03:06:59 -08004025 int flush;
4026 int wait_on_commit;
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07004027 struct reiserfs_journal_list *jl, *temp_jl;
4028 struct list_head *entry, *safe;
4029 unsigned long jindex;
Jeff Mahoney600ed412009-03-30 14:02:17 -04004030 unsigned int commit_trans_id;
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07004031 int trans_half;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004032
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07004033 BUG_ON(th->t_refcount > 1);
4034 BUG_ON(!th->t_trans_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004035
Alexander Zarochentseva44c94a2006-03-25 03:06:59 -08004036 /* protect flush_older_commits from doing mistakes if the
4037 transaction ID counter gets overflowed. */
Jeff Mahoney600ed412009-03-30 14:02:17 -04004038 if (th->t_trans_id == ~0U)
Alexander Zarochentseva44c94a2006-03-25 03:06:59 -08004039 flags |= FLUSH_ALL | COMMIT_NOW | WAIT;
4040 flush = flags & FLUSH_ALL;
4041 wait_on_commit = flags & WAIT;
4042
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07004043 put_fs_excl();
4044 current->journal_info = th->t_handle_save;
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04004045 reiserfs_check_lock_depth(sb, "journal end");
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07004046 if (journal->j_len == 0) {
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04004047 reiserfs_prepare_for_journal(sb, SB_BUFFER_WITH_SB(sb),
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07004048 1);
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04004049 journal_mark_dirty(th, sb, SB_BUFFER_WITH_SB(sb));
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07004050 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004051
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04004052 lock_journal(sb);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07004053 if (journal->j_next_full_flush) {
4054 flags |= FLUSH_ALL;
4055 flush = 1;
4056 }
4057 if (journal->j_next_async_flush) {
4058 flags |= COMMIT_NOW | WAIT;
4059 wait_on_commit = 1;
4060 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004061
Jeff Mahoney0222e652009-03-30 14:02:44 -04004062 /* check_journal_end locks the journal, and unlocks if it does not return 1
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07004063 ** it tells us if we should continue with the journal_end, or just return
4064 */
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04004065 if (!check_journal_end(th, sb, nblocks, flags)) {
4066 sb->s_dirt = 1;
4067 wake_queued_writers(sb);
4068 reiserfs_async_progress_wait(sb);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07004069 goto out;
4070 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004071
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07004072 /* check_journal_end might set these, check again */
4073 if (journal->j_next_full_flush) {
4074 flush = 1;
4075 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004076
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07004077 /*
4078 ** j must wait means we have to flush the log blocks, and the real blocks for
4079 ** this transaction
4080 */
4081 if (journal->j_must_wait > 0) {
4082 flush = 1;
4083 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004084#ifdef REISERFS_PREALLOCATE
Jan Karaef43bc42006-01-11 12:17:40 -08004085 /* quota ops might need to nest, setup the journal_info pointer for them
4086 * and raise the refcount so that it is > 0. */
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07004087 current->journal_info = th;
Jan Karaef43bc42006-01-11 12:17:40 -08004088 th->t_refcount++;
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07004089 reiserfs_discard_all_prealloc(th); /* it should not involve new blocks into
4090 * the transaction */
Jan Karaef43bc42006-01-11 12:17:40 -08004091 th->t_refcount--;
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07004092 current->journal_info = th->t_handle_save;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004093#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07004094
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07004095 /* setup description block */
4096 d_bh =
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04004097 journal_getblk(sb,
4098 SB_ONDISK_JOURNAL_1st_BLOCK(sb) +
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07004099 journal->j_start);
4100 set_buffer_uptodate(d_bh);
4101 desc = (struct reiserfs_journal_desc *)(d_bh)->b_data;
4102 memset(d_bh->b_data, 0, d_bh->b_size);
4103 memcpy(get_journal_desc_magic(d_bh), JOURNAL_DESC_MAGIC, 8);
4104 set_desc_trans_id(desc, journal->j_trans_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004105
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07004106 /* 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 -04004107 c_bh = journal_getblk(sb, SB_ONDISK_JOURNAL_1st_BLOCK(sb) +
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07004108 ((journal->j_start + journal->j_len +
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04004109 1) % SB_ONDISK_JOURNAL_SIZE(sb)));
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07004110 commit = (struct reiserfs_journal_commit *)c_bh->b_data;
4111 memset(c_bh->b_data, 0, c_bh->b_size);
4112 set_commit_trans_id(commit, journal->j_trans_id);
4113 set_buffer_uptodate(c_bh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004114
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07004115 /* init this journal list */
4116 jl = journal->j_current_jl;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004117
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07004118 /* we lock the commit before doing anything because
4119 * we want to make sure nobody tries to run flush_commit_list until
4120 * the new transaction is fully setup, and we've already flushed the
4121 * ordered bh list
4122 */
Frederic Weisbecker8ebc4232009-04-07 04:19:49 +02004123 reiserfs_mutex_lock_safe(&jl->j_commit_mutex, sb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004124
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07004125 /* save the transaction id in case we need to commit it later */
4126 commit_trans_id = jl->j_trans_id;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004127
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07004128 atomic_set(&jl->j_older_commits_done, 0);
4129 jl->j_trans_id = journal->j_trans_id;
4130 jl->j_timestamp = journal->j_trans_start_time;
4131 jl->j_commit_bh = c_bh;
4132 jl->j_start = journal->j_start;
4133 jl->j_len = journal->j_len;
4134 atomic_set(&jl->j_nonzerolen, journal->j_len);
4135 atomic_set(&jl->j_commit_left, journal->j_len + 2);
4136 jl->j_realblock = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004137
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07004138 /* The ENTIRE FOR LOOP MUST not cause schedule to occur.
4139 ** for each real block, add it to the journal list hash,
4140 ** copy into real block index array in the commit or desc block
4141 */
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04004142 trans_half = journal_trans_half(sb->s_blocksize);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07004143 for (i = 0, cn = journal->j_first; cn; cn = cn->next, i++) {
4144 if (buffer_journaled(cn->bh)) {
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04004145 jl_cn = get_cnode(sb);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07004146 if (!jl_cn) {
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04004147 reiserfs_panic(sb, "journal-1676",
Jeff Mahoneyc3a9c212009-03-30 14:02:25 -04004148 "get_cnode returned NULL");
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07004149 }
4150 if (i == 0) {
4151 jl->j_realblock = jl_cn;
4152 }
4153 jl_cn->prev = last_cn;
4154 jl_cn->next = NULL;
4155 if (last_cn) {
4156 last_cn->next = jl_cn;
4157 }
4158 last_cn = jl_cn;
Jeff Mahoney0222e652009-03-30 14:02:44 -04004159 /* make sure the block we are trying to log is not a block
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07004160 of journal or reserved area */
Linus Torvalds1da177e2005-04-16 15:20:36 -07004161
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07004162 if (is_block_in_log_or_reserved_area
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04004163 (sb, cn->bh->b_blocknr)) {
4164 reiserfs_panic(sb, "journal-2332",
Jeff Mahoneyc3a9c212009-03-30 14:02:25 -04004165 "Trying to log block %lu, "
4166 "which is a log block",
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07004167 cn->bh->b_blocknr);
4168 }
4169 jl_cn->blocknr = cn->bh->b_blocknr;
4170 jl_cn->state = 0;
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04004171 jl_cn->sb = sb;
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07004172 jl_cn->bh = cn->bh;
4173 jl_cn->jlist = jl;
4174 insert_journal_hash(journal->j_list_hash_table, jl_cn);
4175 if (i < trans_half) {
4176 desc->j_realblock[i] =
4177 cpu_to_le32(cn->bh->b_blocknr);
4178 } else {
4179 commit->j_realblock[i - trans_half] =
4180 cpu_to_le32(cn->bh->b_blocknr);
4181 }
4182 } else {
4183 i--;
4184 }
4185 }
4186 set_desc_trans_len(desc, journal->j_len);
4187 set_desc_mount_id(desc, journal->j_mount_id);
4188 set_desc_trans_id(desc, journal->j_trans_id);
4189 set_commit_trans_len(commit, journal->j_len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004190
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07004191 /* special check in case all buffers in the journal were marked for not logging */
Eric Sesterhenn14a61442006-10-03 23:36:38 +02004192 BUG_ON(journal->j_len == 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004193
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07004194 /* we're about to dirty all the log blocks, mark the description block
4195 * dirty now too. Don't mark the commit block dirty until all the
4196 * others are on disk
4197 */
4198 mark_buffer_dirty(d_bh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004199
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07004200 /* first data block is j_start + 1, so add one to cur_write_start wherever you use it */
4201 cur_write_start = journal->j_start;
4202 cn = journal->j_first;
4203 jindex = 1; /* start at one so we don't get the desc again */
4204 while (cn) {
4205 clear_buffer_journal_new(cn->bh);
4206 /* copy all the real blocks into log area. dirty log blocks */
4207 if (buffer_journaled(cn->bh)) {
4208 struct buffer_head *tmp_bh;
4209 char *addr;
4210 struct page *page;
4211 tmp_bh =
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04004212 journal_getblk(sb,
4213 SB_ONDISK_JOURNAL_1st_BLOCK(sb) +
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07004214 ((cur_write_start +
4215 jindex) %
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04004216 SB_ONDISK_JOURNAL_SIZE(sb)));
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07004217 set_buffer_uptodate(tmp_bh);
4218 page = cn->bh->b_page;
4219 addr = kmap(page);
4220 memcpy(tmp_bh->b_data,
4221 addr + offset_in_page(cn->bh->b_data),
4222 cn->bh->b_size);
4223 kunmap(page);
4224 mark_buffer_dirty(tmp_bh);
4225 jindex++;
4226 set_buffer_journal_dirty(cn->bh);
4227 clear_buffer_journaled(cn->bh);
4228 } else {
4229 /* JDirty cleared sometime during transaction. don't log this one */
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04004230 reiserfs_warning(sb, "journal-2048",
Jeff Mahoney45b03d52009-03-30 14:02:21 -04004231 "BAD, buffer in journal hash, "
4232 "but not JDirty!");
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07004233 brelse(cn->bh);
4234 }
4235 next = cn->next;
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04004236 free_cnode(sb, cn);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07004237 cn = next;
Frederic Weisbeckere6950a42009-04-30 23:04:32 +02004238 reiserfs_write_unlock(sb);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07004239 cond_resched();
Frederic Weisbeckere6950a42009-04-30 23:04:32 +02004240 reiserfs_write_lock(sb);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07004241 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004242
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07004243 /* we are done with both the c_bh and d_bh, but
4244 ** c_bh must be written after all other commit blocks,
4245 ** so we dirty/relse c_bh in flush_commit_list, with commit_left <= 1.
4246 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07004247
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04004248 journal->j_current_jl = alloc_journal_list(sb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004249
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07004250 /* now it is safe to insert this transaction on the main list */
4251 list_add_tail(&jl->j_list, &journal->j_journal_list);
4252 list_add_tail(&jl->j_working_list, &journal->j_working_list);
4253 journal->j_num_work_lists++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004254
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07004255 /* reset journal values for the next transaction */
4256 old_start = journal->j_start;
4257 journal->j_start =
4258 (journal->j_start + journal->j_len +
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04004259 2) % SB_ONDISK_JOURNAL_SIZE(sb);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07004260 atomic_set(&(journal->j_wcount), 0);
4261 journal->j_bcount = 0;
4262 journal->j_last = NULL;
4263 journal->j_first = NULL;
4264 journal->j_len = 0;
4265 journal->j_trans_start_time = 0;
Alexander Zarochentseva44c94a2006-03-25 03:06:59 -08004266 /* check for trans_id overflow */
4267 if (++journal->j_trans_id == 0)
4268 journal->j_trans_id = 10;
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07004269 journal->j_current_jl->j_trans_id = journal->j_trans_id;
4270 journal->j_must_wait = 0;
4271 journal->j_len_alloc = 0;
4272 journal->j_next_full_flush = 0;
4273 journal->j_next_async_flush = 0;
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04004274 init_journal_hash(sb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004275
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07004276 // make sure reiserfs_add_jh sees the new current_jl before we
4277 // write out the tails
4278 smp_mb();
Linus Torvalds1da177e2005-04-16 15:20:36 -07004279
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07004280 /* tail conversion targets have to hit the disk before we end the
4281 * transaction. Otherwise a later transaction might repack the tail
4282 * before this transaction commits, leaving the data block unflushed and
4283 * clean, if we crash before the later transaction commits, the data block
4284 * is lost.
4285 */
4286 if (!list_empty(&jl->j_tail_bh_list)) {
Frederic Weisbecker8ebc4232009-04-07 04:19:49 +02004287 reiserfs_write_unlock(sb);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07004288 write_ordered_buffers(&journal->j_dirty_buffers_lock,
4289 journal, jl, &jl->j_tail_bh_list);
Frederic Weisbecker8ebc4232009-04-07 04:19:49 +02004290 reiserfs_write_lock(sb);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07004291 }
Eric Sesterhenn14a61442006-10-03 23:36:38 +02004292 BUG_ON(!list_empty(&jl->j_tail_bh_list));
Jeff Mahoney90415de2008-07-25 01:46:40 -07004293 mutex_unlock(&jl->j_commit_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004294
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07004295 /* honor the flush wishes from the caller, simple commits can
4296 ** be done outside the journal lock, they are done below
4297 **
4298 ** if we don't flush the commit list right now, we put it into
4299 ** the work queue so the people waiting on the async progress work
4300 ** queue don't wait for this proc to flush journal lists and such.
4301 */
4302 if (flush) {
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04004303 flush_commit_list(sb, jl, 1);
4304 flush_journal_list(sb, jl, 1);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07004305 } else if (!(jl->j_state & LIST_COMMIT_PENDING))
4306 queue_delayed_work(commit_wq, &journal->j_work, HZ / 10);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004307
Jeff Mahoney0222e652009-03-30 14:02:44 -04004308 /* if the next transaction has any chance of wrapping, flush
4309 ** transactions that might get overwritten. If any journal lists are very
4310 ** old flush them as well.
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07004311 */
4312 first_jl:
4313 list_for_each_safe(entry, safe, &journal->j_journal_list) {
4314 temp_jl = JOURNAL_LIST_ENTRY(entry);
4315 if (journal->j_start <= temp_jl->j_start) {
4316 if ((journal->j_start + journal->j_trans_max + 1) >=
4317 temp_jl->j_start) {
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04004318 flush_used_journal_lists(sb, temp_jl);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07004319 goto first_jl;
4320 } else if ((journal->j_start +
4321 journal->j_trans_max + 1) <
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04004322 SB_ONDISK_JOURNAL_SIZE(sb)) {
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07004323 /* if we don't cross into the next transaction and we don't
4324 * wrap, there is no way we can overlap any later transactions
4325 * break now
4326 */
4327 break;
4328 }
4329 } else if ((journal->j_start +
4330 journal->j_trans_max + 1) >
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04004331 SB_ONDISK_JOURNAL_SIZE(sb)) {
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07004332 if (((journal->j_start + journal->j_trans_max + 1) %
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04004333 SB_ONDISK_JOURNAL_SIZE(sb)) >=
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07004334 temp_jl->j_start) {
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04004335 flush_used_journal_lists(sb, temp_jl);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07004336 goto first_jl;
4337 } else {
4338 /* we don't overlap anything from out start to the end of the
4339 * log, and our wrapped portion doesn't overlap anything at
4340 * the start of the log. We can break
4341 */
4342 break;
4343 }
4344 }
4345 }
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04004346 flush_old_journal_lists(sb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004347
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07004348 journal->j_current_jl->j_list_bitmap =
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04004349 get_list_bitmap(sb, journal->j_current_jl);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004350
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07004351 if (!(journal->j_current_jl->j_list_bitmap)) {
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04004352 reiserfs_panic(sb, "journal-1996",
Jeff Mahoneyc3a9c212009-03-30 14:02:25 -04004353 "could not get a list bitmap");
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07004354 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004355
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07004356 atomic_set(&(journal->j_jlock), 0);
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04004357 unlock_journal(sb);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07004358 /* wake up any body waiting to join. */
4359 clear_bit(J_WRITERS_QUEUED, &journal->j_state);
4360 wake_up(&(journal->j_join_wait));
Linus Torvalds1da177e2005-04-16 15:20:36 -07004361
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07004362 if (!flush && wait_on_commit &&
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04004363 journal_list_still_alive(sb, commit_trans_id)) {
4364 flush_commit_list(sb, jl, 1);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07004365 }
4366 out:
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04004367 reiserfs_check_lock_depth(sb, "journal end2");
Linus Torvalds1da177e2005-04-16 15:20:36 -07004368
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07004369 memset(th, 0, sizeof(*th));
4370 /* Re-set th->t_super, so we can properly keep track of how many
4371 * persistent transactions there are. We need to do this so if this
4372 * call is part of a failed restart_transaction, we can free it later */
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04004373 th->t_super = sb;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004374
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07004375 return journal->j_errno;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004376}
4377
Jeff Mahoney32e8b102009-03-30 14:02:26 -04004378/* Send the file system read only and refuse new transactions */
4379void reiserfs_abort_journal(struct super_block *sb, int errno)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004380{
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07004381 struct reiserfs_journal *journal = SB_JOURNAL(sb);
4382 if (test_bit(J_ABORTED, &journal->j_state))
4383 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004384
Jeff Mahoney32e8b102009-03-30 14:02:26 -04004385 if (!journal->j_errno)
4386 journal->j_errno = errno;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004387
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07004388 sb->s_flags |= MS_RDONLY;
4389 set_bit(J_ABORTED, &journal->j_state);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004390
4391#ifdef CONFIG_REISERFS_CHECK
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07004392 dump_stack();
Linus Torvalds1da177e2005-04-16 15:20:36 -07004393#endif
4394}
4395