blob: 0ba98ca367c7ef573992578c5fea816be6c92059 [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) {
1123 if (buffer_dirty(tbh))
1124 ll_rw_block(WRITE, 1, &tbh) ;
1125 put_bh(tbh) ;
1126 }
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001127 }
1128 atomic_dec(&journal->j_async_throttle);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001129
Jeff Mahoney5d5e81562005-12-14 14:38:36 -05001130 /* We're skipping the commit if there's an error */
1131 if (retval || reiserfs_is_journal_aborted(journal))
1132 barrier = 0;
1133
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001134 /* wait on everything written so far before writing the commit
1135 * if we are in barrier mode, send the commit down now
1136 */
1137 barrier = reiserfs_barrier_flush(s);
1138 if (barrier) {
1139 int ret;
1140 lock_buffer(jl->j_commit_bh);
1141 ret = submit_barrier_buffer(jl->j_commit_bh);
1142 if (ret == -EOPNOTSUPP) {
1143 set_buffer_uptodate(jl->j_commit_bh);
1144 disable_barrier(s);
1145 barrier = 0;
1146 }
1147 }
1148 for (i = 0; i < (jl->j_len + 1); i++) {
1149 bn = SB_ONDISK_JOURNAL_1st_BLOCK(s) +
1150 (jl->j_start + i) % SB_ONDISK_JOURNAL_SIZE(s);
1151 tbh = journal_find_get_block(s, bn);
Frederic Weisbecker8ebc4232009-04-07 04:19:49 +02001152
1153 reiserfs_write_unlock(s);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001154 wait_on_buffer(tbh);
Frederic Weisbecker8ebc4232009-04-07 04:19:49 +02001155 reiserfs_write_lock(s);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001156 // since we're using ll_rw_blk above, it might have skipped over
1157 // a locked buffer. Double check here
1158 //
Frederic Weisbecker8ebc4232009-04-07 04:19:49 +02001159 /* redundant, sync_dirty_buffer() checks */
1160 if (buffer_dirty(tbh)) {
1161 reiserfs_write_unlock(s);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001162 sync_dirty_buffer(tbh);
Frederic Weisbecker8ebc4232009-04-07 04:19:49 +02001163 reiserfs_write_lock(s);
1164 }
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001165 if (unlikely(!buffer_uptodate(tbh))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001166#ifdef CONFIG_REISERFS_CHECK
Jeff Mahoney45b03d52009-03-30 14:02:21 -04001167 reiserfs_warning(s, "journal-601",
1168 "buffer write failed");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001169#endif
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001170 retval = -EIO;
1171 }
1172 put_bh(tbh); /* once for journal_find_get_block */
1173 put_bh(tbh); /* once due to original getblk in do_journal_end */
1174 atomic_dec(&(jl->j_commit_left));
1175 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001176
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001177 BUG_ON(atomic_read(&(jl->j_commit_left)) != 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001178
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001179 if (!barrier) {
Jeff Mahoney5d5e81562005-12-14 14:38:36 -05001180 /* If there was a write error in the journal - we can't commit
1181 * this transaction - it will be invalid and, if successful,
Robert P. J. Daybeb7dd82007-05-09 07:14:03 +02001182 * will just end up propagating the write error out to
Jeff Mahoney5d5e81562005-12-14 14:38:36 -05001183 * the file system. */
1184 if (likely(!retval && !reiserfs_is_journal_aborted (journal))) {
1185 if (buffer_dirty(jl->j_commit_bh))
1186 BUG();
1187 mark_buffer_dirty(jl->j_commit_bh) ;
Frederic Weisbecker8ebc4232009-04-07 04:19:49 +02001188 reiserfs_write_unlock(s);
Jeff Mahoney5d5e81562005-12-14 14:38:36 -05001189 sync_dirty_buffer(jl->j_commit_bh) ;
Frederic Weisbecker8ebc4232009-04-07 04:19:49 +02001190 reiserfs_write_lock(s);
Jeff Mahoney5d5e81562005-12-14 14:38:36 -05001191 }
Frederic Weisbecker8ebc4232009-04-07 04:19:49 +02001192 } else {
1193 reiserfs_write_unlock(s);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001194 wait_on_buffer(jl->j_commit_bh);
Frederic Weisbecker8ebc4232009-04-07 04:19:49 +02001195 reiserfs_write_lock(s);
1196 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001197
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001198 check_barrier_completion(s, jl->j_commit_bh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001199
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001200 /* If there was a write error in the journal - we can't commit this
1201 * transaction - it will be invalid and, if successful, will just end
Robert P. J. Daybeb7dd82007-05-09 07:14:03 +02001202 * up propagating the write error out to the filesystem. */
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001203 if (unlikely(!buffer_uptodate(jl->j_commit_bh))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001204#ifdef CONFIG_REISERFS_CHECK
Jeff Mahoney45b03d52009-03-30 14:02:21 -04001205 reiserfs_warning(s, "journal-615", "buffer write failed");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001206#endif
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001207 retval = -EIO;
1208 }
1209 bforget(jl->j_commit_bh);
1210 if (journal->j_last_commit_id != 0 &&
1211 (jl->j_trans_id - journal->j_last_commit_id) != 1) {
Jeff Mahoney45b03d52009-03-30 14:02:21 -04001212 reiserfs_warning(s, "clm-2200", "last commit %lu, current %lu",
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001213 journal->j_last_commit_id, jl->j_trans_id);
1214 }
1215 journal->j_last_commit_id = jl->j_trans_id;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001216
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001217 /* now, every commit block is on the disk. It is safe to allow blocks freed during this transaction to be reallocated */
1218 cleanup_freed_for_journal_list(s, jl);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001219
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001220 retval = retval ? retval : journal->j_errno;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001221
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001222 /* mark the metadata dirty */
1223 if (!retval)
1224 dirty_one_transaction(s, jl);
1225 atomic_dec(&(jl->j_commit_left));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001226
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001227 if (flushall) {
1228 atomic_set(&(jl->j_older_commits_done), 1);
1229 }
Jeff Mahoney90415de2008-07-25 01:46:40 -07001230 mutex_unlock(&jl->j_commit_mutex);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001231 put_jl:
1232 put_journal_list(s, jl);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001233
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001234 if (retval)
1235 reiserfs_abort(s, retval, "Journal write error in %s",
Harvey Harrisonfbe54982008-04-28 02:16:22 -07001236 __func__);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001237 put_fs_excl();
1238 return retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001239}
1240
1241/*
Jeff Mahoney0222e652009-03-30 14:02:44 -04001242** flush_journal_list frequently needs to find a newer transaction for a given block. This does that, or
1243** returns NULL if it can't find anything
Linus Torvalds1da177e2005-04-16 15:20:36 -07001244*/
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001245static struct reiserfs_journal_list *find_newer_jl_for_cn(struct
1246 reiserfs_journal_cnode
1247 *cn)
1248{
1249 struct super_block *sb = cn->sb;
1250 b_blocknr_t blocknr = cn->blocknr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001251
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001252 cn = cn->hprev;
1253 while (cn) {
1254 if (cn->sb == sb && cn->blocknr == blocknr && cn->jlist) {
1255 return cn->jlist;
1256 }
1257 cn = cn->hprev;
1258 }
1259 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001260}
1261
Chris Masona3172022006-09-29 01:59:56 -07001262static int newer_jl_done(struct reiserfs_journal_cnode *cn)
1263{
1264 struct super_block *sb = cn->sb;
1265 b_blocknr_t blocknr = cn->blocknr;
1266
1267 cn = cn->hprev;
1268 while (cn) {
1269 if (cn->sb == sb && cn->blocknr == blocknr && cn->jlist &&
1270 atomic_read(&cn->jlist->j_commit_left) != 0)
1271 return 0;
1272 cn = cn->hprev;
1273 }
1274 return 1;
1275}
1276
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001277static void remove_journal_hash(struct super_block *,
1278 struct reiserfs_journal_cnode **,
1279 struct reiserfs_journal_list *, unsigned long,
1280 int);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001281
1282/*
1283** once all the real blocks have been flushed, it is safe to remove them from the
1284** journal list for this transaction. Aside from freeing the cnode, this also allows the
1285** block to be reallocated for data blocks if it had been deleted.
1286*/
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04001287static void remove_all_from_journal_list(struct super_block *sb,
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001288 struct reiserfs_journal_list *jl,
1289 int debug)
1290{
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04001291 struct reiserfs_journal *journal = SB_JOURNAL(sb);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001292 struct reiserfs_journal_cnode *cn, *last;
1293 cn = jl->j_realblock;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001294
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001295 /* which is better, to lock once around the whole loop, or
1296 ** to lock for each call to remove_journal_hash?
1297 */
1298 while (cn) {
1299 if (cn->blocknr != 0) {
1300 if (debug) {
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04001301 reiserfs_warning(sb, "reiserfs-2201",
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001302 "block %u, bh is %d, state %ld",
1303 cn->blocknr, cn->bh ? 1 : 0,
1304 cn->state);
1305 }
1306 cn->state = 0;
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04001307 remove_journal_hash(sb, journal->j_list_hash_table,
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001308 jl, cn->blocknr, 1);
1309 }
1310 last = cn;
1311 cn = cn->next;
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04001312 free_cnode(sb, last);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001313 }
1314 jl->j_realblock = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001315}
1316
1317/*
1318** if this timestamp is greater than the timestamp we wrote last to the header block, write it to the header block.
1319** once this is done, I can safely say the log area for this transaction won't ever be replayed, and I can start
1320** releasing blocks in this transaction for reuse as data blocks.
1321** called by flush_journal_list, before it calls remove_all_from_journal_list
1322**
1323*/
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04001324static int _update_journal_header_block(struct super_block *sb,
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001325 unsigned long offset,
Jeff Mahoney600ed412009-03-30 14:02:17 -04001326 unsigned int trans_id)
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001327{
1328 struct reiserfs_journal_header *jh;
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04001329 struct reiserfs_journal *journal = SB_JOURNAL(sb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001330
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001331 if (reiserfs_is_journal_aborted(journal))
1332 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001333
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001334 if (trans_id >= journal->j_last_flush_trans_id) {
1335 if (buffer_locked((journal->j_header_bh))) {
Frederic Weisbecker8ebc4232009-04-07 04:19:49 +02001336 reiserfs_write_unlock(sb);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001337 wait_on_buffer((journal->j_header_bh));
Frederic Weisbecker8ebc4232009-04-07 04:19:49 +02001338 reiserfs_write_lock(sb);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001339 if (unlikely(!buffer_uptodate(journal->j_header_bh))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001340#ifdef CONFIG_REISERFS_CHECK
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04001341 reiserfs_warning(sb, "journal-699",
Jeff Mahoney45b03d52009-03-30 14:02:21 -04001342 "buffer write failed");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001343#endif
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001344 return -EIO;
1345 }
1346 }
1347 journal->j_last_flush_trans_id = trans_id;
1348 journal->j_first_unflushed_offset = offset;
1349 jh = (struct reiserfs_journal_header *)(journal->j_header_bh->
1350 b_data);
1351 jh->j_last_flush_trans_id = cpu_to_le32(trans_id);
1352 jh->j_first_unflushed_offset = cpu_to_le32(offset);
1353 jh->j_mount_id = cpu_to_le32(journal->j_mount_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001354
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04001355 if (reiserfs_barrier_flush(sb)) {
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001356 int ret;
1357 lock_buffer(journal->j_header_bh);
1358 ret = submit_barrier_buffer(journal->j_header_bh);
1359 if (ret == -EOPNOTSUPP) {
1360 set_buffer_uptodate(journal->j_header_bh);
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04001361 disable_barrier(sb);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001362 goto sync;
1363 }
Frederic Weisbecker8ebc4232009-04-07 04:19:49 +02001364 reiserfs_write_unlock(sb);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001365 wait_on_buffer(journal->j_header_bh);
Frederic Weisbecker8ebc4232009-04-07 04:19:49 +02001366 reiserfs_write_lock(sb);
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04001367 check_barrier_completion(sb, journal->j_header_bh);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001368 } else {
1369 sync:
1370 set_buffer_dirty(journal->j_header_bh);
Frederic Weisbecker8ebc4232009-04-07 04:19:49 +02001371 reiserfs_write_unlock(sb);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001372 sync_dirty_buffer(journal->j_header_bh);
Frederic Weisbecker8ebc4232009-04-07 04:19:49 +02001373 reiserfs_write_lock(sb);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001374 }
1375 if (!buffer_uptodate(journal->j_header_bh)) {
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04001376 reiserfs_warning(sb, "journal-837",
Jeff Mahoney45b03d52009-03-30 14:02:21 -04001377 "IO error during journal replay");
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001378 return -EIO;
1379 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001380 }
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001381 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001382}
1383
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04001384static int update_journal_header_block(struct super_block *sb,
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001385 unsigned long offset,
Jeff Mahoney600ed412009-03-30 14:02:17 -04001386 unsigned int trans_id)
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001387{
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04001388 return _update_journal_header_block(sb, offset, trans_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001389}
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001390
Jeff Mahoney0222e652009-03-30 14:02:44 -04001391/*
1392** flush any and all journal lists older than you are
Linus Torvalds1da177e2005-04-16 15:20:36 -07001393** can only be called from flush_journal_list
1394*/
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04001395static int flush_older_journal_lists(struct super_block *sb,
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001396 struct reiserfs_journal_list *jl)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001397{
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001398 struct list_head *entry;
1399 struct reiserfs_journal_list *other_jl;
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04001400 struct reiserfs_journal *journal = SB_JOURNAL(sb);
Jeff Mahoney600ed412009-03-30 14:02:17 -04001401 unsigned int trans_id = jl->j_trans_id;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001402
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001403 /* we know we are the only ones flushing things, no extra race
1404 * protection is required.
1405 */
1406 restart:
1407 entry = journal->j_journal_list.next;
1408 /* Did we wrap? */
1409 if (entry == &journal->j_journal_list)
1410 return 0;
1411 other_jl = JOURNAL_LIST_ENTRY(entry);
1412 if (other_jl->j_trans_id < trans_id) {
1413 BUG_ON(other_jl->j_refcount <= 0);
1414 /* do not flush all */
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04001415 flush_journal_list(sb, other_jl, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001416
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001417 /* other_jl is now deleted from the list */
1418 goto restart;
1419 }
1420 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001421}
1422
1423static void del_from_work_list(struct super_block *s,
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001424 struct reiserfs_journal_list *jl)
1425{
1426 struct reiserfs_journal *journal = SB_JOURNAL(s);
1427 if (!list_empty(&jl->j_working_list)) {
1428 list_del_init(&jl->j_working_list);
1429 journal->j_num_work_lists--;
1430 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001431}
1432
1433/* flush a journal list, both commit and real blocks
1434**
1435** always set flushall to 1, unless you are calling from inside
1436** flush_journal_list
1437**
Jeff Mahoney0222e652009-03-30 14:02:44 -04001438** IMPORTANT. This can only be called while there are no journal writers,
1439** and the journal is locked. That means it can only be called from
Linus Torvalds1da177e2005-04-16 15:20:36 -07001440** do_journal_end, or by journal_release
1441*/
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001442static int flush_journal_list(struct super_block *s,
1443 struct reiserfs_journal_list *jl, int flushall)
1444{
1445 struct reiserfs_journal_list *pjl;
1446 struct reiserfs_journal_cnode *cn, *last;
1447 int count;
1448 int was_jwait = 0;
1449 int was_dirty = 0;
1450 struct buffer_head *saved_bh;
1451 unsigned long j_len_saved = jl->j_len;
1452 struct reiserfs_journal *journal = SB_JOURNAL(s);
1453 int err = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001454
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001455 BUG_ON(j_len_saved <= 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001456
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001457 if (atomic_read(&journal->j_wcount) != 0) {
Jeff Mahoney45b03d52009-03-30 14:02:21 -04001458 reiserfs_warning(s, "clm-2048", "called with wcount %d",
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001459 atomic_read(&journal->j_wcount));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001460 }
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001461 BUG_ON(jl->j_trans_id == 0);
1462
1463 /* if flushall == 0, the lock is already held */
1464 if (flushall) {
Frederic Weisbecker8ebc4232009-04-07 04:19:49 +02001465 reiserfs_mutex_lock_safe(&journal->j_flush_mutex, s);
Jeff Mahoneyafe70252008-07-25 01:46:39 -07001466 } else if (mutex_trylock(&journal->j_flush_mutex)) {
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001467 BUG();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001468 }
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001469
1470 count = 0;
1471 if (j_len_saved > journal->j_trans_max) {
Jeff Mahoneyc3a9c212009-03-30 14:02:25 -04001472 reiserfs_panic(s, "journal-715", "length is %lu, trans id %lu",
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001473 j_len_saved, jl->j_trans_id);
1474 return 0;
1475 }
1476
1477 get_fs_excl();
1478
1479 /* if all the work is already done, get out of here */
1480 if (atomic_read(&(jl->j_nonzerolen)) <= 0 &&
1481 atomic_read(&(jl->j_commit_left)) <= 0) {
1482 goto flush_older_and_return;
1483 }
1484
Jeff Mahoney0222e652009-03-30 14:02:44 -04001485 /* start by putting the commit list on disk. This will also flush
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001486 ** the commit lists of any olders transactions
1487 */
1488 flush_commit_list(s, jl, 1);
1489
1490 if (!(jl->j_state & LIST_DIRTY)
1491 && !reiserfs_is_journal_aborted(journal))
1492 BUG();
1493
1494 /* are we done now? */
1495 if (atomic_read(&(jl->j_nonzerolen)) <= 0 &&
1496 atomic_read(&(jl->j_commit_left)) <= 0) {
1497 goto flush_older_and_return;
1498 }
1499
Jeff Mahoney0222e652009-03-30 14:02:44 -04001500 /* loop through each cnode, see if we need to write it,
1501 ** or wait on a more recent transaction, or just ignore it
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001502 */
1503 if (atomic_read(&(journal->j_wcount)) != 0) {
Jeff Mahoneyc3a9c212009-03-30 14:02:25 -04001504 reiserfs_panic(s, "journal-844", "journal list is flushing, "
1505 "wcount is not 0");
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001506 }
1507 cn = jl->j_realblock;
1508 while (cn) {
1509 was_jwait = 0;
1510 was_dirty = 0;
1511 saved_bh = NULL;
1512 /* blocknr of 0 is no longer in the hash, ignore it */
1513 if (cn->blocknr == 0) {
1514 goto free_cnode;
1515 }
1516
1517 /* This transaction failed commit. Don't write out to the disk */
1518 if (!(jl->j_state & LIST_DIRTY))
1519 goto free_cnode;
1520
1521 pjl = find_newer_jl_for_cn(cn);
1522 /* the order is important here. We check pjl to make sure we
1523 ** don't clear BH_JDirty_wait if we aren't the one writing this
1524 ** block to disk
1525 */
1526 if (!pjl && cn->bh) {
1527 saved_bh = cn->bh;
1528
Jeff Mahoney0222e652009-03-30 14:02:44 -04001529 /* we do this to make sure nobody releases the buffer while
1530 ** we are working with it
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001531 */
1532 get_bh(saved_bh);
1533
1534 if (buffer_journal_dirty(saved_bh)) {
1535 BUG_ON(!can_dirty(cn));
1536 was_jwait = 1;
1537 was_dirty = 1;
1538 } else if (can_dirty(cn)) {
1539 /* everything with !pjl && jwait should be writable */
1540 BUG();
1541 }
1542 }
1543
1544 /* if someone has this block in a newer transaction, just make
Matt LaPlante0779bf22006-11-30 05:24:39 +01001545 ** sure they are committed, and don't try writing it to disk
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001546 */
1547 if (pjl) {
1548 if (atomic_read(&pjl->j_commit_left))
1549 flush_commit_list(s, pjl, 1);
1550 goto free_cnode;
1551 }
1552
Jeff Mahoney0222e652009-03-30 14:02:44 -04001553 /* bh == NULL when the block got to disk on its own, OR,
1554 ** the block got freed in a future transaction
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001555 */
1556 if (saved_bh == NULL) {
1557 goto free_cnode;
1558 }
1559
1560 /* this should never happen. kupdate_one_transaction has this list
1561 ** locked while it works, so we should never see a buffer here that
1562 ** is not marked JDirty_wait
1563 */
1564 if ((!was_jwait) && !buffer_locked(saved_bh)) {
Jeff Mahoney45b03d52009-03-30 14:02:21 -04001565 reiserfs_warning(s, "journal-813",
1566 "BAD! buffer %llu %cdirty %cjwait, "
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001567 "not in a newer tranasction",
1568 (unsigned long long)saved_bh->
1569 b_blocknr, was_dirty ? ' ' : '!',
1570 was_jwait ? ' ' : '!');
1571 }
1572 if (was_dirty) {
1573 /* we inc again because saved_bh gets decremented at free_cnode */
1574 get_bh(saved_bh);
1575 set_bit(BLOCK_NEEDS_FLUSH, &cn->state);
1576 lock_buffer(saved_bh);
1577 BUG_ON(cn->blocknr != saved_bh->b_blocknr);
1578 if (buffer_dirty(saved_bh))
1579 submit_logged_buffer(saved_bh);
1580 else
1581 unlock_buffer(saved_bh);
1582 count++;
1583 } else {
Jeff Mahoney45b03d52009-03-30 14:02:21 -04001584 reiserfs_warning(s, "clm-2082",
1585 "Unable to flush buffer %llu in %s",
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001586 (unsigned long long)saved_bh->
Harvey Harrisonfbe54982008-04-28 02:16:22 -07001587 b_blocknr, __func__);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001588 }
1589 free_cnode:
1590 last = cn;
1591 cn = cn->next;
1592 if (saved_bh) {
1593 /* we incremented this to keep others from taking the buffer head away */
1594 put_bh(saved_bh);
1595 if (atomic_read(&(saved_bh->b_count)) < 0) {
Jeff Mahoney45b03d52009-03-30 14:02:21 -04001596 reiserfs_warning(s, "journal-945",
1597 "saved_bh->b_count < 0");
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001598 }
1599 }
1600 }
1601 if (count > 0) {
1602 cn = jl->j_realblock;
1603 while (cn) {
1604 if (test_bit(BLOCK_NEEDS_FLUSH, &cn->state)) {
1605 if (!cn->bh) {
Jeff Mahoneyc3a9c212009-03-30 14:02:25 -04001606 reiserfs_panic(s, "journal-1011",
1607 "cn->bh is NULL");
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001608 }
Frederic Weisbecker8ebc4232009-04-07 04:19:49 +02001609
1610 reiserfs_write_unlock(s);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001611 wait_on_buffer(cn->bh);
Frederic Weisbecker8ebc4232009-04-07 04:19:49 +02001612 reiserfs_write_lock(s);
1613
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001614 if (!cn->bh) {
Jeff Mahoneyc3a9c212009-03-30 14:02:25 -04001615 reiserfs_panic(s, "journal-1012",
1616 "cn->bh is NULL");
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001617 }
1618 if (unlikely(!buffer_uptodate(cn->bh))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001619#ifdef CONFIG_REISERFS_CHECK
Jeff Mahoney45b03d52009-03-30 14:02:21 -04001620 reiserfs_warning(s, "journal-949",
1621 "buffer write failed");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001622#endif
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001623 err = -EIO;
1624 }
1625 /* note, we must clear the JDirty_wait bit after the up to date
1626 ** check, otherwise we race against our flushpage routine
1627 */
1628 BUG_ON(!test_clear_buffer_journal_dirty
1629 (cn->bh));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001630
Chris Mason398c95b2007-10-16 23:29:44 -07001631 /* drop one ref for us */
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001632 put_bh(cn->bh);
Chris Mason398c95b2007-10-16 23:29:44 -07001633 /* drop one ref for journal_mark_dirty */
1634 release_buffer_page(cn->bh);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001635 }
1636 cn = cn->next;
1637 }
1638 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001639
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001640 if (err)
1641 reiserfs_abort(s, -EIO,
1642 "Write error while pushing transaction to disk in %s",
Harvey Harrisonfbe54982008-04-28 02:16:22 -07001643 __func__);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001644 flush_older_and_return:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001645
Jeff Mahoney0222e652009-03-30 14:02:44 -04001646 /* before we can update the journal header block, we _must_ flush all
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001647 ** real blocks from all older transactions to disk. This is because
1648 ** once the header block is updated, this transaction will not be
1649 ** replayed after a crash
1650 */
1651 if (flushall) {
1652 flush_older_journal_lists(s, jl);
1653 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001654
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001655 err = journal->j_errno;
Jeff Mahoney0222e652009-03-30 14:02:44 -04001656 /* before we can remove everything from the hash tables for this
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001657 ** transaction, we must make sure it can never be replayed
1658 **
1659 ** since we are only called from do_journal_end, we know for sure there
1660 ** are no allocations going on while we are flushing journal lists. So,
1661 ** we only need to update the journal header block for the last list
1662 ** being flushed
1663 */
1664 if (!err && flushall) {
1665 err =
1666 update_journal_header_block(s,
1667 (jl->j_start + jl->j_len +
1668 2) % SB_ONDISK_JOURNAL_SIZE(s),
1669 jl->j_trans_id);
1670 if (err)
1671 reiserfs_abort(s, -EIO,
1672 "Write error while updating journal header in %s",
Harvey Harrisonfbe54982008-04-28 02:16:22 -07001673 __func__);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001674 }
1675 remove_all_from_journal_list(s, jl, 0);
1676 list_del_init(&jl->j_list);
1677 journal->j_num_lists--;
1678 del_from_work_list(s, jl);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001679
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001680 if (journal->j_last_flush_id != 0 &&
1681 (jl->j_trans_id - journal->j_last_flush_id) != 1) {
Jeff Mahoney45b03d52009-03-30 14:02:21 -04001682 reiserfs_warning(s, "clm-2201", "last flush %lu, current %lu",
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001683 journal->j_last_flush_id, jl->j_trans_id);
1684 }
1685 journal->j_last_flush_id = jl->j_trans_id;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001686
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001687 /* not strictly required since we are freeing the list, but it should
1688 * help find code using dead lists later on
1689 */
1690 jl->j_len = 0;
1691 atomic_set(&(jl->j_nonzerolen), 0);
1692 jl->j_start = 0;
1693 jl->j_realblock = NULL;
1694 jl->j_commit_bh = NULL;
1695 jl->j_trans_id = 0;
1696 jl->j_state = 0;
1697 put_journal_list(s, jl);
1698 if (flushall)
Jeff Mahoneyafe70252008-07-25 01:46:39 -07001699 mutex_unlock(&journal->j_flush_mutex);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001700 put_fs_excl();
1701 return err;
1702}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001703
Chris Masona3172022006-09-29 01:59:56 -07001704static int test_transaction(struct super_block *s,
1705 struct reiserfs_journal_list *jl)
1706{
1707 struct reiserfs_journal_cnode *cn;
1708
1709 if (jl->j_len == 0 || atomic_read(&jl->j_nonzerolen) == 0)
1710 return 1;
1711
1712 cn = jl->j_realblock;
1713 while (cn) {
1714 /* if the blocknr == 0, this has been cleared from the hash,
1715 ** skip it
1716 */
1717 if (cn->blocknr == 0) {
1718 goto next;
1719 }
1720 if (cn->bh && !newer_jl_done(cn))
1721 return 0;
1722 next:
1723 cn = cn->next;
1724 cond_resched();
1725 }
1726 return 0;
1727}
1728
Linus Torvalds1da177e2005-04-16 15:20:36 -07001729static int write_one_transaction(struct super_block *s,
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001730 struct reiserfs_journal_list *jl,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001731 struct buffer_chunk *chunk)
1732{
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001733 struct reiserfs_journal_cnode *cn;
1734 int ret = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001735
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001736 jl->j_state |= LIST_TOUCHED;
1737 del_from_work_list(s, jl);
1738 if (jl->j_len == 0 || atomic_read(&jl->j_nonzerolen) == 0) {
1739 return 0;
1740 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001741
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001742 cn = jl->j_realblock;
1743 while (cn) {
1744 /* if the blocknr == 0, this has been cleared from the hash,
1745 ** skip it
1746 */
1747 if (cn->blocknr == 0) {
1748 goto next;
1749 }
1750 if (cn->bh && can_dirty(cn) && buffer_dirty(cn->bh)) {
1751 struct buffer_head *tmp_bh;
1752 /* we can race against journal_mark_freed when we try
1753 * to lock_buffer(cn->bh), so we have to inc the buffer
1754 * count, and recheck things after locking
1755 */
1756 tmp_bh = cn->bh;
1757 get_bh(tmp_bh);
1758 lock_buffer(tmp_bh);
1759 if (cn->bh && can_dirty(cn) && buffer_dirty(tmp_bh)) {
1760 if (!buffer_journal_dirty(tmp_bh) ||
1761 buffer_journal_prepared(tmp_bh))
1762 BUG();
1763 add_to_chunk(chunk, tmp_bh, NULL, write_chunk);
1764 ret++;
1765 } else {
1766 /* note, cn->bh might be null now */
1767 unlock_buffer(tmp_bh);
1768 }
1769 put_bh(tmp_bh);
1770 }
1771 next:
1772 cn = cn->next;
1773 cond_resched();
1774 }
1775 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001776}
1777
1778/* used by flush_commit_list */
1779static int dirty_one_transaction(struct super_block *s,
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001780 struct reiserfs_journal_list *jl)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001781{
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001782 struct reiserfs_journal_cnode *cn;
1783 struct reiserfs_journal_list *pjl;
1784 int ret = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001785
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001786 jl->j_state |= LIST_DIRTY;
1787 cn = jl->j_realblock;
1788 while (cn) {
1789 /* look for a more recent transaction that logged this
1790 ** buffer. Only the most recent transaction with a buffer in
1791 ** it is allowed to send that buffer to disk
1792 */
1793 pjl = find_newer_jl_for_cn(cn);
1794 if (!pjl && cn->blocknr && cn->bh
1795 && buffer_journal_dirty(cn->bh)) {
1796 BUG_ON(!can_dirty(cn));
1797 /* if the buffer is prepared, it will either be logged
1798 * or restored. If restored, we need to make sure
1799 * it actually gets marked dirty
1800 */
1801 clear_buffer_journal_new(cn->bh);
1802 if (buffer_journal_prepared(cn->bh)) {
1803 set_buffer_journal_restore_dirty(cn->bh);
1804 } else {
1805 set_buffer_journal_test(cn->bh);
1806 mark_buffer_dirty(cn->bh);
1807 }
1808 }
1809 cn = cn->next;
1810 }
1811 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001812}
1813
1814static int kupdate_transactions(struct super_block *s,
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001815 struct reiserfs_journal_list *jl,
1816 struct reiserfs_journal_list **next_jl,
Jeff Mahoney600ed412009-03-30 14:02:17 -04001817 unsigned int *next_trans_id,
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001818 int num_blocks, int num_trans)
1819{
1820 int ret = 0;
1821 int written = 0;
1822 int transactions_flushed = 0;
Jeff Mahoney600ed412009-03-30 14:02:17 -04001823 unsigned int orig_trans_id = jl->j_trans_id;
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001824 struct buffer_chunk chunk;
1825 struct list_head *entry;
1826 struct reiserfs_journal *journal = SB_JOURNAL(s);
1827 chunk.nr = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001828
Frederic Weisbeckera412f9e2009-04-14 00:10:35 +02001829 reiserfs_mutex_lock_safe(&journal->j_flush_mutex, s);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001830 if (!journal_list_still_alive(s, orig_trans_id)) {
1831 goto done;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001832 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001833
Jeff Mahoneyafe70252008-07-25 01:46:39 -07001834 /* we've got j_flush_mutex held, nobody is going to delete any
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001835 * of these lists out from underneath us
1836 */
1837 while ((num_trans && transactions_flushed < num_trans) ||
1838 (!num_trans && written < num_blocks)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001839
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001840 if (jl->j_len == 0 || (jl->j_state & LIST_TOUCHED) ||
1841 atomic_read(&jl->j_commit_left)
1842 || !(jl->j_state & LIST_DIRTY)) {
1843 del_from_work_list(s, jl);
1844 break;
1845 }
1846 ret = write_one_transaction(s, jl, &chunk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001847
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001848 if (ret < 0)
1849 goto done;
1850 transactions_flushed++;
1851 written += ret;
1852 entry = jl->j_list.next;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001853
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001854 /* did we wrap? */
1855 if (entry == &journal->j_journal_list) {
1856 break;
1857 }
1858 jl = JOURNAL_LIST_ENTRY(entry);
1859
1860 /* don't bother with older transactions */
1861 if (jl->j_trans_id <= orig_trans_id)
1862 break;
1863 }
1864 if (chunk.nr) {
1865 write_chunk(&chunk);
1866 }
1867
1868 done:
Jeff Mahoneyafe70252008-07-25 01:46:39 -07001869 mutex_unlock(&journal->j_flush_mutex);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001870 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001871}
1872
1873/* for o_sync and fsync heavy applications, they tend to use
1874** all the journa list slots with tiny transactions. These
1875** trigger lots and lots of calls to update the header block, which
1876** adds seeks and slows things down.
1877**
1878** This function tries to clear out a large chunk of the journal lists
1879** at once, which makes everything faster since only the newest journal
1880** list updates the header block
1881*/
1882static int flush_used_journal_lists(struct super_block *s,
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001883 struct reiserfs_journal_list *jl)
1884{
1885 unsigned long len = 0;
1886 unsigned long cur_len;
1887 int ret;
1888 int i;
1889 int limit = 256;
1890 struct reiserfs_journal_list *tjl;
1891 struct reiserfs_journal_list *flush_jl;
Jeff Mahoney600ed412009-03-30 14:02:17 -04001892 unsigned int trans_id;
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001893 struct reiserfs_journal *journal = SB_JOURNAL(s);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001894
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001895 flush_jl = tjl = jl;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001896
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001897 /* in data logging mode, try harder to flush a lot of blocks */
1898 if (reiserfs_data_log(s))
1899 limit = 1024;
1900 /* flush for 256 transactions or limit blocks, whichever comes first */
1901 for (i = 0; i < 256 && len < limit; i++) {
1902 if (atomic_read(&tjl->j_commit_left) ||
1903 tjl->j_trans_id < jl->j_trans_id) {
1904 break;
1905 }
1906 cur_len = atomic_read(&tjl->j_nonzerolen);
1907 if (cur_len > 0) {
1908 tjl->j_state &= ~LIST_TOUCHED;
1909 }
1910 len += cur_len;
1911 flush_jl = tjl;
1912 if (tjl->j_list.next == &journal->j_journal_list)
1913 break;
1914 tjl = JOURNAL_LIST_ENTRY(tjl->j_list.next);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001915 }
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001916 /* try to find a group of blocks we can flush across all the
1917 ** transactions, but only bother if we've actually spanned
1918 ** across multiple lists
1919 */
1920 if (flush_jl != jl) {
1921 ret = kupdate_transactions(s, jl, &tjl, &trans_id, len, i);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001922 }
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001923 flush_journal_list(s, flush_jl, 1);
1924 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001925}
1926
1927/*
1928** removes any nodes in table with name block and dev as bh.
1929** only touchs the hnext and hprev pointers.
1930*/
1931void remove_journal_hash(struct super_block *sb,
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001932 struct reiserfs_journal_cnode **table,
1933 struct reiserfs_journal_list *jl,
1934 unsigned long block, int remove_freed)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001935{
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001936 struct reiserfs_journal_cnode *cur;
1937 struct reiserfs_journal_cnode **head;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001938
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001939 head = &(journal_hash(table, sb, block));
1940 if (!head) {
1941 return;
1942 }
1943 cur = *head;
1944 while (cur) {
1945 if (cur->blocknr == block && cur->sb == sb
1946 && (jl == NULL || jl == cur->jlist)
1947 && (!test_bit(BLOCK_FREED, &cur->state) || remove_freed)) {
1948 if (cur->hnext) {
1949 cur->hnext->hprev = cur->hprev;
1950 }
1951 if (cur->hprev) {
1952 cur->hprev->hnext = cur->hnext;
1953 } else {
1954 *head = cur->hnext;
1955 }
1956 cur->blocknr = 0;
1957 cur->sb = NULL;
1958 cur->state = 0;
1959 if (cur->bh && cur->jlist) /* anybody who clears the cur->bh will also dec the nonzerolen */
1960 atomic_dec(&(cur->jlist->j_nonzerolen));
1961 cur->bh = NULL;
1962 cur->jlist = NULL;
1963 }
1964 cur = cur->hnext;
1965 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001966}
1967
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04001968static void free_journal_ram(struct super_block *sb)
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001969{
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04001970 struct reiserfs_journal *journal = SB_JOURNAL(sb);
Pekka Enbergd739b422006-02-01 03:06:43 -08001971 kfree(journal->j_current_jl);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001972 journal->j_num_lists--;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001973
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001974 vfree(journal->j_cnode_free_orig);
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04001975 free_list_bitmaps(sb, journal->j_list_bitmap);
1976 free_bitmap_nodes(sb); /* must be after free_list_bitmaps */
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001977 if (journal->j_header_bh) {
1978 brelse(journal->j_header_bh);
1979 }
1980 /* j_header_bh is on the journal dev, make sure not to release the journal
1981 * dev until we brelse j_header_bh
1982 */
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04001983 release_journal_dev(sb, journal);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001984 vfree(journal);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001985}
1986
1987/*
1988** call on unmount. Only set error to 1 if you haven't made your way out
1989** of read_super() yet. Any other caller must keep error at 0.
1990*/
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001991static int do_journal_release(struct reiserfs_transaction_handle *th,
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04001992 struct super_block *sb, int error)
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001993{
1994 struct reiserfs_transaction_handle myth;
1995 int flushed = 0;
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04001996 struct reiserfs_journal *journal = SB_JOURNAL(sb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001997
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001998 /* we only want to flush out transactions if we were called with error == 0
1999 */
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04002000 if (!error && !(sb->s_flags & MS_RDONLY)) {
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002001 /* end the current trans */
2002 BUG_ON(!th->t_trans_id);
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04002003 do_journal_end(th, sb, 10, FLUSH_ALL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002004
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002005 /* make sure something gets logged to force our way into the flush code */
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04002006 if (!journal_join(&myth, sb, 1)) {
2007 reiserfs_prepare_for_journal(sb,
2008 SB_BUFFER_WITH_SB(sb),
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002009 1);
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04002010 journal_mark_dirty(&myth, sb,
2011 SB_BUFFER_WITH_SB(sb));
2012 do_journal_end(&myth, sb, 1, FLUSH_ALL);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002013 flushed = 1;
2014 }
2015 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002016
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002017 /* this also catches errors during the do_journal_end above */
2018 if (!error && reiserfs_is_journal_aborted(journal)) {
2019 memset(&myth, 0, sizeof(myth));
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04002020 if (!journal_join_abort(&myth, sb, 1)) {
2021 reiserfs_prepare_for_journal(sb,
2022 SB_BUFFER_WITH_SB(sb),
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002023 1);
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04002024 journal_mark_dirty(&myth, sb,
2025 SB_BUFFER_WITH_SB(sb));
2026 do_journal_end(&myth, sb, 1, FLUSH_ALL);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002027 }
2028 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002029
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002030 reiserfs_mounted_fs_count--;
2031 /* wait for all commits to finish */
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04002032 cancel_delayed_work(&SB_JOURNAL(sb)->j_work);
Frederic Weisbecker8ebc4232009-04-07 04:19:49 +02002033
2034 /*
2035 * We must release the write lock here because
2036 * the workqueue job (flush_async_commit) needs this lock
2037 */
2038 reiserfs_write_unlock(sb);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002039 flush_workqueue(commit_wq);
Frederic Weisbecker8ebc4232009-04-07 04:19:49 +02002040
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002041 if (!reiserfs_mounted_fs_count) {
2042 destroy_workqueue(commit_wq);
2043 commit_wq = NULL;
2044 }
Frederic Weisbecker8ebc4232009-04-07 04:19:49 +02002045 reiserfs_write_lock(sb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002046
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04002047 free_journal_ram(sb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002048
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002049 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002050}
2051
2052/*
2053** call on unmount. flush all journal trans, release all alloc'd ram
2054*/
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002055int journal_release(struct reiserfs_transaction_handle *th,
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04002056 struct super_block *sb)
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002057{
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04002058 return do_journal_release(th, sb, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002059}
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002060
Linus Torvalds1da177e2005-04-16 15:20:36 -07002061/*
2062** only call from an error condition inside reiserfs_read_super!
2063*/
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002064int journal_release_error(struct reiserfs_transaction_handle *th,
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04002065 struct super_block *sb)
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002066{
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04002067 return do_journal_release(th, sb, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002068}
2069
2070/* compares description block with commit block. returns 1 if they differ, 0 if they are the same */
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04002071static int journal_compare_desc_commit(struct super_block *sb,
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002072 struct reiserfs_journal_desc *desc,
2073 struct reiserfs_journal_commit *commit)
2074{
2075 if (get_commit_trans_id(commit) != get_desc_trans_id(desc) ||
2076 get_commit_trans_len(commit) != get_desc_trans_len(desc) ||
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04002077 get_commit_trans_len(commit) > SB_JOURNAL(sb)->j_trans_max ||
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002078 get_commit_trans_len(commit) <= 0) {
2079 return 1;
2080 }
2081 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002082}
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002083
Jeff Mahoney0222e652009-03-30 14:02:44 -04002084/* returns 0 if it did not find a description block
Linus Torvalds1da177e2005-04-16 15:20:36 -07002085** returns -1 if it found a corrupt commit block
Jeff Mahoney0222e652009-03-30 14:02:44 -04002086** returns 1 if both desc and commit were valid
Linus Torvalds1da177e2005-04-16 15:20:36 -07002087*/
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04002088static int journal_transaction_is_valid(struct super_block *sb,
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002089 struct buffer_head *d_bh,
Jeff Mahoney600ed412009-03-30 14:02:17 -04002090 unsigned int *oldest_invalid_trans_id,
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002091 unsigned long *newest_mount_id)
2092{
2093 struct reiserfs_journal_desc *desc;
2094 struct reiserfs_journal_commit *commit;
2095 struct buffer_head *c_bh;
2096 unsigned long offset;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002097
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002098 if (!d_bh)
2099 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002100
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002101 desc = (struct reiserfs_journal_desc *)d_bh->b_data;
2102 if (get_desc_trans_len(desc) > 0
2103 && !memcmp(get_journal_desc_magic(d_bh), JOURNAL_DESC_MAGIC, 8)) {
2104 if (oldest_invalid_trans_id && *oldest_invalid_trans_id
2105 && get_desc_trans_id(desc) > *oldest_invalid_trans_id) {
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04002106 reiserfs_debug(sb, REISERFS_DEBUG_CODE,
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002107 "journal-986: transaction "
2108 "is valid returning because trans_id %d is greater than "
2109 "oldest_invalid %lu",
2110 get_desc_trans_id(desc),
2111 *oldest_invalid_trans_id);
2112 return 0;
2113 }
2114 if (newest_mount_id
2115 && *newest_mount_id > get_desc_mount_id(desc)) {
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04002116 reiserfs_debug(sb, REISERFS_DEBUG_CODE,
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002117 "journal-1087: transaction "
2118 "is valid returning because mount_id %d is less than "
2119 "newest_mount_id %lu",
2120 get_desc_mount_id(desc),
2121 *newest_mount_id);
2122 return -1;
2123 }
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04002124 if (get_desc_trans_len(desc) > SB_JOURNAL(sb)->j_trans_max) {
2125 reiserfs_warning(sb, "journal-2018",
Jeff Mahoney45b03d52009-03-30 14:02:21 -04002126 "Bad transaction length %d "
2127 "encountered, ignoring transaction",
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002128 get_desc_trans_len(desc));
2129 return -1;
2130 }
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04002131 offset = d_bh->b_blocknr - SB_ONDISK_JOURNAL_1st_BLOCK(sb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002132
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002133 /* ok, we have a journal description block, lets see if the transaction was valid */
2134 c_bh =
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04002135 journal_bread(sb,
2136 SB_ONDISK_JOURNAL_1st_BLOCK(sb) +
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002137 ((offset + get_desc_trans_len(desc) +
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04002138 1) % SB_ONDISK_JOURNAL_SIZE(sb)));
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002139 if (!c_bh)
2140 return 0;
2141 commit = (struct reiserfs_journal_commit *)c_bh->b_data;
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04002142 if (journal_compare_desc_commit(sb, desc, commit)) {
2143 reiserfs_debug(sb, REISERFS_DEBUG_CODE,
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002144 "journal_transaction_is_valid, commit offset %ld had bad "
2145 "time %d or length %d",
2146 c_bh->b_blocknr -
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04002147 SB_ONDISK_JOURNAL_1st_BLOCK(sb),
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002148 get_commit_trans_id(commit),
2149 get_commit_trans_len(commit));
2150 brelse(c_bh);
2151 if (oldest_invalid_trans_id) {
2152 *oldest_invalid_trans_id =
2153 get_desc_trans_id(desc);
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04002154 reiserfs_debug(sb, REISERFS_DEBUG_CODE,
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002155 "journal-1004: "
2156 "transaction_is_valid setting oldest invalid trans_id "
2157 "to %d",
2158 get_desc_trans_id(desc));
2159 }
2160 return -1;
2161 }
2162 brelse(c_bh);
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04002163 reiserfs_debug(sb, REISERFS_DEBUG_CODE,
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002164 "journal-1006: found valid "
2165 "transaction start offset %llu, len %d id %d",
2166 d_bh->b_blocknr -
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04002167 SB_ONDISK_JOURNAL_1st_BLOCK(sb),
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002168 get_desc_trans_len(desc),
2169 get_desc_trans_id(desc));
2170 return 1;
2171 } else {
2172 return 0;
2173 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002174}
2175
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002176static void brelse_array(struct buffer_head **heads, int num)
2177{
2178 int i;
2179 for (i = 0; i < num; i++) {
2180 brelse(heads[i]);
2181 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002182}
2183
2184/*
2185** given the start, and values for the oldest acceptable transactions,
2186** this either reads in a replays a transaction, or returns because the transaction
2187** is invalid, or too old.
2188*/
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04002189static int journal_read_transaction(struct super_block *sb,
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002190 unsigned long cur_dblock,
2191 unsigned long oldest_start,
Jeff Mahoney600ed412009-03-30 14:02:17 -04002192 unsigned int oldest_trans_id,
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002193 unsigned long newest_mount_id)
2194{
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04002195 struct reiserfs_journal *journal = SB_JOURNAL(sb);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002196 struct reiserfs_journal_desc *desc;
2197 struct reiserfs_journal_commit *commit;
Jeff Mahoney600ed412009-03-30 14:02:17 -04002198 unsigned int trans_id = 0;
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002199 struct buffer_head *c_bh;
2200 struct buffer_head *d_bh;
2201 struct buffer_head **log_blocks = NULL;
2202 struct buffer_head **real_blocks = NULL;
Jeff Mahoney600ed412009-03-30 14:02:17 -04002203 unsigned int trans_offset;
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002204 int i;
2205 int trans_half;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002206
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04002207 d_bh = journal_bread(sb, cur_dblock);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002208 if (!d_bh)
2209 return 1;
2210 desc = (struct reiserfs_journal_desc *)d_bh->b_data;
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04002211 trans_offset = d_bh->b_blocknr - SB_ONDISK_JOURNAL_1st_BLOCK(sb);
2212 reiserfs_debug(sb, REISERFS_DEBUG_CODE, "journal-1037: "
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002213 "journal_read_transaction, offset %llu, len %d mount_id %d",
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04002214 d_bh->b_blocknr - SB_ONDISK_JOURNAL_1st_BLOCK(sb),
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002215 get_desc_trans_len(desc), get_desc_mount_id(desc));
2216 if (get_desc_trans_id(desc) < oldest_trans_id) {
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04002217 reiserfs_debug(sb, REISERFS_DEBUG_CODE, "journal-1039: "
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002218 "journal_read_trans skipping because %lu is too old",
2219 cur_dblock -
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04002220 SB_ONDISK_JOURNAL_1st_BLOCK(sb));
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002221 brelse(d_bh);
2222 return 1;
2223 }
2224 if (get_desc_mount_id(desc) != newest_mount_id) {
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04002225 reiserfs_debug(sb, REISERFS_DEBUG_CODE, "journal-1146: "
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002226 "journal_read_trans skipping because %d is != "
2227 "newest_mount_id %lu", get_desc_mount_id(desc),
2228 newest_mount_id);
2229 brelse(d_bh);
2230 return 1;
2231 }
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04002232 c_bh = journal_bread(sb, SB_ONDISK_JOURNAL_1st_BLOCK(sb) +
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002233 ((trans_offset + get_desc_trans_len(desc) + 1) %
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04002234 SB_ONDISK_JOURNAL_SIZE(sb)));
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002235 if (!c_bh) {
2236 brelse(d_bh);
2237 return 1;
2238 }
2239 commit = (struct reiserfs_journal_commit *)c_bh->b_data;
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04002240 if (journal_compare_desc_commit(sb, desc, commit)) {
2241 reiserfs_debug(sb, REISERFS_DEBUG_CODE,
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002242 "journal_read_transaction, "
2243 "commit offset %llu had bad time %d or length %d",
2244 c_bh->b_blocknr -
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04002245 SB_ONDISK_JOURNAL_1st_BLOCK(sb),
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002246 get_commit_trans_id(commit),
2247 get_commit_trans_len(commit));
2248 brelse(c_bh);
2249 brelse(d_bh);
2250 return 1;
2251 }
2252 trans_id = get_desc_trans_id(desc);
2253 /* now we know we've got a good transaction, and it was inside the valid time ranges */
Pekka Enbergd739b422006-02-01 03:06:43 -08002254 log_blocks = kmalloc(get_desc_trans_len(desc) *
2255 sizeof(struct buffer_head *), GFP_NOFS);
2256 real_blocks = kmalloc(get_desc_trans_len(desc) *
2257 sizeof(struct buffer_head *), GFP_NOFS);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002258 if (!log_blocks || !real_blocks) {
2259 brelse(c_bh);
2260 brelse(d_bh);
Pekka Enbergd739b422006-02-01 03:06:43 -08002261 kfree(log_blocks);
2262 kfree(real_blocks);
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04002263 reiserfs_warning(sb, "journal-1169",
Jeff Mahoney45b03d52009-03-30 14:02:21 -04002264 "kmalloc failed, unable to mount FS");
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002265 return -1;
2266 }
2267 /* get all the buffer heads */
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04002268 trans_half = journal_trans_half(sb->s_blocksize);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002269 for (i = 0; i < get_desc_trans_len(desc); i++) {
2270 log_blocks[i] =
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04002271 journal_getblk(sb,
2272 SB_ONDISK_JOURNAL_1st_BLOCK(sb) +
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002273 (trans_offset + 1 +
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04002274 i) % SB_ONDISK_JOURNAL_SIZE(sb));
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002275 if (i < trans_half) {
2276 real_blocks[i] =
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04002277 sb_getblk(sb,
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002278 le32_to_cpu(desc->j_realblock[i]));
2279 } else {
2280 real_blocks[i] =
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04002281 sb_getblk(sb,
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002282 le32_to_cpu(commit->
2283 j_realblock[i - trans_half]));
2284 }
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04002285 if (real_blocks[i]->b_blocknr > SB_BLOCK_COUNT(sb)) {
2286 reiserfs_warning(sb, "journal-1207",
Jeff Mahoney45b03d52009-03-30 14:02:21 -04002287 "REPLAY FAILURE fsck required! "
2288 "Block to replay is outside of "
2289 "filesystem");
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002290 goto abort_replay;
2291 }
2292 /* make sure we don't try to replay onto log or reserved area */
2293 if (is_block_in_log_or_reserved_area
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04002294 (sb, real_blocks[i]->b_blocknr)) {
2295 reiserfs_warning(sb, "journal-1204",
Jeff Mahoney45b03d52009-03-30 14:02:21 -04002296 "REPLAY FAILURE fsck required! "
2297 "Trying to replay onto a log block");
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002298 abort_replay:
2299 brelse_array(log_blocks, i);
2300 brelse_array(real_blocks, i);
2301 brelse(c_bh);
2302 brelse(d_bh);
Pekka Enbergd739b422006-02-01 03:06:43 -08002303 kfree(log_blocks);
2304 kfree(real_blocks);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002305 return -1;
2306 }
2307 }
2308 /* read in the log blocks, memcpy to the corresponding real block */
2309 ll_rw_block(READ, get_desc_trans_len(desc), log_blocks);
2310 for (i = 0; i < get_desc_trans_len(desc); i++) {
Frederic Weisbecker8ebc4232009-04-07 04:19:49 +02002311
2312 reiserfs_write_unlock(sb);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002313 wait_on_buffer(log_blocks[i]);
Frederic Weisbecker8ebc4232009-04-07 04:19:49 +02002314 reiserfs_write_lock(sb);
2315
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002316 if (!buffer_uptodate(log_blocks[i])) {
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04002317 reiserfs_warning(sb, "journal-1212",
Jeff Mahoney45b03d52009-03-30 14:02:21 -04002318 "REPLAY FAILURE fsck required! "
2319 "buffer write failed");
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002320 brelse_array(log_blocks + i,
2321 get_desc_trans_len(desc) - i);
2322 brelse_array(real_blocks, get_desc_trans_len(desc));
2323 brelse(c_bh);
2324 brelse(d_bh);
Pekka Enbergd739b422006-02-01 03:06:43 -08002325 kfree(log_blocks);
2326 kfree(real_blocks);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002327 return -1;
2328 }
2329 memcpy(real_blocks[i]->b_data, log_blocks[i]->b_data,
2330 real_blocks[i]->b_size);
2331 set_buffer_uptodate(real_blocks[i]);
2332 brelse(log_blocks[i]);
2333 }
2334 /* flush out the real blocks */
2335 for (i = 0; i < get_desc_trans_len(desc); i++) {
2336 set_buffer_dirty(real_blocks[i]);
Jan Kara53778ff2005-09-06 15:19:14 -07002337 ll_rw_block(SWRITE, 1, real_blocks + i);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002338 }
2339 for (i = 0; i < get_desc_trans_len(desc); i++) {
2340 wait_on_buffer(real_blocks[i]);
2341 if (!buffer_uptodate(real_blocks[i])) {
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04002342 reiserfs_warning(sb, "journal-1226",
Jeff Mahoney45b03d52009-03-30 14:02:21 -04002343 "REPLAY FAILURE, fsck required! "
2344 "buffer write failed");
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002345 brelse_array(real_blocks + i,
2346 get_desc_trans_len(desc) - i);
2347 brelse(c_bh);
2348 brelse(d_bh);
Pekka Enbergd739b422006-02-01 03:06:43 -08002349 kfree(log_blocks);
2350 kfree(real_blocks);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002351 return -1;
2352 }
2353 brelse(real_blocks[i]);
2354 }
2355 cur_dblock =
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04002356 SB_ONDISK_JOURNAL_1st_BLOCK(sb) +
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002357 ((trans_offset + get_desc_trans_len(desc) +
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04002358 2) % SB_ONDISK_JOURNAL_SIZE(sb));
2359 reiserfs_debug(sb, REISERFS_DEBUG_CODE,
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002360 "journal-1095: setting journal " "start to offset %ld",
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04002361 cur_dblock - SB_ONDISK_JOURNAL_1st_BLOCK(sb));
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002362
2363 /* init starting values for the first transaction, in case this is the last transaction to be replayed. */
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04002364 journal->j_start = cur_dblock - SB_ONDISK_JOURNAL_1st_BLOCK(sb);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002365 journal->j_last_flush_trans_id = trans_id;
2366 journal->j_trans_id = trans_id + 1;
Alexander Zarochentseva44c94a2006-03-25 03:06:59 -08002367 /* check for trans_id overflow */
2368 if (journal->j_trans_id == 0)
2369 journal->j_trans_id = 10;
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002370 brelse(c_bh);
2371 brelse(d_bh);
Pekka Enbergd739b422006-02-01 03:06:43 -08002372 kfree(log_blocks);
2373 kfree(real_blocks);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002374 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002375}
2376
2377/* This function reads blocks starting from block and to max_block of bufsize
2378 size (but no more than BUFNR blocks at a time). This proved to improve
2379 mounting speed on self-rebuilding raid5 arrays at least.
2380 Right now it is only used from journal code. But later we might use it
2381 from other places.
2382 Note: Do not use journal_getblk/sb_getblk functions here! */
Jeff Mahoney3ee16672007-10-18 23:39:25 -07002383static struct buffer_head *reiserfs_breada(struct block_device *dev,
2384 b_blocknr_t block, int bufsize,
2385 b_blocknr_t max_block)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002386{
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002387 struct buffer_head *bhlist[BUFNR];
Linus Torvalds1da177e2005-04-16 15:20:36 -07002388 unsigned int blocks = BUFNR;
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002389 struct buffer_head *bh;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002390 int i, j;
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002391
2392 bh = __getblk(dev, block, bufsize);
2393 if (buffer_uptodate(bh))
2394 return (bh);
2395
Linus Torvalds1da177e2005-04-16 15:20:36 -07002396 if (block + BUFNR > max_block) {
2397 blocks = max_block - block;
2398 }
2399 bhlist[0] = bh;
2400 j = 1;
2401 for (i = 1; i < blocks; i++) {
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002402 bh = __getblk(dev, block + i, bufsize);
2403 if (buffer_uptodate(bh)) {
2404 brelse(bh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002405 break;
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002406 } else
2407 bhlist[j++] = bh;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002408 }
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002409 ll_rw_block(READ, j, bhlist);
2410 for (i = 1; i < j; i++)
2411 brelse(bhlist[i]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002412 bh = bhlist[0];
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002413 wait_on_buffer(bh);
2414 if (buffer_uptodate(bh))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002415 return bh;
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002416 brelse(bh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002417 return NULL;
2418}
2419
2420/*
2421** read and replay the log
2422** on a clean unmount, the journal header's next unflushed pointer will be to an invalid
2423** transaction. This tests that before finding all the transactions in the log, which makes normal mount times fast.
2424**
2425** After a crash, this starts with the next unflushed transaction, and replays until it finds one too old, or invalid.
2426**
2427** On exit, it sets things up so the first transaction will work correctly.
2428*/
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04002429static int journal_read(struct super_block *sb)
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002430{
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04002431 struct reiserfs_journal *journal = SB_JOURNAL(sb);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002432 struct reiserfs_journal_desc *desc;
Jeff Mahoney600ed412009-03-30 14:02:17 -04002433 unsigned int oldest_trans_id = 0;
2434 unsigned int oldest_invalid_trans_id = 0;
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002435 time_t start;
2436 unsigned long oldest_start = 0;
2437 unsigned long cur_dblock = 0;
2438 unsigned long newest_mount_id = 9;
2439 struct buffer_head *d_bh;
2440 struct reiserfs_journal_header *jh;
2441 int valid_journal_header = 0;
2442 int replay_count = 0;
2443 int continue_replay = 1;
2444 int ret;
2445 char b[BDEVNAME_SIZE];
Linus Torvalds1da177e2005-04-16 15:20:36 -07002446
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04002447 cur_dblock = SB_ONDISK_JOURNAL_1st_BLOCK(sb);
2448 reiserfs_info(sb, "checking transaction log (%s)\n",
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002449 bdevname(journal->j_dev_bd, b));
2450 start = get_seconds();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002451
Jeff Mahoney0222e652009-03-30 14:02:44 -04002452 /* step 1, read in the journal header block. Check the transaction it says
2453 ** is the first unflushed, and if that transaction is not valid,
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002454 ** replay is done
2455 */
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04002456 journal->j_header_bh = journal_bread(sb,
2457 SB_ONDISK_JOURNAL_1st_BLOCK(sb)
2458 + SB_ONDISK_JOURNAL_SIZE(sb));
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002459 if (!journal->j_header_bh) {
2460 return 1;
2461 }
2462 jh = (struct reiserfs_journal_header *)(journal->j_header_bh->b_data);
Vladimir V. Savelievc499ec22006-03-02 02:54:39 -08002463 if (le32_to_cpu(jh->j_first_unflushed_offset) <
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04002464 SB_ONDISK_JOURNAL_SIZE(sb)
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002465 && le32_to_cpu(jh->j_last_flush_trans_id) > 0) {
2466 oldest_start =
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04002467 SB_ONDISK_JOURNAL_1st_BLOCK(sb) +
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002468 le32_to_cpu(jh->j_first_unflushed_offset);
2469 oldest_trans_id = le32_to_cpu(jh->j_last_flush_trans_id) + 1;
2470 newest_mount_id = le32_to_cpu(jh->j_mount_id);
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04002471 reiserfs_debug(sb, REISERFS_DEBUG_CODE,
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002472 "journal-1153: found in "
2473 "header: first_unflushed_offset %d, last_flushed_trans_id "
2474 "%lu", le32_to_cpu(jh->j_first_unflushed_offset),
2475 le32_to_cpu(jh->j_last_flush_trans_id));
2476 valid_journal_header = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002477
Jeff Mahoney0222e652009-03-30 14:02:44 -04002478 /* now, we try to read the first unflushed offset. If it is not valid,
2479 ** there is nothing more we can do, and it makes no sense to read
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002480 ** through the whole log.
2481 */
2482 d_bh =
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04002483 journal_bread(sb,
2484 SB_ONDISK_JOURNAL_1st_BLOCK(sb) +
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002485 le32_to_cpu(jh->j_first_unflushed_offset));
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04002486 ret = journal_transaction_is_valid(sb, d_bh, NULL, NULL);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002487 if (!ret) {
2488 continue_replay = 0;
2489 }
2490 brelse(d_bh);
2491 goto start_log_replay;
2492 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002493
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04002494 if (continue_replay && bdev_read_only(sb->s_bdev)) {
2495 reiserfs_warning(sb, "clm-2076",
Jeff Mahoney45b03d52009-03-30 14:02:21 -04002496 "device is readonly, unable to replay log");
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002497 return -1;
2498 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002499
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002500 /* ok, there are transactions that need to be replayed. start with the first log block, find
2501 ** all the valid transactions, and pick out the oldest.
2502 */
2503 while (continue_replay
2504 && cur_dblock <
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04002505 (SB_ONDISK_JOURNAL_1st_BLOCK(sb) +
2506 SB_ONDISK_JOURNAL_SIZE(sb))) {
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002507 /* Note that it is required for blocksize of primary fs device and journal
2508 device to be the same */
2509 d_bh =
2510 reiserfs_breada(journal->j_dev_bd, cur_dblock,
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04002511 sb->s_blocksize,
2512 SB_ONDISK_JOURNAL_1st_BLOCK(sb) +
2513 SB_ONDISK_JOURNAL_SIZE(sb));
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002514 ret =
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04002515 journal_transaction_is_valid(sb, d_bh,
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002516 &oldest_invalid_trans_id,
2517 &newest_mount_id);
2518 if (ret == 1) {
2519 desc = (struct reiserfs_journal_desc *)d_bh->b_data;
2520 if (oldest_start == 0) { /* init all oldest_ values */
2521 oldest_trans_id = get_desc_trans_id(desc);
2522 oldest_start = d_bh->b_blocknr;
2523 newest_mount_id = get_desc_mount_id(desc);
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04002524 reiserfs_debug(sb, REISERFS_DEBUG_CODE,
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002525 "journal-1179: Setting "
2526 "oldest_start to offset %llu, trans_id %lu",
2527 oldest_start -
2528 SB_ONDISK_JOURNAL_1st_BLOCK
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04002529 (sb), oldest_trans_id);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002530 } else if (oldest_trans_id > get_desc_trans_id(desc)) {
2531 /* one we just read was older */
2532 oldest_trans_id = get_desc_trans_id(desc);
2533 oldest_start = d_bh->b_blocknr;
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04002534 reiserfs_debug(sb, REISERFS_DEBUG_CODE,
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002535 "journal-1180: Resetting "
2536 "oldest_start to offset %lu, trans_id %lu",
2537 oldest_start -
2538 SB_ONDISK_JOURNAL_1st_BLOCK
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04002539 (sb), oldest_trans_id);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002540 }
2541 if (newest_mount_id < get_desc_mount_id(desc)) {
2542 newest_mount_id = get_desc_mount_id(desc);
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04002543 reiserfs_debug(sb, REISERFS_DEBUG_CODE,
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002544 "journal-1299: Setting "
2545 "newest_mount_id to %d",
2546 get_desc_mount_id(desc));
2547 }
2548 cur_dblock += get_desc_trans_len(desc) + 2;
2549 } else {
2550 cur_dblock++;
2551 }
2552 brelse(d_bh);
2553 }
2554
2555 start_log_replay:
2556 cur_dblock = oldest_start;
2557 if (oldest_trans_id) {
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04002558 reiserfs_debug(sb, REISERFS_DEBUG_CODE,
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002559 "journal-1206: Starting replay "
2560 "from offset %llu, trans_id %lu",
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04002561 cur_dblock - SB_ONDISK_JOURNAL_1st_BLOCK(sb),
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002562 oldest_trans_id);
2563
2564 }
2565 replay_count = 0;
2566 while (continue_replay && oldest_trans_id > 0) {
2567 ret =
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04002568 journal_read_transaction(sb, cur_dblock, oldest_start,
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002569 oldest_trans_id, newest_mount_id);
2570 if (ret < 0) {
2571 return ret;
2572 } else if (ret != 0) {
2573 break;
2574 }
2575 cur_dblock =
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04002576 SB_ONDISK_JOURNAL_1st_BLOCK(sb) + journal->j_start;
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002577 replay_count++;
2578 if (cur_dblock == oldest_start)
2579 break;
2580 }
2581
2582 if (oldest_trans_id == 0) {
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04002583 reiserfs_debug(sb, REISERFS_DEBUG_CODE,
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002584 "journal-1225: No valid " "transactions found");
2585 }
2586 /* j_start does not get set correctly if we don't replay any transactions.
2587 ** if we had a valid journal_header, set j_start to the first unflushed transaction value,
2588 ** copy the trans_id from the header
2589 */
2590 if (valid_journal_header && replay_count == 0) {
2591 journal->j_start = le32_to_cpu(jh->j_first_unflushed_offset);
2592 journal->j_trans_id =
2593 le32_to_cpu(jh->j_last_flush_trans_id) + 1;
Alexander Zarochentseva44c94a2006-03-25 03:06:59 -08002594 /* check for trans_id overflow */
2595 if (journal->j_trans_id == 0)
2596 journal->j_trans_id = 10;
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002597 journal->j_last_flush_trans_id =
2598 le32_to_cpu(jh->j_last_flush_trans_id);
2599 journal->j_mount_id = le32_to_cpu(jh->j_mount_id) + 1;
2600 } else {
2601 journal->j_mount_id = newest_mount_id + 1;
2602 }
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04002603 reiserfs_debug(sb, REISERFS_DEBUG_CODE, "journal-1299: Setting "
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002604 "newest_mount_id to %lu", journal->j_mount_id);
2605 journal->j_first_unflushed_offset = journal->j_start;
2606 if (replay_count > 0) {
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04002607 reiserfs_info(sb,
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002608 "replayed %d transactions in %lu seconds\n",
2609 replay_count, get_seconds() - start);
2610 }
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04002611 if (!bdev_read_only(sb->s_bdev) &&
2612 _update_journal_header_block(sb, journal->j_start,
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002613 journal->j_last_flush_trans_id)) {
2614 /* replay failed, caller must call free_journal_ram and abort
2615 ** the mount
2616 */
2617 return -1;
2618 }
2619 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002620}
2621
2622static struct reiserfs_journal_list *alloc_journal_list(struct super_block *s)
2623{
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002624 struct reiserfs_journal_list *jl;
Pekka Enberg8c777cc2006-02-01 03:06:43 -08002625 jl = kzalloc(sizeof(struct reiserfs_journal_list),
2626 GFP_NOFS | __GFP_NOFAIL);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002627 INIT_LIST_HEAD(&jl->j_list);
2628 INIT_LIST_HEAD(&jl->j_working_list);
2629 INIT_LIST_HEAD(&jl->j_tail_bh_list);
2630 INIT_LIST_HEAD(&jl->j_bh_list);
Jeff Mahoney90415de2008-07-25 01:46:40 -07002631 mutex_init(&jl->j_commit_mutex);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002632 SB_JOURNAL(s)->j_num_lists++;
2633 get_journal_list(jl);
2634 return jl;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002635}
2636
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04002637static void journal_list_init(struct super_block *sb)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002638{
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04002639 SB_JOURNAL(sb)->j_current_jl = alloc_journal_list(sb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002640}
2641
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002642static int release_journal_dev(struct super_block *super,
2643 struct reiserfs_journal *journal)
2644{
2645 int result;
2646
2647 result = 0;
2648
Christoph Hellwig86098fa2008-04-30 00:54:46 -07002649 if (journal->j_dev_bd != NULL) {
2650 if (journal->j_dev_bd->bd_dev != super->s_dev)
2651 bd_release(journal->j_dev_bd);
Al Viroe5eb8ca2007-10-08 13:24:05 -04002652 result = blkdev_put(journal->j_dev_bd, journal->j_dev_mode);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002653 journal->j_dev_bd = NULL;
2654 }
2655
2656 if (result != 0) {
Jeff Mahoney45b03d52009-03-30 14:02:21 -04002657 reiserfs_warning(super, "sh-457",
2658 "Cannot release journal device: %i", result);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002659 }
2660 return result;
2661}
2662
2663static int journal_init_dev(struct super_block *super,
2664 struct reiserfs_journal *journal,
2665 const char *jdev_name)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002666{
2667 int result;
2668 dev_t jdev;
Al Viroaeb5d722008-09-02 15:28:45 -04002669 fmode_t blkdev_mode = FMODE_READ | FMODE_WRITE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002670 char b[BDEVNAME_SIZE];
2671
2672 result = 0;
2673
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002674 journal->j_dev_bd = NULL;
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002675 jdev = SB_ONDISK_JOURNAL_DEVICE(super) ?
2676 new_decode_dev(SB_ONDISK_JOURNAL_DEVICE(super)) : super->s_dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002677
2678 if (bdev_read_only(super->s_bdev))
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002679 blkdev_mode = FMODE_READ;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002680
2681 /* there is no "jdev" option and journal is on separate device */
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002682 if ((!jdev_name || !jdev_name[0])) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002683 journal->j_dev_bd = open_by_devnum(jdev, blkdev_mode);
Al Viroe5eb8ca2007-10-08 13:24:05 -04002684 journal->j_dev_mode = blkdev_mode;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002685 if (IS_ERR(journal->j_dev_bd)) {
2686 result = PTR_ERR(journal->j_dev_bd);
2687 journal->j_dev_bd = NULL;
Jeff Mahoney45b03d52009-03-30 14:02:21 -04002688 reiserfs_warning(super, "sh-458",
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002689 "cannot init journal device '%s': %i",
2690 __bdevname(jdev, b), result);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002691 return result;
Christoph Hellwig86098fa2008-04-30 00:54:46 -07002692 } else if (jdev != super->s_dev) {
2693 result = bd_claim(journal->j_dev_bd, journal);
2694 if (result) {
Al Viro9a1c3542008-02-22 20:40:24 -05002695 blkdev_put(journal->j_dev_bd, blkdev_mode);
Christoph Hellwig86098fa2008-04-30 00:54:46 -07002696 return result;
2697 }
2698
Linus Torvalds1da177e2005-04-16 15:20:36 -07002699 set_blocksize(journal->j_dev_bd, super->s_blocksize);
Christoph Hellwig86098fa2008-04-30 00:54:46 -07002700 }
2701
Linus Torvalds1da177e2005-04-16 15:20:36 -07002702 return 0;
2703 }
2704
Al Viroe5eb8ca2007-10-08 13:24:05 -04002705 journal->j_dev_mode = blkdev_mode;
Al Viro30c40d22008-02-22 19:50:45 -05002706 journal->j_dev_bd = open_bdev_exclusive(jdev_name,
Al Viroe5eb8ca2007-10-08 13:24:05 -04002707 blkdev_mode, journal);
Christoph Hellwig86098fa2008-04-30 00:54:46 -07002708 if (IS_ERR(journal->j_dev_bd)) {
2709 result = PTR_ERR(journal->j_dev_bd);
2710 journal->j_dev_bd = NULL;
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002711 reiserfs_warning(super,
2712 "journal_init_dev: Cannot open '%s': %i",
2713 jdev_name, result);
Christoph Hellwig86098fa2008-04-30 00:54:46 -07002714 return result;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002715 }
Christoph Hellwig86098fa2008-04-30 00:54:46 -07002716
2717 set_blocksize(journal->j_dev_bd, super->s_blocksize);
2718 reiserfs_info(super,
2719 "journal_init_dev: journal device: %s\n",
2720 bdevname(journal->j_dev_bd, b));
2721 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002722}
2723
Edward Shishkincf3d0b82007-10-16 23:30:30 -07002724/**
2725 * When creating/tuning a file system user can assign some
2726 * journal params within boundaries which depend on the ratio
2727 * blocksize/standard_blocksize.
2728 *
2729 * For blocks >= standard_blocksize transaction size should
2730 * be not less then JOURNAL_TRANS_MIN_DEFAULT, and not more
2731 * then JOURNAL_TRANS_MAX_DEFAULT.
2732 *
2733 * For blocks < standard_blocksize these boundaries should be
2734 * decreased proportionally.
2735 */
2736#define REISERFS_STANDARD_BLKSIZE (4096)
2737
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04002738static int check_advise_trans_params(struct super_block *sb,
Edward Shishkincf3d0b82007-10-16 23:30:30 -07002739 struct reiserfs_journal *journal)
2740{
2741 if (journal->j_trans_max) {
2742 /* Non-default journal params.
2743 Do sanity check for them. */
2744 int ratio = 1;
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04002745 if (sb->s_blocksize < REISERFS_STANDARD_BLKSIZE)
2746 ratio = REISERFS_STANDARD_BLKSIZE / sb->s_blocksize;
Edward Shishkincf3d0b82007-10-16 23:30:30 -07002747
2748 if (journal->j_trans_max > JOURNAL_TRANS_MAX_DEFAULT / ratio ||
2749 journal->j_trans_max < JOURNAL_TRANS_MIN_DEFAULT / ratio ||
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04002750 SB_ONDISK_JOURNAL_SIZE(sb) / journal->j_trans_max <
Edward Shishkincf3d0b82007-10-16 23:30:30 -07002751 JOURNAL_MIN_RATIO) {
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04002752 reiserfs_warning(sb, "sh-462",
Jeff Mahoney45b03d52009-03-30 14:02:21 -04002753 "bad transaction max size (%u). "
2754 "FSCK?", journal->j_trans_max);
Edward Shishkincf3d0b82007-10-16 23:30:30 -07002755 return 1;
2756 }
2757 if (journal->j_max_batch != (journal->j_trans_max) *
2758 JOURNAL_MAX_BATCH_DEFAULT/JOURNAL_TRANS_MAX_DEFAULT) {
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04002759 reiserfs_warning(sb, "sh-463",
Jeff Mahoney45b03d52009-03-30 14:02:21 -04002760 "bad transaction max batch (%u). "
2761 "FSCK?", journal->j_max_batch);
Edward Shishkincf3d0b82007-10-16 23:30:30 -07002762 return 1;
2763 }
2764 } else {
2765 /* Default journal params.
2766 The file system was created by old version
2767 of mkreiserfs, so some fields contain zeros,
2768 and we need to advise proper values for them */
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04002769 if (sb->s_blocksize != REISERFS_STANDARD_BLKSIZE) {
2770 reiserfs_warning(sb, "sh-464", "bad blocksize (%u)",
2771 sb->s_blocksize);
Jeff Mahoney45b03d52009-03-30 14:02:21 -04002772 return 1;
2773 }
Edward Shishkincf3d0b82007-10-16 23:30:30 -07002774 journal->j_trans_max = JOURNAL_TRANS_MAX_DEFAULT;
2775 journal->j_max_batch = JOURNAL_MAX_BATCH_DEFAULT;
2776 journal->j_max_commit_age = JOURNAL_MAX_COMMIT_AGE;
2777 }
2778 return 0;
2779}
2780
Linus Torvalds1da177e2005-04-16 15:20:36 -07002781/*
2782** must be called once on fs mount. calls journal_read for you
2783*/
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04002784int journal_init(struct super_block *sb, const char *j_dev_name,
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002785 int old_format, unsigned int commit_max_age)
2786{
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04002787 int num_cnodes = SB_ONDISK_JOURNAL_SIZE(sb) * 2;
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002788 struct buffer_head *bhjh;
2789 struct reiserfs_super_block *rs;
2790 struct reiserfs_journal_header *jh;
2791 struct reiserfs_journal *journal;
2792 struct reiserfs_journal_list *jl;
2793 char b[BDEVNAME_SIZE];
Linus Torvalds1da177e2005-04-16 15:20:36 -07002794
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04002795 journal = SB_JOURNAL(sb) = vmalloc(sizeof(struct reiserfs_journal));
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002796 if (!journal) {
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04002797 reiserfs_warning(sb, "journal-1256",
Jeff Mahoney45b03d52009-03-30 14:02:21 -04002798 "unable to get memory for journal structure");
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002799 return 1;
2800 }
2801 memset(journal, 0, sizeof(struct reiserfs_journal));
2802 INIT_LIST_HEAD(&journal->j_bitmap_nodes);
2803 INIT_LIST_HEAD(&journal->j_prealloc_list);
2804 INIT_LIST_HEAD(&journal->j_working_list);
2805 INIT_LIST_HEAD(&journal->j_journal_list);
2806 journal->j_persistent_trans = 0;
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04002807 if (reiserfs_allocate_list_bitmaps(sb,
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002808 journal->j_list_bitmap,
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04002809 reiserfs_bmap_count(sb)))
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002810 goto free_and_return;
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04002811 allocate_bitmap_nodes(sb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002812
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002813 /* reserved for journal area support */
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04002814 SB_JOURNAL_1st_RESERVED_BLOCK(sb) = (old_format ?
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002815 REISERFS_OLD_DISK_OFFSET_IN_BYTES
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04002816 / sb->s_blocksize +
2817 reiserfs_bmap_count(sb) +
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002818 1 :
2819 REISERFS_DISK_OFFSET_IN_BYTES /
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04002820 sb->s_blocksize + 2);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002821
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002822 /* Sanity check to see is the standard journal fitting withing first bitmap
2823 (actual for small blocksizes) */
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04002824 if (!SB_ONDISK_JOURNAL_DEVICE(sb) &&
2825 (SB_JOURNAL_1st_RESERVED_BLOCK(sb) +
2826 SB_ONDISK_JOURNAL_SIZE(sb) > sb->s_blocksize * 8)) {
2827 reiserfs_warning(sb, "journal-1393",
Jeff Mahoney45b03d52009-03-30 14:02:21 -04002828 "journal does not fit for area addressed "
2829 "by first of bitmap blocks. It starts at "
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002830 "%u and its size is %u. Block size %ld",
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04002831 SB_JOURNAL_1st_RESERVED_BLOCK(sb),
2832 SB_ONDISK_JOURNAL_SIZE(sb),
2833 sb->s_blocksize);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002834 goto free_and_return;
2835 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002836
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04002837 if (journal_init_dev(sb, journal, j_dev_name) != 0) {
2838 reiserfs_warning(sb, "sh-462",
Jeff Mahoney45b03d52009-03-30 14:02:21 -04002839 "unable to initialize jornal device");
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002840 goto free_and_return;
2841 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002842
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04002843 rs = SB_DISK_SUPER_BLOCK(sb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002844
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002845 /* read journal header */
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04002846 bhjh = journal_bread(sb,
2847 SB_ONDISK_JOURNAL_1st_BLOCK(sb) +
2848 SB_ONDISK_JOURNAL_SIZE(sb));
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002849 if (!bhjh) {
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04002850 reiserfs_warning(sb, "sh-459",
Jeff Mahoney45b03d52009-03-30 14:02:21 -04002851 "unable to read journal header");
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002852 goto free_and_return;
2853 }
2854 jh = (struct reiserfs_journal_header *)(bhjh->b_data);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002855
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002856 /* make sure that journal matches to the super block */
2857 if (is_reiserfs_jr(rs)
2858 && (le32_to_cpu(jh->jh_journal.jp_journal_magic) !=
2859 sb_jp_journal_magic(rs))) {
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04002860 reiserfs_warning(sb, "sh-460",
Jeff Mahoney45b03d52009-03-30 14:02:21 -04002861 "journal header magic %x (device %s) does "
2862 "not match to magic found in super block %x",
2863 jh->jh_journal.jp_journal_magic,
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002864 bdevname(journal->j_dev_bd, b),
2865 sb_jp_journal_magic(rs));
2866 brelse(bhjh);
2867 goto free_and_return;
2868 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002869
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002870 journal->j_trans_max = le32_to_cpu(jh->jh_journal.jp_journal_trans_max);
2871 journal->j_max_batch = le32_to_cpu(jh->jh_journal.jp_journal_max_batch);
2872 journal->j_max_commit_age =
2873 le32_to_cpu(jh->jh_journal.jp_journal_max_commit_age);
2874 journal->j_max_trans_age = JOURNAL_MAX_TRANS_AGE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002875
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04002876 if (check_advise_trans_params(sb, journal) != 0)
Edward Shishkincf3d0b82007-10-16 23:30:30 -07002877 goto free_and_return;
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002878 journal->j_default_max_commit_age = journal->j_max_commit_age;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002879
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002880 if (commit_max_age != 0) {
2881 journal->j_max_commit_age = commit_max_age;
2882 journal->j_max_trans_age = commit_max_age;
2883 }
2884
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04002885 reiserfs_info(sb, "journal params: device %s, size %u, "
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002886 "journal first block %u, max trans len %u, max batch %u, "
2887 "max commit age %u, max trans age %u\n",
2888 bdevname(journal->j_dev_bd, b),
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04002889 SB_ONDISK_JOURNAL_SIZE(sb),
2890 SB_ONDISK_JOURNAL_1st_BLOCK(sb),
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002891 journal->j_trans_max,
2892 journal->j_max_batch,
2893 journal->j_max_commit_age, journal->j_max_trans_age);
2894
2895 brelse(bhjh);
2896
2897 journal->j_list_bitmap_index = 0;
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04002898 journal_list_init(sb);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002899
2900 memset(journal->j_list_hash_table, 0,
2901 JOURNAL_HASH_SIZE * sizeof(struct reiserfs_journal_cnode *));
2902
2903 INIT_LIST_HEAD(&journal->j_dirty_buffers);
2904 spin_lock_init(&journal->j_dirty_buffers_lock);
2905
2906 journal->j_start = 0;
2907 journal->j_len = 0;
2908 journal->j_len_alloc = 0;
2909 atomic_set(&(journal->j_wcount), 0);
2910 atomic_set(&(journal->j_async_throttle), 0);
2911 journal->j_bcount = 0;
2912 journal->j_trans_start_time = 0;
2913 journal->j_last = NULL;
2914 journal->j_first = NULL;
2915 init_waitqueue_head(&(journal->j_join_wait));
Jeff Mahoneyf68215c2008-07-25 01:46:38 -07002916 mutex_init(&journal->j_mutex);
Jeff Mahoneyafe70252008-07-25 01:46:39 -07002917 mutex_init(&journal->j_flush_mutex);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002918
2919 journal->j_trans_id = 10;
2920 journal->j_mount_id = 10;
2921 journal->j_state = 0;
2922 atomic_set(&(journal->j_jlock), 0);
2923 journal->j_cnode_free_list = allocate_cnodes(num_cnodes);
2924 journal->j_cnode_free_orig = journal->j_cnode_free_list;
2925 journal->j_cnode_free = journal->j_cnode_free_list ? num_cnodes : 0;
2926 journal->j_cnode_used = 0;
2927 journal->j_must_wait = 0;
2928
Jeff Mahoney576f6d72005-11-29 19:34:39 -08002929 if (journal->j_cnode_free == 0) {
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04002930 reiserfs_warning(sb, "journal-2004", "Journal cnode memory "
Jeff Mahoney576f6d72005-11-29 19:34:39 -08002931 "allocation failed (%ld bytes). Journal is "
2932 "too large for available memory. Usually "
2933 "this is due to a journal that is too large.",
2934 sizeof (struct reiserfs_journal_cnode) * num_cnodes);
2935 goto free_and_return;
2936 }
2937
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04002938 init_journal_hash(sb);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002939 jl = journal->j_current_jl;
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04002940 jl->j_list_bitmap = get_list_bitmap(sb, jl);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002941 if (!jl->j_list_bitmap) {
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04002942 reiserfs_warning(sb, "journal-2005",
Jeff Mahoney45b03d52009-03-30 14:02:21 -04002943 "get_list_bitmap failed for journal list 0");
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002944 goto free_and_return;
2945 }
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04002946 if (journal_read(sb) < 0) {
2947 reiserfs_warning(sb, "reiserfs-2006",
Jeff Mahoney45b03d52009-03-30 14:02:21 -04002948 "Replay Failure, unable to mount");
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002949 goto free_and_return;
2950 }
2951
2952 reiserfs_mounted_fs_count++;
2953 if (reiserfs_mounted_fs_count <= 1)
2954 commit_wq = create_workqueue("reiserfs");
2955
David Howellsc4028952006-11-22 14:57:56 +00002956 INIT_DELAYED_WORK(&journal->j_work, flush_async_commits);
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04002957 journal->j_work_sb = sb;
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002958 return 0;
2959 free_and_return:
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04002960 free_journal_ram(sb);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002961 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002962}
2963
2964/*
2965** test for a polite end of the current transaction. Used by file_write, and should
2966** be used by delete to make sure they don't write more than can fit inside a single
2967** transaction
2968*/
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002969int journal_transaction_should_end(struct reiserfs_transaction_handle *th,
2970 int new_alloc)
2971{
2972 struct reiserfs_journal *journal = SB_JOURNAL(th->t_super);
2973 time_t now = get_seconds();
2974 /* cannot restart while nested */
2975 BUG_ON(!th->t_trans_id);
2976 if (th->t_refcount > 1)
2977 return 0;
2978 if (journal->j_must_wait > 0 ||
2979 (journal->j_len_alloc + new_alloc) >= journal->j_max_batch ||
2980 atomic_read(&(journal->j_jlock)) ||
2981 (now - journal->j_trans_start_time) > journal->j_max_trans_age ||
2982 journal->j_cnode_free < (journal->j_trans_max * 3)) {
2983 return 1;
2984 }
Chris Mason6ae1ea42006-02-01 03:06:50 -08002985 /* protected by the BKL here */
2986 journal->j_len_alloc += new_alloc;
2987 th->t_blocks_allocated += new_alloc ;
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002988 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002989}
2990
Jeff Mahoney0222e652009-03-30 14:02:44 -04002991/* this must be called inside a transaction, and requires the
Linus Torvalds1da177e2005-04-16 15:20:36 -07002992** kernel_lock to be held
2993*/
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002994void reiserfs_block_writes(struct reiserfs_transaction_handle *th)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002995{
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002996 struct reiserfs_journal *journal = SB_JOURNAL(th->t_super);
2997 BUG_ON(!th->t_trans_id);
2998 journal->j_must_wait = 1;
2999 set_bit(J_WRITERS_BLOCKED, &journal->j_state);
3000 return;
3001}
3002
3003/* this must be called without a transaction started, and does not
3004** require BKL
3005*/
3006void reiserfs_allow_writes(struct super_block *s)
3007{
3008 struct reiserfs_journal *journal = SB_JOURNAL(s);
3009 clear_bit(J_WRITERS_BLOCKED, &journal->j_state);
3010 wake_up(&journal->j_join_wait);
3011}
3012
3013/* this must be called without a transaction started, and does not
3014** require BKL
3015*/
3016void reiserfs_wait_on_write_block(struct super_block *s)
3017{
3018 struct reiserfs_journal *journal = SB_JOURNAL(s);
3019 wait_event(journal->j_join_wait,
3020 !test_bit(J_WRITERS_BLOCKED, &journal->j_state));
3021}
3022
3023static void queue_log_writer(struct super_block *s)
3024{
3025 wait_queue_t wait;
3026 struct reiserfs_journal *journal = SB_JOURNAL(s);
3027 set_bit(J_WRITERS_QUEUED, &journal->j_state);
3028
3029 /*
3030 * we don't want to use wait_event here because
3031 * we only want to wait once.
3032 */
3033 init_waitqueue_entry(&wait, current);
3034 add_wait_queue(&journal->j_join_wait, &wait);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003035 set_current_state(TASK_UNINTERRUPTIBLE);
Frederic Weisbecker8ebc4232009-04-07 04:19:49 +02003036 if (test_bit(J_WRITERS_QUEUED, &journal->j_state)) {
3037 reiserfs_write_unlock(s);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003038 schedule();
Frederic Weisbecker8ebc4232009-04-07 04:19:49 +02003039 reiserfs_write_lock(s);
3040 }
Milind Arun Choudhary5ab2f7e2007-05-08 00:30:51 -07003041 __set_current_state(TASK_RUNNING);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003042 remove_wait_queue(&journal->j_join_wait, &wait);
3043}
3044
3045static void wake_queued_writers(struct super_block *s)
3046{
3047 struct reiserfs_journal *journal = SB_JOURNAL(s);
3048 if (test_and_clear_bit(J_WRITERS_QUEUED, &journal->j_state))
3049 wake_up(&journal->j_join_wait);
3050}
3051
Jeff Mahoney600ed412009-03-30 14:02:17 -04003052static void let_transaction_grow(struct super_block *sb, unsigned int trans_id)
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003053{
3054 struct reiserfs_journal *journal = SB_JOURNAL(sb);
3055 unsigned long bcount = journal->j_bcount;
3056 while (1) {
Frederic Weisbecker8ebc4232009-04-07 04:19:49 +02003057 reiserfs_write_unlock(sb);
Nishanth Aravamudan041e0e32005-09-10 00:27:23 -07003058 schedule_timeout_uninterruptible(1);
Frederic Weisbecker8ebc4232009-04-07 04:19:49 +02003059 reiserfs_write_lock(sb);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003060 journal->j_current_jl->j_state |= LIST_COMMIT_PENDING;
3061 while ((atomic_read(&journal->j_wcount) > 0 ||
3062 atomic_read(&journal->j_jlock)) &&
3063 journal->j_trans_id == trans_id) {
3064 queue_log_writer(sb);
3065 }
3066 if (journal->j_trans_id != trans_id)
3067 break;
3068 if (bcount == journal->j_bcount)
3069 break;
3070 bcount = journal->j_bcount;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003071 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003072}
3073
3074/* join == true if you must join an existing transaction.
3075** join == false if you can deal with waiting for others to finish
3076**
3077** this will block until the transaction is joinable. send the number of blocks you
3078** expect to use in nblocks.
3079*/
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003080static int do_journal_begin_r(struct reiserfs_transaction_handle *th,
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04003081 struct super_block *sb, unsigned long nblocks,
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003082 int join)
3083{
3084 time_t now = get_seconds();
Jeff Mahoney600ed412009-03-30 14:02:17 -04003085 unsigned int old_trans_id;
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04003086 struct reiserfs_journal *journal = SB_JOURNAL(sb);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003087 struct reiserfs_transaction_handle myth;
3088 int sched_count = 0;
3089 int retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003090
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04003091 reiserfs_check_lock_depth(sb, "journal_begin");
Eric Sesterhenn14a61442006-10-03 23:36:38 +02003092 BUG_ON(nblocks > journal->j_trans_max);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003093
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04003094 PROC_INFO_INC(sb, journal.journal_being);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003095 /* set here for journal_join */
3096 th->t_refcount = 1;
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04003097 th->t_super = sb;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003098
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003099 relock:
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04003100 lock_journal(sb);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003101 if (join != JBEGIN_ABORT && reiserfs_is_journal_aborted(journal)) {
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04003102 unlock_journal(sb);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003103 retval = journal->j_errno;
3104 goto out_fail;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003105 }
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003106 journal->j_bcount++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003107
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003108 if (test_bit(J_WRITERS_BLOCKED, &journal->j_state)) {
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04003109 unlock_journal(sb);
Frederic Weisbecker8ebc4232009-04-07 04:19:49 +02003110 reiserfs_write_unlock(sb);
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04003111 reiserfs_wait_on_write_block(sb);
Frederic Weisbecker8ebc4232009-04-07 04:19:49 +02003112 reiserfs_write_lock(sb);
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04003113 PROC_INFO_INC(sb, journal.journal_relock_writers);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003114 goto relock;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003115 }
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003116 now = get_seconds();
Linus Torvalds1da177e2005-04-16 15:20:36 -07003117
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003118 /* if there is no room in the journal OR
Jeff Mahoney0222e652009-03-30 14:02:44 -04003119 ** 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 -07003120 ** we don't sleep if there aren't other writers
3121 */
3122
3123 if ((!join && journal->j_must_wait > 0) ||
3124 (!join
3125 && (journal->j_len_alloc + nblocks + 2) >= journal->j_max_batch)
3126 || (!join && atomic_read(&journal->j_wcount) > 0
3127 && journal->j_trans_start_time > 0
3128 && (now - journal->j_trans_start_time) >
3129 journal->j_max_trans_age) || (!join
3130 && atomic_read(&journal->j_jlock))
3131 || (!join && journal->j_cnode_free < (journal->j_trans_max * 3))) {
3132
3133 old_trans_id = journal->j_trans_id;
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04003134 unlock_journal(sb); /* allow others to finish this transaction */
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003135
3136 if (!join && (journal->j_len_alloc + nblocks + 2) >=
3137 journal->j_max_batch &&
3138 ((journal->j_len + nblocks + 2) * 100) <
3139 (journal->j_len_alloc * 75)) {
3140 if (atomic_read(&journal->j_wcount) > 10) {
3141 sched_count++;
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04003142 queue_log_writer(sb);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003143 goto relock;
3144 }
3145 }
3146 /* don't mess with joining the transaction if all we have to do is
3147 * wait for someone else to do a commit
3148 */
3149 if (atomic_read(&journal->j_jlock)) {
3150 while (journal->j_trans_id == old_trans_id &&
3151 atomic_read(&journal->j_jlock)) {
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04003152 queue_log_writer(sb);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003153 }
3154 goto relock;
3155 }
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04003156 retval = journal_join(&myth, sb, 1);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003157 if (retval)
3158 goto out_fail;
3159
3160 /* someone might have ended the transaction while we joined */
3161 if (old_trans_id != journal->j_trans_id) {
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04003162 retval = do_journal_end(&myth, sb, 1, 0);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003163 } else {
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04003164 retval = do_journal_end(&myth, sb, 1, COMMIT_NOW);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003165 }
3166
3167 if (retval)
3168 goto out_fail;
3169
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04003170 PROC_INFO_INC(sb, journal.journal_relock_wcount);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003171 goto relock;
3172 }
3173 /* we are the first writer, set trans_id */
3174 if (journal->j_trans_start_time == 0) {
3175 journal->j_trans_start_time = get_seconds();
3176 }
3177 atomic_inc(&(journal->j_wcount));
3178 journal->j_len_alloc += nblocks;
3179 th->t_blocks_logged = 0;
3180 th->t_blocks_allocated = nblocks;
3181 th->t_trans_id = journal->j_trans_id;
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04003182 unlock_journal(sb);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003183 INIT_LIST_HEAD(&th->t_list);
3184 get_fs_excl();
3185 return 0;
3186
3187 out_fail:
3188 memset(th, 0, sizeof(*th));
3189 /* Re-set th->t_super, so we can properly keep track of how many
3190 * persistent transactions there are. We need to do this so if this
3191 * call is part of a failed restart_transaction, we can free it later */
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04003192 th->t_super = sb;
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003193 return retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003194}
3195
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003196struct reiserfs_transaction_handle *reiserfs_persistent_transaction(struct
3197 super_block
3198 *s,
3199 int nblocks)
3200{
3201 int ret;
3202 struct reiserfs_transaction_handle *th;
3203
3204 /* if we're nesting into an existing transaction. It will be
3205 ** persistent on its own
3206 */
3207 if (reiserfs_transaction_running(s)) {
3208 th = current->journal_info;
3209 th->t_refcount++;
Eric Sesterhenn14a61442006-10-03 23:36:38 +02003210 BUG_ON(th->t_refcount < 2);
3211
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003212 return th;
3213 }
Pekka Enbergd739b422006-02-01 03:06:43 -08003214 th = kmalloc(sizeof(struct reiserfs_transaction_handle), GFP_NOFS);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003215 if (!th)
3216 return NULL;
3217 ret = journal_begin(th, s, nblocks);
3218 if (ret) {
Pekka Enbergd739b422006-02-01 03:06:43 -08003219 kfree(th);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003220 return NULL;
3221 }
3222
3223 SB_JOURNAL(s)->j_persistent_trans++;
3224 return th;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003225}
3226
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003227int reiserfs_end_persistent_transaction(struct reiserfs_transaction_handle *th)
3228{
3229 struct super_block *s = th->t_super;
3230 int ret = 0;
3231 if (th->t_trans_id)
3232 ret = journal_end(th, th->t_super, th->t_blocks_allocated);
3233 else
3234 ret = -EIO;
3235 if (th->t_refcount == 0) {
3236 SB_JOURNAL(s)->j_persistent_trans--;
Pekka Enbergd739b422006-02-01 03:06:43 -08003237 kfree(th);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003238 }
3239 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003240}
3241
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003242static int journal_join(struct reiserfs_transaction_handle *th,
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04003243 struct super_block *sb, unsigned long nblocks)
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003244{
3245 struct reiserfs_transaction_handle *cur_th = current->journal_info;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003246
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003247 /* this keeps do_journal_end from NULLing out the current->journal_info
3248 ** pointer
3249 */
3250 th->t_handle_save = cur_th;
Eric Sesterhenn14a61442006-10-03 23:36:38 +02003251 BUG_ON(cur_th && cur_th->t_refcount > 1);
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04003252 return do_journal_begin_r(th, sb, nblocks, JBEGIN_JOIN);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003253}
3254
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003255int journal_join_abort(struct reiserfs_transaction_handle *th,
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04003256 struct super_block *sb, unsigned long nblocks)
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003257{
3258 struct reiserfs_transaction_handle *cur_th = current->journal_info;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003259
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003260 /* this keeps do_journal_end from NULLing out the current->journal_info
3261 ** pointer
3262 */
3263 th->t_handle_save = cur_th;
Eric Sesterhenn14a61442006-10-03 23:36:38 +02003264 BUG_ON(cur_th && cur_th->t_refcount > 1);
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04003265 return do_journal_begin_r(th, sb, nblocks, JBEGIN_ABORT);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003266}
3267
3268int journal_begin(struct reiserfs_transaction_handle *th,
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04003269 struct super_block *sb, unsigned long nblocks)
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003270{
3271 struct reiserfs_transaction_handle *cur_th = current->journal_info;
3272 int ret;
3273
3274 th->t_handle_save = NULL;
3275 if (cur_th) {
3276 /* we are nesting into the current transaction */
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04003277 if (cur_th->t_super == sb) {
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003278 BUG_ON(!cur_th->t_refcount);
3279 cur_th->t_refcount++;
3280 memcpy(th, cur_th, sizeof(*th));
3281 if (th->t_refcount <= 1)
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04003282 reiserfs_warning(sb, "reiserfs-2005",
Jeff Mahoney45b03d52009-03-30 14:02:21 -04003283 "BAD: refcount <= 1, but "
3284 "journal_info != 0");
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003285 return 0;
3286 } else {
3287 /* we've ended up with a handle from a different filesystem.
3288 ** save it and restore on journal_end. This should never
3289 ** really happen...
3290 */
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04003291 reiserfs_warning(sb, "clm-2100",
Jeff Mahoney45b03d52009-03-30 14:02:21 -04003292 "nesting info a different FS");
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003293 th->t_handle_save = current->journal_info;
3294 current->journal_info = th;
3295 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003296 } else {
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003297 current->journal_info = th;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003298 }
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04003299 ret = do_journal_begin_r(th, sb, nblocks, JBEGIN_REG);
Eric Sesterhenn14a61442006-10-03 23:36:38 +02003300 BUG_ON(current->journal_info != th);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003301
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003302 /* I guess this boils down to being the reciprocal of clm-2100 above.
3303 * If do_journal_begin_r fails, we need to put it back, since journal_end
3304 * won't be called to do it. */
3305 if (ret)
3306 current->journal_info = th->t_handle_save;
3307 else
3308 BUG_ON(!th->t_refcount);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003309
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003310 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003311}
3312
3313/*
3314** puts bh into the current transaction. If it was already there, reorders removes the
3315** old pointers from the hash, and puts new ones in (to make sure replay happen in the right order).
3316**
3317** if it was dirty, cleans and files onto the clean list. I can't let it be dirty again until the
3318** transaction is committed.
Jeff Mahoney0222e652009-03-30 14:02:44 -04003319**
Linus Torvalds1da177e2005-04-16 15:20:36 -07003320** if j_len, is bigger than j_len_alloc, it pushes j_len_alloc to 10 + j_len.
3321*/
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003322int journal_mark_dirty(struct reiserfs_transaction_handle *th,
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04003323 struct super_block *sb, struct buffer_head *bh)
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003324{
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04003325 struct reiserfs_journal *journal = SB_JOURNAL(sb);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003326 struct reiserfs_journal_cnode *cn = NULL;
3327 int count_already_incd = 0;
3328 int prepared = 0;
3329 BUG_ON(!th->t_trans_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003330
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04003331 PROC_INFO_INC(sb, journal.mark_dirty);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003332 if (th->t_trans_id != journal->j_trans_id) {
Jeff Mahoneyc3a9c212009-03-30 14:02:25 -04003333 reiserfs_panic(th->t_super, "journal-1577",
3334 "handle trans id %ld != current trans id %ld",
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003335 th->t_trans_id, journal->j_trans_id);
3336 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003337
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04003338 sb->s_dirt = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003339
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003340 prepared = test_clear_buffer_journal_prepared(bh);
3341 clear_buffer_journal_restore_dirty(bh);
3342 /* already in this transaction, we are done */
3343 if (buffer_journaled(bh)) {
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04003344 PROC_INFO_INC(sb, journal.mark_dirty_already);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003345 return 0;
3346 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003347
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003348 /* this must be turned into a panic instead of a warning. We can't allow
3349 ** a dirty or journal_dirty or locked buffer to be logged, as some changes
3350 ** could get to disk too early. NOT GOOD.
3351 */
3352 if (!prepared || buffer_dirty(bh)) {
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04003353 reiserfs_warning(sb, "journal-1777",
Jeff Mahoney45b03d52009-03-30 14:02:21 -04003354 "buffer %llu bad state "
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003355 "%cPREPARED %cLOCKED %cDIRTY %cJDIRTY_WAIT",
3356 (unsigned long long)bh->b_blocknr,
3357 prepared ? ' ' : '!',
3358 buffer_locked(bh) ? ' ' : '!',
3359 buffer_dirty(bh) ? ' ' : '!',
3360 buffer_journal_dirty(bh) ? ' ' : '!');
3361 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003362
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003363 if (atomic_read(&(journal->j_wcount)) <= 0) {
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04003364 reiserfs_warning(sb, "journal-1409",
Jeff Mahoney45b03d52009-03-30 14:02:21 -04003365 "returning because j_wcount was %d",
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003366 atomic_read(&(journal->j_wcount)));
3367 return 1;
3368 }
Jeff Mahoney0222e652009-03-30 14:02:44 -04003369 /* this error means I've screwed up, and we've overflowed the transaction.
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003370 ** Nothing can be done here, except make the FS readonly or panic.
3371 */
3372 if (journal->j_len >= journal->j_trans_max) {
Jeff Mahoneyc3a9c212009-03-30 14:02:25 -04003373 reiserfs_panic(th->t_super, "journal-1413",
3374 "j_len (%lu) is too big",
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003375 journal->j_len);
3376 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003377
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003378 if (buffer_journal_dirty(bh)) {
3379 count_already_incd = 1;
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04003380 PROC_INFO_INC(sb, journal.mark_dirty_notjournal);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003381 clear_buffer_journal_dirty(bh);
3382 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003383
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003384 if (journal->j_len > journal->j_len_alloc) {
3385 journal->j_len_alloc = journal->j_len + JOURNAL_PER_BALANCE_CNT;
3386 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003387
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003388 set_buffer_journaled(bh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003389
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003390 /* now put this guy on the end */
3391 if (!cn) {
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04003392 cn = get_cnode(sb);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003393 if (!cn) {
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04003394 reiserfs_panic(sb, "journal-4", "get_cnode failed!");
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003395 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003396
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003397 if (th->t_blocks_logged == th->t_blocks_allocated) {
3398 th->t_blocks_allocated += JOURNAL_PER_BALANCE_CNT;
3399 journal->j_len_alloc += JOURNAL_PER_BALANCE_CNT;
3400 }
3401 th->t_blocks_logged++;
3402 journal->j_len++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003403
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003404 cn->bh = bh;
3405 cn->blocknr = bh->b_blocknr;
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04003406 cn->sb = sb;
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003407 cn->jlist = NULL;
3408 insert_journal_hash(journal->j_hash_table, cn);
3409 if (!count_already_incd) {
3410 get_bh(bh);
3411 }
3412 }
3413 cn->next = NULL;
3414 cn->prev = journal->j_last;
3415 cn->bh = bh;
3416 if (journal->j_last) {
3417 journal->j_last->next = cn;
3418 journal->j_last = cn;
3419 } else {
3420 journal->j_first = cn;
3421 journal->j_last = cn;
3422 }
3423 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003424}
3425
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003426int journal_end(struct reiserfs_transaction_handle *th,
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04003427 struct super_block *sb, unsigned long nblocks)
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003428{
3429 if (!current->journal_info && th->t_refcount > 1)
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04003430 reiserfs_warning(sb, "REISER-NESTING",
Jeff Mahoney45b03d52009-03-30 14:02:21 -04003431 "th NULL, refcount %d", th->t_refcount);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003432
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003433 if (!th->t_trans_id) {
3434 WARN_ON(1);
3435 return -EIO;
3436 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003437
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003438 th->t_refcount--;
3439 if (th->t_refcount > 0) {
3440 struct reiserfs_transaction_handle *cur_th =
3441 current->journal_info;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003442
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003443 /* we aren't allowed to close a nested transaction on a different
3444 ** filesystem from the one in the task struct
3445 */
Eric Sesterhenn14a61442006-10-03 23:36:38 +02003446 BUG_ON(cur_th->t_super != th->t_super);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003447
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003448 if (th != cur_th) {
3449 memcpy(current->journal_info, th, sizeof(*th));
3450 th->t_trans_id = 0;
3451 }
3452 return 0;
3453 } else {
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04003454 return do_journal_end(th, sb, nblocks, 0);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003455 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003456}
3457
Jeff Mahoney0222e652009-03-30 14:02:44 -04003458/* removes from the current transaction, relsing and descrementing any counters.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003459** also files the removed buffer directly onto the clean list
3460**
3461** called by journal_mark_freed when a block has been deleted
3462**
3463** returns 1 if it cleaned and relsed the buffer. 0 otherwise
3464*/
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04003465static int remove_from_transaction(struct super_block *sb,
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003466 b_blocknr_t blocknr, int already_cleaned)
3467{
3468 struct buffer_head *bh;
3469 struct reiserfs_journal_cnode *cn;
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04003470 struct reiserfs_journal *journal = SB_JOURNAL(sb);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003471 int ret = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003472
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04003473 cn = get_journal_hash_dev(sb, journal->j_hash_table, blocknr);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003474 if (!cn || !cn->bh) {
3475 return ret;
3476 }
3477 bh = cn->bh;
3478 if (cn->prev) {
3479 cn->prev->next = cn->next;
3480 }
3481 if (cn->next) {
3482 cn->next->prev = cn->prev;
3483 }
3484 if (cn == journal->j_first) {
3485 journal->j_first = cn->next;
3486 }
3487 if (cn == journal->j_last) {
3488 journal->j_last = cn->prev;
3489 }
3490 if (bh)
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04003491 remove_journal_hash(sb, journal->j_hash_table, NULL,
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003492 bh->b_blocknr, 0);
3493 clear_buffer_journaled(bh); /* don't log this one */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003494
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003495 if (!already_cleaned) {
3496 clear_buffer_journal_dirty(bh);
3497 clear_buffer_dirty(bh);
3498 clear_buffer_journal_test(bh);
3499 put_bh(bh);
3500 if (atomic_read(&(bh->b_count)) < 0) {
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04003501 reiserfs_warning(sb, "journal-1752",
Jeff Mahoney45b03d52009-03-30 14:02:21 -04003502 "b_count < 0");
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003503 }
3504 ret = 1;
3505 }
3506 journal->j_len--;
3507 journal->j_len_alloc--;
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04003508 free_cnode(sb, cn);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003509 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003510}
3511
3512/*
3513** for any cnode in a journal list, it can only be dirtied of all the
Matt LaPlante0779bf22006-11-30 05:24:39 +01003514** transactions that include it are committed to disk.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003515** this checks through each transaction, and returns 1 if you are allowed to dirty,
3516** and 0 if you aren't
3517**
3518** it is called by dirty_journal_list, which is called after flush_commit_list has gotten all the log
3519** blocks for a given transaction on disk
3520**
3521*/
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003522static int can_dirty(struct reiserfs_journal_cnode *cn)
3523{
3524 struct super_block *sb = cn->sb;
3525 b_blocknr_t blocknr = cn->blocknr;
3526 struct reiserfs_journal_cnode *cur = cn->hprev;
3527 int can_dirty = 1;
3528
3529 /* first test hprev. These are all newer than cn, so any node here
3530 ** with the same block number and dev means this node can't be sent
3531 ** to disk right now.
3532 */
3533 while (cur && can_dirty) {
3534 if (cur->jlist && cur->bh && cur->blocknr && cur->sb == sb &&
3535 cur->blocknr == blocknr) {
3536 can_dirty = 0;
3537 }
3538 cur = cur->hprev;
3539 }
3540 /* then test hnext. These are all older than cn. As long as they
3541 ** are committed to the log, it is safe to write cn to disk
3542 */
3543 cur = cn->hnext;
3544 while (cur && can_dirty) {
3545 if (cur->jlist && cur->jlist->j_len > 0 &&
3546 atomic_read(&(cur->jlist->j_commit_left)) > 0 && cur->bh &&
3547 cur->blocknr && cur->sb == sb && cur->blocknr == blocknr) {
3548 can_dirty = 0;
3549 }
3550 cur = cur->hnext;
3551 }
3552 return can_dirty;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003553}
3554
3555/* syncs the commit blocks, but does not force the real buffers to disk
Jeff Mahoney0222e652009-03-30 14:02:44 -04003556** will wait until the current transaction is done/committed before returning
Linus Torvalds1da177e2005-04-16 15:20:36 -07003557*/
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003558int journal_end_sync(struct reiserfs_transaction_handle *th,
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04003559 struct super_block *sb, unsigned long nblocks)
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003560{
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04003561 struct reiserfs_journal *journal = SB_JOURNAL(sb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003562
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003563 BUG_ON(!th->t_trans_id);
3564 /* you can sync while nested, very, very bad */
Eric Sesterhenn14a61442006-10-03 23:36:38 +02003565 BUG_ON(th->t_refcount > 1);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003566 if (journal->j_len == 0) {
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04003567 reiserfs_prepare_for_journal(sb, SB_BUFFER_WITH_SB(sb),
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003568 1);
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04003569 journal_mark_dirty(th, sb, SB_BUFFER_WITH_SB(sb));
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003570 }
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04003571 return do_journal_end(th, sb, nblocks, COMMIT_NOW | WAIT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003572}
3573
3574/*
3575** writeback the pending async commits to disk
3576*/
David Howellsc4028952006-11-22 14:57:56 +00003577static void flush_async_commits(struct work_struct *work)
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003578{
David Howellsc4028952006-11-22 14:57:56 +00003579 struct reiserfs_journal *journal =
3580 container_of(work, struct reiserfs_journal, j_work.work);
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04003581 struct super_block *sb = journal->j_work_sb;
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003582 struct reiserfs_journal_list *jl;
3583 struct list_head *entry;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003584
Frederic Weisbecker8ebc4232009-04-07 04:19:49 +02003585 reiserfs_write_lock(sb);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003586 if (!list_empty(&journal->j_journal_list)) {
3587 /* last entry is the youngest, commit it and you get everything */
3588 entry = journal->j_journal_list.prev;
3589 jl = JOURNAL_LIST_ENTRY(entry);
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04003590 flush_commit_list(sb, jl, 1);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003591 }
Frederic Weisbecker8ebc4232009-04-07 04:19:49 +02003592 reiserfs_write_unlock(sb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003593}
3594
3595/*
3596** flushes any old transactions to disk
3597** ends the current transaction if it is too old
3598*/
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04003599int reiserfs_flush_old_commits(struct super_block *sb)
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003600{
3601 time_t now;
3602 struct reiserfs_transaction_handle th;
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04003603 struct reiserfs_journal *journal = SB_JOURNAL(sb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003604
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003605 now = get_seconds();
3606 /* safety check so we don't flush while we are replaying the log during
3607 * mount
3608 */
3609 if (list_empty(&journal->j_journal_list)) {
3610 return 0;
3611 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003612
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003613 /* check the current transaction. If there are no writers, and it is
3614 * too old, finish it, and force the commit blocks to disk
3615 */
3616 if (atomic_read(&journal->j_wcount) <= 0 &&
3617 journal->j_trans_start_time > 0 &&
3618 journal->j_len > 0 &&
3619 (now - journal->j_trans_start_time) > journal->j_max_trans_age) {
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04003620 if (!journal_join(&th, sb, 1)) {
3621 reiserfs_prepare_for_journal(sb,
3622 SB_BUFFER_WITH_SB(sb),
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003623 1);
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04003624 journal_mark_dirty(&th, sb,
3625 SB_BUFFER_WITH_SB(sb));
Linus Torvalds1da177e2005-04-16 15:20:36 -07003626
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003627 /* we're only being called from kreiserfsd, it makes no sense to do
3628 ** an async commit so that kreiserfsd can do it later
3629 */
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04003630 do_journal_end(&th, sb, 1, COMMIT_NOW | WAIT);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003631 }
3632 }
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04003633 return sb->s_dirt;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003634}
3635
3636/*
3637** 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 -04003638**
3639** 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 -07003640** the writers are done. By the time it wakes up, the transaction it was called has already ended, so it just
3641** flushes the commit list and returns 0.
3642**
3643** 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 -04003644**
Linus Torvalds1da177e2005-04-16 15:20:36 -07003645** Note, we can't allow the journal_end to proceed while there are still writers in the log.
3646*/
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003647static int check_journal_end(struct reiserfs_transaction_handle *th,
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04003648 struct super_block *sb, unsigned long nblocks,
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003649 int flags)
3650{
Linus Torvalds1da177e2005-04-16 15:20:36 -07003651
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003652 time_t now;
3653 int flush = flags & FLUSH_ALL;
3654 int commit_now = flags & COMMIT_NOW;
3655 int wait_on_commit = flags & WAIT;
3656 struct reiserfs_journal_list *jl;
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04003657 struct reiserfs_journal *journal = SB_JOURNAL(sb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003658
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003659 BUG_ON(!th->t_trans_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003660
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003661 if (th->t_trans_id != journal->j_trans_id) {
Jeff Mahoneyc3a9c212009-03-30 14:02:25 -04003662 reiserfs_panic(th->t_super, "journal-1577",
3663 "handle trans id %ld != current trans id %ld",
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003664 th->t_trans_id, journal->j_trans_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003665 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003666
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003667 journal->j_len_alloc -= (th->t_blocks_allocated - th->t_blocks_logged);
3668 if (atomic_read(&(journal->j_wcount)) > 0) { /* <= 0 is allowed. unmounting might not call begin */
3669 atomic_dec(&(journal->j_wcount));
3670 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003671
Jeff Mahoney0222e652009-03-30 14:02:44 -04003672 /* 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 -07003673 ** will be dealt with by next transaction that actually writes something, but should be taken
3674 ** care of in this trans
3675 */
Eric Sesterhenn14a61442006-10-03 23:36:38 +02003676 BUG_ON(journal->j_len == 0);
3677
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003678 /* if wcount > 0, and we are called to with flush or commit_now,
3679 ** we wait on j_join_wait. We will wake up when the last writer has
3680 ** finished the transaction, and started it on its way to the disk.
Jeff Mahoney0222e652009-03-30 14:02:44 -04003681 ** Then, we flush the commit or journal list, and just return 0
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003682 ** because the rest of journal end was already done for this transaction.
3683 */
3684 if (atomic_read(&(journal->j_wcount)) > 0) {
3685 if (flush || commit_now) {
3686 unsigned trans_id;
3687
3688 jl = journal->j_current_jl;
3689 trans_id = jl->j_trans_id;
3690 if (wait_on_commit)
3691 jl->j_state |= LIST_COMMIT_PENDING;
3692 atomic_set(&(journal->j_jlock), 1);
3693 if (flush) {
3694 journal->j_next_full_flush = 1;
3695 }
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04003696 unlock_journal(sb);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003697
3698 /* sleep while the current transaction is still j_jlocked */
3699 while (journal->j_trans_id == trans_id) {
3700 if (atomic_read(&journal->j_jlock)) {
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04003701 queue_log_writer(sb);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003702 } else {
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04003703 lock_journal(sb);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003704 if (journal->j_trans_id == trans_id) {
3705 atomic_set(&(journal->j_jlock),
3706 1);
3707 }
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04003708 unlock_journal(sb);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003709 }
3710 }
Eric Sesterhenn14a61442006-10-03 23:36:38 +02003711 BUG_ON(journal->j_trans_id == trans_id);
3712
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003713 if (commit_now
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04003714 && journal_list_still_alive(sb, trans_id)
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003715 && wait_on_commit) {
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04003716 flush_commit_list(sb, jl, 1);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003717 }
3718 return 0;
3719 }
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04003720 unlock_journal(sb);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003721 return 0;
3722 }
3723
3724 /* deal with old transactions where we are the last writers */
3725 now = get_seconds();
3726 if ((now - journal->j_trans_start_time) > journal->j_max_trans_age) {
3727 commit_now = 1;
3728 journal->j_next_async_flush = 1;
3729 }
3730 /* don't batch when someone is waiting on j_join_wait */
3731 /* don't batch when syncing the commit or flushing the whole trans */
3732 if (!(journal->j_must_wait > 0) && !(atomic_read(&(journal->j_jlock)))
3733 && !flush && !commit_now && (journal->j_len < journal->j_max_batch)
3734 && journal->j_len_alloc < journal->j_max_batch
3735 && journal->j_cnode_free > (journal->j_trans_max * 3)) {
3736 journal->j_bcount++;
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04003737 unlock_journal(sb);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003738 return 0;
3739 }
3740
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04003741 if (journal->j_start > SB_ONDISK_JOURNAL_SIZE(sb)) {
3742 reiserfs_panic(sb, "journal-003",
Jeff Mahoneyc3a9c212009-03-30 14:02:25 -04003743 "j_start (%ld) is too high",
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003744 journal->j_start);
3745 }
3746 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003747}
3748
3749/*
3750** Does all the work that makes deleting blocks safe.
3751** 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 -04003752**
Linus Torvalds1da177e2005-04-16 15:20:36 -07003753** otherwise:
3754** set a bit for the block in the journal bitmap. That will prevent it from being allocated for unformatted nodes
3755** before this transaction has finished.
3756**
3757** mark any cnodes for this block as BLOCK_FREED, and clear their bh pointers. That will prevent any old transactions with
3758** this block from trying to flush to the real location. Since we aren't removing the cnode from the journal_list_hash,
3759** the block can't be reallocated yet.
3760**
3761** Then remove it from the current transaction, decrementing any counters and filing it on the clean list.
3762*/
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003763int journal_mark_freed(struct reiserfs_transaction_handle *th,
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04003764 struct super_block *sb, b_blocknr_t blocknr)
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003765{
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04003766 struct reiserfs_journal *journal = SB_JOURNAL(sb);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003767 struct reiserfs_journal_cnode *cn = NULL;
3768 struct buffer_head *bh = NULL;
3769 struct reiserfs_list_bitmap *jb = NULL;
3770 int cleaned = 0;
3771 BUG_ON(!th->t_trans_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003772
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04003773 cn = get_journal_hash_dev(sb, journal->j_hash_table, blocknr);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003774 if (cn && cn->bh) {
3775 bh = cn->bh;
3776 get_bh(bh);
3777 }
3778 /* if it is journal new, we just remove it from this transaction */
3779 if (bh && buffer_journal_new(bh)) {
3780 clear_buffer_journal_new(bh);
3781 clear_prepared_bits(bh);
3782 reiserfs_clean_and_file_buffer(bh);
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04003783 cleaned = remove_from_transaction(sb, blocknr, cleaned);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003784 } else {
3785 /* set the bit for this block in the journal bitmap for this transaction */
3786 jb = journal->j_current_jl->j_list_bitmap;
3787 if (!jb) {
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04003788 reiserfs_panic(sb, "journal-1702",
Jeff Mahoneyc3a9c212009-03-30 14:02:25 -04003789 "journal_list_bitmap is NULL");
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003790 }
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04003791 set_bit_in_list_bitmap(sb, blocknr, jb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003792
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003793 /* Note, the entire while loop is not allowed to schedule. */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003794
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003795 if (bh) {
3796 clear_prepared_bits(bh);
3797 reiserfs_clean_and_file_buffer(bh);
3798 }
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04003799 cleaned = remove_from_transaction(sb, blocknr, cleaned);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003800
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003801 /* find all older transactions with this block, make sure they don't try to write it out */
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04003802 cn = get_journal_hash_dev(sb, journal->j_list_hash_table,
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003803 blocknr);
3804 while (cn) {
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04003805 if (sb == cn->sb && blocknr == cn->blocknr) {
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003806 set_bit(BLOCK_FREED, &cn->state);
3807 if (cn->bh) {
3808 if (!cleaned) {
3809 /* remove_from_transaction will brelse the buffer if it was
3810 ** in the current trans
3811 */
3812 clear_buffer_journal_dirty(cn->
3813 bh);
3814 clear_buffer_dirty(cn->bh);
3815 clear_buffer_journal_test(cn->
3816 bh);
3817 cleaned = 1;
3818 put_bh(cn->bh);
3819 if (atomic_read
3820 (&(cn->bh->b_count)) < 0) {
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04003821 reiserfs_warning(sb,
Jeff Mahoney45b03d52009-03-30 14:02:21 -04003822 "journal-2138",
3823 "cn->bh->b_count < 0");
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003824 }
3825 }
3826 if (cn->jlist) { /* since we are clearing the bh, we MUST dec nonzerolen */
3827 atomic_dec(&
3828 (cn->jlist->
3829 j_nonzerolen));
3830 }
3831 cn->bh = NULL;
3832 }
3833 }
3834 cn = cn->hnext;
3835 }
3836 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003837
Chris Mason398c95b2007-10-16 23:29:44 -07003838 if (bh)
3839 release_buffer_page(bh); /* get_hash grabs the buffer */
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003840 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003841}
3842
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003843void reiserfs_update_inode_transaction(struct inode *inode)
3844{
3845 struct reiserfs_journal *journal = SB_JOURNAL(inode->i_sb);
3846 REISERFS_I(inode)->i_jl = journal->j_current_jl;
3847 REISERFS_I(inode)->i_trans_id = journal->j_trans_id;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003848}
3849
3850/*
3851 * returns -1 on error, 0 if no commits/barriers were done and 1
3852 * if a transaction was actually committed and the barrier was done
3853 */
3854static int __commit_trans_jl(struct inode *inode, unsigned long id,
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003855 struct reiserfs_journal_list *jl)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003856{
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003857 struct reiserfs_transaction_handle th;
3858 struct super_block *sb = inode->i_sb;
3859 struct reiserfs_journal *journal = SB_JOURNAL(sb);
3860 int ret = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003861
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003862 /* is it from the current transaction, or from an unknown transaction? */
3863 if (id == journal->j_trans_id) {
3864 jl = journal->j_current_jl;
3865 /* try to let other writers come in and grow this transaction */
3866 let_transaction_grow(sb, id);
3867 if (journal->j_trans_id != id) {
3868 goto flush_commit_only;
3869 }
3870
3871 ret = journal_begin(&th, sb, 1);
3872 if (ret)
3873 return ret;
3874
3875 /* someone might have ended this transaction while we joined */
3876 if (journal->j_trans_id != id) {
3877 reiserfs_prepare_for_journal(sb, SB_BUFFER_WITH_SB(sb),
3878 1);
3879 journal_mark_dirty(&th, sb, SB_BUFFER_WITH_SB(sb));
3880 ret = journal_end(&th, sb, 1);
3881 goto flush_commit_only;
3882 }
3883
3884 ret = journal_end_sync(&th, sb, 1);
3885 if (!ret)
3886 ret = 1;
3887
3888 } else {
3889 /* this gets tricky, we have to make sure the journal list in
3890 * the inode still exists. We know the list is still around
3891 * if we've got a larger transaction id than the oldest list
3892 */
3893 flush_commit_only:
3894 if (journal_list_still_alive(inode->i_sb, id)) {
3895 /*
3896 * we only set ret to 1 when we know for sure
3897 * the barrier hasn't been started yet on the commit
3898 * block.
3899 */
3900 if (atomic_read(&jl->j_commit_left) > 1)
3901 ret = 1;
3902 flush_commit_list(sb, jl, 1);
3903 if (journal->j_errno)
3904 ret = journal->j_errno;
3905 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003906 }
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003907 /* otherwise the list is gone, and long since committed */
3908 return ret;
3909}
Linus Torvalds1da177e2005-04-16 15:20:36 -07003910
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003911int reiserfs_commit_for_inode(struct inode *inode)
3912{
Jeff Mahoney600ed412009-03-30 14:02:17 -04003913 unsigned int id = REISERFS_I(inode)->i_trans_id;
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003914 struct reiserfs_journal_list *jl = REISERFS_I(inode)->i_jl;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003915
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003916 /* for the whole inode, assume unset id means it was
3917 * changed in the current transaction. More conservative
Linus Torvalds1da177e2005-04-16 15:20:36 -07003918 */
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003919 if (!id || !jl) {
3920 reiserfs_update_inode_transaction(inode);
3921 id = REISERFS_I(inode)->i_trans_id;
3922 /* jl will be updated in __commit_trans_jl */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003923 }
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003924
3925 return __commit_trans_jl(inode, id, jl);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003926}
3927
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04003928void reiserfs_restore_prepared_buffer(struct super_block *sb,
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003929 struct buffer_head *bh)
3930{
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04003931 struct reiserfs_journal *journal = SB_JOURNAL(sb);
3932 PROC_INFO_INC(sb, journal.restore_prepared);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003933 if (!bh) {
3934 return;
3935 }
3936 if (test_clear_buffer_journal_restore_dirty(bh) &&
3937 buffer_journal_dirty(bh)) {
3938 struct reiserfs_journal_cnode *cn;
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04003939 cn = get_journal_hash_dev(sb,
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003940 journal->j_list_hash_table,
3941 bh->b_blocknr);
3942 if (cn && can_dirty(cn)) {
3943 set_buffer_journal_test(bh);
3944 mark_buffer_dirty(bh);
3945 }
3946 }
3947 clear_buffer_journal_prepared(bh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003948}
3949
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003950extern struct tree_balance *cur_tb;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003951/*
3952** before we can change a metadata block, we have to make sure it won't
3953** be written to disk while we are altering it. So, we must:
3954** clean it
3955** wait on it.
Jeff Mahoney0222e652009-03-30 14:02:44 -04003956**
Linus Torvalds1da177e2005-04-16 15:20:36 -07003957*/
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04003958int reiserfs_prepare_for_journal(struct super_block *sb,
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003959 struct buffer_head *bh, int wait)
3960{
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04003961 PROC_INFO_INC(sb, journal.prepare);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003962
Nick Pigginca5de402008-08-02 12:02:13 +02003963 if (!trylock_buffer(bh)) {
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003964 if (!wait)
3965 return 0;
3966 lock_buffer(bh);
3967 }
3968 set_buffer_journal_prepared(bh);
3969 if (test_clear_buffer_dirty(bh) && buffer_journal_dirty(bh)) {
3970 clear_buffer_journal_test(bh);
3971 set_buffer_journal_restore_dirty(bh);
3972 }
3973 unlock_buffer(bh);
3974 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003975}
3976
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003977static void flush_old_journal_lists(struct super_block *s)
3978{
3979 struct reiserfs_journal *journal = SB_JOURNAL(s);
3980 struct reiserfs_journal_list *jl;
3981 struct list_head *entry;
3982 time_t now = get_seconds();
Linus Torvalds1da177e2005-04-16 15:20:36 -07003983
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003984 while (!list_empty(&journal->j_journal_list)) {
3985 entry = journal->j_journal_list.next;
3986 jl = JOURNAL_LIST_ENTRY(entry);
3987 /* this check should always be run, to send old lists to disk */
Chris Masona3172022006-09-29 01:59:56 -07003988 if (jl->j_timestamp < (now - (JOURNAL_MAX_TRANS_AGE * 4)) &&
3989 atomic_read(&jl->j_commit_left) == 0 &&
3990 test_transaction(s, jl)) {
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003991 flush_used_journal_lists(s, jl);
3992 } else {
3993 break;
3994 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003995 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003996}
3997
Jeff Mahoney0222e652009-03-30 14:02:44 -04003998/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003999** long and ugly. If flush, will not return until all commit
4000** blocks and all real buffers in the trans are on disk.
4001** If no_async, won't return until all commit blocks are on disk.
4002**
4003** keep reading, there are comments as you go along
4004**
4005** If the journal is aborted, we just clean up. Things like flushing
4006** journal lists, etc just won't happen.
4007*/
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07004008static int do_journal_end(struct reiserfs_transaction_handle *th,
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04004009 struct super_block *sb, unsigned long nblocks,
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07004010 int flags)
4011{
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04004012 struct reiserfs_journal *journal = SB_JOURNAL(sb);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07004013 struct reiserfs_journal_cnode *cn, *next, *jl_cn;
4014 struct reiserfs_journal_cnode *last_cn = NULL;
4015 struct reiserfs_journal_desc *desc;
4016 struct reiserfs_journal_commit *commit;
4017 struct buffer_head *c_bh; /* commit bh */
4018 struct buffer_head *d_bh; /* desc bh */
4019 int cur_write_start = 0; /* start index of current log write */
4020 int old_start;
4021 int i;
Alexander Zarochentseva44c94a2006-03-25 03:06:59 -08004022 int flush;
4023 int wait_on_commit;
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07004024 struct reiserfs_journal_list *jl, *temp_jl;
4025 struct list_head *entry, *safe;
4026 unsigned long jindex;
Jeff Mahoney600ed412009-03-30 14:02:17 -04004027 unsigned int commit_trans_id;
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07004028 int trans_half;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004029
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07004030 BUG_ON(th->t_refcount > 1);
4031 BUG_ON(!th->t_trans_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004032
Alexander Zarochentseva44c94a2006-03-25 03:06:59 -08004033 /* protect flush_older_commits from doing mistakes if the
4034 transaction ID counter gets overflowed. */
Jeff Mahoney600ed412009-03-30 14:02:17 -04004035 if (th->t_trans_id == ~0U)
Alexander Zarochentseva44c94a2006-03-25 03:06:59 -08004036 flags |= FLUSH_ALL | COMMIT_NOW | WAIT;
4037 flush = flags & FLUSH_ALL;
4038 wait_on_commit = flags & WAIT;
4039
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07004040 put_fs_excl();
4041 current->journal_info = th->t_handle_save;
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04004042 reiserfs_check_lock_depth(sb, "journal end");
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07004043 if (journal->j_len == 0) {
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04004044 reiserfs_prepare_for_journal(sb, SB_BUFFER_WITH_SB(sb),
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07004045 1);
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04004046 journal_mark_dirty(th, sb, SB_BUFFER_WITH_SB(sb));
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07004047 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004048
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04004049 lock_journal(sb);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07004050 if (journal->j_next_full_flush) {
4051 flags |= FLUSH_ALL;
4052 flush = 1;
4053 }
4054 if (journal->j_next_async_flush) {
4055 flags |= COMMIT_NOW | WAIT;
4056 wait_on_commit = 1;
4057 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004058
Jeff Mahoney0222e652009-03-30 14:02:44 -04004059 /* check_journal_end locks the journal, and unlocks if it does not return 1
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07004060 ** it tells us if we should continue with the journal_end, or just return
4061 */
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04004062 if (!check_journal_end(th, sb, nblocks, flags)) {
4063 sb->s_dirt = 1;
4064 wake_queued_writers(sb);
4065 reiserfs_async_progress_wait(sb);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07004066 goto out;
4067 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004068
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07004069 /* check_journal_end might set these, check again */
4070 if (journal->j_next_full_flush) {
4071 flush = 1;
4072 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004073
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07004074 /*
4075 ** j must wait means we have to flush the log blocks, and the real blocks for
4076 ** this transaction
4077 */
4078 if (journal->j_must_wait > 0) {
4079 flush = 1;
4080 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004081#ifdef REISERFS_PREALLOCATE
Jan Karaef43bc42006-01-11 12:17:40 -08004082 /* quota ops might need to nest, setup the journal_info pointer for them
4083 * and raise the refcount so that it is > 0. */
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07004084 current->journal_info = th;
Jan Karaef43bc42006-01-11 12:17:40 -08004085 th->t_refcount++;
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07004086 reiserfs_discard_all_prealloc(th); /* it should not involve new blocks into
4087 * the transaction */
Jan Karaef43bc42006-01-11 12:17:40 -08004088 th->t_refcount--;
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07004089 current->journal_info = th->t_handle_save;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004090#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07004091
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07004092 /* setup description block */
4093 d_bh =
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04004094 journal_getblk(sb,
4095 SB_ONDISK_JOURNAL_1st_BLOCK(sb) +
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07004096 journal->j_start);
4097 set_buffer_uptodate(d_bh);
4098 desc = (struct reiserfs_journal_desc *)(d_bh)->b_data;
4099 memset(d_bh->b_data, 0, d_bh->b_size);
4100 memcpy(get_journal_desc_magic(d_bh), JOURNAL_DESC_MAGIC, 8);
4101 set_desc_trans_id(desc, journal->j_trans_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004102
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07004103 /* 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 -04004104 c_bh = journal_getblk(sb, SB_ONDISK_JOURNAL_1st_BLOCK(sb) +
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07004105 ((journal->j_start + journal->j_len +
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04004106 1) % SB_ONDISK_JOURNAL_SIZE(sb)));
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07004107 commit = (struct reiserfs_journal_commit *)c_bh->b_data;
4108 memset(c_bh->b_data, 0, c_bh->b_size);
4109 set_commit_trans_id(commit, journal->j_trans_id);
4110 set_buffer_uptodate(c_bh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004111
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07004112 /* init this journal list */
4113 jl = journal->j_current_jl;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004114
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07004115 /* we lock the commit before doing anything because
4116 * we want to make sure nobody tries to run flush_commit_list until
4117 * the new transaction is fully setup, and we've already flushed the
4118 * ordered bh list
4119 */
Frederic Weisbecker8ebc4232009-04-07 04:19:49 +02004120 reiserfs_mutex_lock_safe(&jl->j_commit_mutex, sb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004121
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07004122 /* save the transaction id in case we need to commit it later */
4123 commit_trans_id = jl->j_trans_id;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004124
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07004125 atomic_set(&jl->j_older_commits_done, 0);
4126 jl->j_trans_id = journal->j_trans_id;
4127 jl->j_timestamp = journal->j_trans_start_time;
4128 jl->j_commit_bh = c_bh;
4129 jl->j_start = journal->j_start;
4130 jl->j_len = journal->j_len;
4131 atomic_set(&jl->j_nonzerolen, journal->j_len);
4132 atomic_set(&jl->j_commit_left, journal->j_len + 2);
4133 jl->j_realblock = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004134
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07004135 /* The ENTIRE FOR LOOP MUST not cause schedule to occur.
4136 ** for each real block, add it to the journal list hash,
4137 ** copy into real block index array in the commit or desc block
4138 */
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04004139 trans_half = journal_trans_half(sb->s_blocksize);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07004140 for (i = 0, cn = journal->j_first; cn; cn = cn->next, i++) {
4141 if (buffer_journaled(cn->bh)) {
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04004142 jl_cn = get_cnode(sb);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07004143 if (!jl_cn) {
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04004144 reiserfs_panic(sb, "journal-1676",
Jeff Mahoneyc3a9c212009-03-30 14:02:25 -04004145 "get_cnode returned NULL");
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07004146 }
4147 if (i == 0) {
4148 jl->j_realblock = jl_cn;
4149 }
4150 jl_cn->prev = last_cn;
4151 jl_cn->next = NULL;
4152 if (last_cn) {
4153 last_cn->next = jl_cn;
4154 }
4155 last_cn = jl_cn;
Jeff Mahoney0222e652009-03-30 14:02:44 -04004156 /* make sure the block we are trying to log is not a block
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07004157 of journal or reserved area */
Linus Torvalds1da177e2005-04-16 15:20:36 -07004158
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07004159 if (is_block_in_log_or_reserved_area
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04004160 (sb, cn->bh->b_blocknr)) {
4161 reiserfs_panic(sb, "journal-2332",
Jeff Mahoneyc3a9c212009-03-30 14:02:25 -04004162 "Trying to log block %lu, "
4163 "which is a log block",
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07004164 cn->bh->b_blocknr);
4165 }
4166 jl_cn->blocknr = cn->bh->b_blocknr;
4167 jl_cn->state = 0;
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04004168 jl_cn->sb = sb;
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07004169 jl_cn->bh = cn->bh;
4170 jl_cn->jlist = jl;
4171 insert_journal_hash(journal->j_list_hash_table, jl_cn);
4172 if (i < trans_half) {
4173 desc->j_realblock[i] =
4174 cpu_to_le32(cn->bh->b_blocknr);
4175 } else {
4176 commit->j_realblock[i - trans_half] =
4177 cpu_to_le32(cn->bh->b_blocknr);
4178 }
4179 } else {
4180 i--;
4181 }
4182 }
4183 set_desc_trans_len(desc, journal->j_len);
4184 set_desc_mount_id(desc, journal->j_mount_id);
4185 set_desc_trans_id(desc, journal->j_trans_id);
4186 set_commit_trans_len(commit, journal->j_len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004187
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07004188 /* special check in case all buffers in the journal were marked for not logging */
Eric Sesterhenn14a61442006-10-03 23:36:38 +02004189 BUG_ON(journal->j_len == 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004190
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07004191 /* we're about to dirty all the log blocks, mark the description block
4192 * dirty now too. Don't mark the commit block dirty until all the
4193 * others are on disk
4194 */
4195 mark_buffer_dirty(d_bh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004196
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07004197 /* first data block is j_start + 1, so add one to cur_write_start wherever you use it */
4198 cur_write_start = journal->j_start;
4199 cn = journal->j_first;
4200 jindex = 1; /* start at one so we don't get the desc again */
4201 while (cn) {
4202 clear_buffer_journal_new(cn->bh);
4203 /* copy all the real blocks into log area. dirty log blocks */
4204 if (buffer_journaled(cn->bh)) {
4205 struct buffer_head *tmp_bh;
4206 char *addr;
4207 struct page *page;
4208 tmp_bh =
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04004209 journal_getblk(sb,
4210 SB_ONDISK_JOURNAL_1st_BLOCK(sb) +
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07004211 ((cur_write_start +
4212 jindex) %
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04004213 SB_ONDISK_JOURNAL_SIZE(sb)));
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07004214 set_buffer_uptodate(tmp_bh);
4215 page = cn->bh->b_page;
4216 addr = kmap(page);
4217 memcpy(tmp_bh->b_data,
4218 addr + offset_in_page(cn->bh->b_data),
4219 cn->bh->b_size);
4220 kunmap(page);
4221 mark_buffer_dirty(tmp_bh);
4222 jindex++;
4223 set_buffer_journal_dirty(cn->bh);
4224 clear_buffer_journaled(cn->bh);
4225 } else {
4226 /* JDirty cleared sometime during transaction. don't log this one */
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04004227 reiserfs_warning(sb, "journal-2048",
Jeff Mahoney45b03d52009-03-30 14:02:21 -04004228 "BAD, buffer in journal hash, "
4229 "but not JDirty!");
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07004230 brelse(cn->bh);
4231 }
4232 next = cn->next;
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04004233 free_cnode(sb, cn);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07004234 cn = next;
4235 cond_resched();
4236 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004237
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07004238 /* we are done with both the c_bh and d_bh, but
4239 ** c_bh must be written after all other commit blocks,
4240 ** so we dirty/relse c_bh in flush_commit_list, with commit_left <= 1.
4241 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07004242
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04004243 journal->j_current_jl = alloc_journal_list(sb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004244
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07004245 /* now it is safe to insert this transaction on the main list */
4246 list_add_tail(&jl->j_list, &journal->j_journal_list);
4247 list_add_tail(&jl->j_working_list, &journal->j_working_list);
4248 journal->j_num_work_lists++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004249
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07004250 /* reset journal values for the next transaction */
4251 old_start = journal->j_start;
4252 journal->j_start =
4253 (journal->j_start + journal->j_len +
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04004254 2) % SB_ONDISK_JOURNAL_SIZE(sb);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07004255 atomic_set(&(journal->j_wcount), 0);
4256 journal->j_bcount = 0;
4257 journal->j_last = NULL;
4258 journal->j_first = NULL;
4259 journal->j_len = 0;
4260 journal->j_trans_start_time = 0;
Alexander Zarochentseva44c94a2006-03-25 03:06:59 -08004261 /* check for trans_id overflow */
4262 if (++journal->j_trans_id == 0)
4263 journal->j_trans_id = 10;
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07004264 journal->j_current_jl->j_trans_id = journal->j_trans_id;
4265 journal->j_must_wait = 0;
4266 journal->j_len_alloc = 0;
4267 journal->j_next_full_flush = 0;
4268 journal->j_next_async_flush = 0;
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04004269 init_journal_hash(sb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004270
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07004271 // make sure reiserfs_add_jh sees the new current_jl before we
4272 // write out the tails
4273 smp_mb();
Linus Torvalds1da177e2005-04-16 15:20:36 -07004274
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07004275 /* tail conversion targets have to hit the disk before we end the
4276 * transaction. Otherwise a later transaction might repack the tail
4277 * before this transaction commits, leaving the data block unflushed and
4278 * clean, if we crash before the later transaction commits, the data block
4279 * is lost.
4280 */
4281 if (!list_empty(&jl->j_tail_bh_list)) {
Frederic Weisbecker8ebc4232009-04-07 04:19:49 +02004282 reiserfs_write_unlock(sb);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07004283 write_ordered_buffers(&journal->j_dirty_buffers_lock,
4284 journal, jl, &jl->j_tail_bh_list);
Frederic Weisbecker8ebc4232009-04-07 04:19:49 +02004285 reiserfs_write_lock(sb);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07004286 }
Eric Sesterhenn14a61442006-10-03 23:36:38 +02004287 BUG_ON(!list_empty(&jl->j_tail_bh_list));
Jeff Mahoney90415de2008-07-25 01:46:40 -07004288 mutex_unlock(&jl->j_commit_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004289
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07004290 /* honor the flush wishes from the caller, simple commits can
4291 ** be done outside the journal lock, they are done below
4292 **
4293 ** if we don't flush the commit list right now, we put it into
4294 ** the work queue so the people waiting on the async progress work
4295 ** queue don't wait for this proc to flush journal lists and such.
4296 */
4297 if (flush) {
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04004298 flush_commit_list(sb, jl, 1);
4299 flush_journal_list(sb, jl, 1);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07004300 } else if (!(jl->j_state & LIST_COMMIT_PENDING))
4301 queue_delayed_work(commit_wq, &journal->j_work, HZ / 10);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004302
Jeff Mahoney0222e652009-03-30 14:02:44 -04004303 /* if the next transaction has any chance of wrapping, flush
4304 ** transactions that might get overwritten. If any journal lists are very
4305 ** old flush them as well.
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07004306 */
4307 first_jl:
4308 list_for_each_safe(entry, safe, &journal->j_journal_list) {
4309 temp_jl = JOURNAL_LIST_ENTRY(entry);
4310 if (journal->j_start <= temp_jl->j_start) {
4311 if ((journal->j_start + journal->j_trans_max + 1) >=
4312 temp_jl->j_start) {
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04004313 flush_used_journal_lists(sb, temp_jl);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07004314 goto first_jl;
4315 } else if ((journal->j_start +
4316 journal->j_trans_max + 1) <
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04004317 SB_ONDISK_JOURNAL_SIZE(sb)) {
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07004318 /* if we don't cross into the next transaction and we don't
4319 * wrap, there is no way we can overlap any later transactions
4320 * break now
4321 */
4322 break;
4323 }
4324 } else if ((journal->j_start +
4325 journal->j_trans_max + 1) >
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04004326 SB_ONDISK_JOURNAL_SIZE(sb)) {
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07004327 if (((journal->j_start + journal->j_trans_max + 1) %
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04004328 SB_ONDISK_JOURNAL_SIZE(sb)) >=
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07004329 temp_jl->j_start) {
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04004330 flush_used_journal_lists(sb, temp_jl);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07004331 goto first_jl;
4332 } else {
4333 /* we don't overlap anything from out start to the end of the
4334 * log, and our wrapped portion doesn't overlap anything at
4335 * the start of the log. We can break
4336 */
4337 break;
4338 }
4339 }
4340 }
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04004341 flush_old_journal_lists(sb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004342
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07004343 journal->j_current_jl->j_list_bitmap =
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04004344 get_list_bitmap(sb, journal->j_current_jl);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004345
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07004346 if (!(journal->j_current_jl->j_list_bitmap)) {
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04004347 reiserfs_panic(sb, "journal-1996",
Jeff Mahoneyc3a9c212009-03-30 14:02:25 -04004348 "could not get a list bitmap");
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07004349 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004350
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07004351 atomic_set(&(journal->j_jlock), 0);
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04004352 unlock_journal(sb);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07004353 /* wake up any body waiting to join. */
4354 clear_bit(J_WRITERS_QUEUED, &journal->j_state);
4355 wake_up(&(journal->j_join_wait));
Linus Torvalds1da177e2005-04-16 15:20:36 -07004356
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07004357 if (!flush && wait_on_commit &&
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04004358 journal_list_still_alive(sb, commit_trans_id)) {
4359 flush_commit_list(sb, jl, 1);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07004360 }
4361 out:
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04004362 reiserfs_check_lock_depth(sb, "journal end2");
Linus Torvalds1da177e2005-04-16 15:20:36 -07004363
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07004364 memset(th, 0, sizeof(*th));
4365 /* Re-set th->t_super, so we can properly keep track of how many
4366 * persistent transactions there are. We need to do this so if this
4367 * call is part of a failed restart_transaction, we can free it later */
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04004368 th->t_super = sb;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004369
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07004370 return journal->j_errno;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004371}
4372
Jeff Mahoney32e8b102009-03-30 14:02:26 -04004373/* Send the file system read only and refuse new transactions */
4374void reiserfs_abort_journal(struct super_block *sb, int errno)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004375{
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07004376 struct reiserfs_journal *journal = SB_JOURNAL(sb);
4377 if (test_bit(J_ABORTED, &journal->j_state))
4378 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004379
Jeff Mahoney32e8b102009-03-30 14:02:26 -04004380 if (!journal->j_errno)
4381 journal->j_errno = errno;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004382
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07004383 sb->s_flags |= MS_RDONLY;
4384 set_bit(J_ABORTED, &journal->j_state);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004385
4386#ifdef CONFIG_REISERFS_CHECK
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07004387 dump_stack();
Linus Torvalds1da177e2005-04-16 15:20:36 -07004388#endif
4389}
4390