blob: 225921126455240d3909d26aad39daae0155a1ae [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2** Write ahead logging implementation copyright Chris Mason 2000
3**
Lucas De Marchi25985ed2011-03-30 22:57:33 -03004** The background commits make this code very interrelated, and
Linus Torvalds1da177e2005-04-16 15:20:36 -07005** overly complex. I need to rethink things a bit....The major players:
6**
Jeff Mahoney0222e652009-03-30 14:02:44 -04007** journal_begin -- call with the number of blocks you expect to log.
Linus Torvalds1da177e2005-04-16 15:20:36 -07008** If the current transaction is too
Jeff Mahoney0222e652009-03-30 14:02:44 -04009** old, it will block until the current transaction is
Linus Torvalds1da177e2005-04-16 15:20:36 -070010** finished, and then start a new one.
Jeff Mahoney0222e652009-03-30 14:02:44 -040011** Usually, your transaction will get joined in with
Linus Torvalds1da177e2005-04-16 15:20:36 -070012** previous ones for speed.
13**
Jeff Mahoney0222e652009-03-30 14:02:44 -040014** journal_join -- same as journal_begin, but won't block on the current
Linus Torvalds1da177e2005-04-16 15:20:36 -070015** transaction regardless of age. Don't ever call
Jeff Mahoney0222e652009-03-30 14:02:44 -040016** this. Ever. There are only two places it should be
Linus Torvalds1da177e2005-04-16 15:20:36 -070017** called from, and they are both inside this file.
18**
Jeff Mahoney0222e652009-03-30 14:02:44 -040019** journal_mark_dirty -- adds blocks into this transaction. clears any flags
Linus Torvalds1da177e2005-04-16 15:20:36 -070020** that might make them get sent to disk
Jeff Mahoney0222e652009-03-30 14:02:44 -040021** and then marks them BH_JDirty. Puts the buffer head
22** into the current transaction hash.
Linus Torvalds1da177e2005-04-16 15:20:36 -070023**
24** journal_end -- if the current transaction is batchable, it does nothing
25** otherwise, it could do an async/synchronous commit, or
Jeff Mahoney0222e652009-03-30 14:02:44 -040026** a full flush of all log and real blocks in the
Linus Torvalds1da177e2005-04-16 15:20:36 -070027** transaction.
28**
Jeff Mahoney0222e652009-03-30 14:02:44 -040029** flush_old_commits -- if the current transaction is too old, it is ended and
30** commit blocks are sent to disk. Forces commit blocks
31** to disk for all backgrounded commits that have been
Linus Torvalds1da177e2005-04-16 15:20:36 -070032** around too long.
Jeff Mahoney0222e652009-03-30 14:02:44 -040033** -- Note, if you call this as an immediate flush from
Linus Torvalds1da177e2005-04-16 15:20:36 -070034** from within kupdate, it will ignore the immediate flag
35*/
36
Linus Torvalds1da177e2005-04-16 15:20:36 -070037#include <linux/time.h>
Matthew Wilcox6188e102008-04-18 22:21:05 -040038#include <linux/semaphore.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070039#include <linux/vmalloc.h>
Al Virof466c6f2012-03-17 01:16:43 -040040#include "reiserfs.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070041#include <linux/kernel.h>
42#include <linux/errno.h>
43#include <linux/fcntl.h>
44#include <linux/stat.h>
45#include <linux/string.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070046#include <linux/buffer_head.h>
47#include <linux/workqueue.h>
48#include <linux/writeback.h>
49#include <linux/blkdev.h>
Andrew Morton3fcfab12006-10-19 23:28:16 -070050#include <linux/backing-dev.h>
Jeff Mahoney90415de2008-07-25 01:46:40 -070051#include <linux/uaccess.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090052#include <linux/slab.h>
Jeff Mahoney90415de2008-07-25 01:46:40 -070053
Linus Torvalds1da177e2005-04-16 15:20:36 -070054
Linus Torvalds1da177e2005-04-16 15:20:36 -070055/* gets a struct reiserfs_journal_list * from a list head */
56#define JOURNAL_LIST_ENTRY(h) (list_entry((h), struct reiserfs_journal_list, \
57 j_list))
58#define JOURNAL_WORK_ENTRY(h) (list_entry((h), struct reiserfs_journal_list, \
59 j_working_list))
60
Linus Torvaldsbd4c6252005-07-12 20:21:28 -070061#define JOURNAL_TRANS_HALF 1018 /* must be correct to keep the desc and commit
62 structs at 4k */
63#define BUFNR 64 /*read ahead */
Linus Torvalds1da177e2005-04-16 15:20:36 -070064
65/* cnode stat bits. Move these into reiserfs_fs.h */
66
67#define BLOCK_FREED 2 /* this block was freed, and can't be written. */
Linus Torvaldsbd4c6252005-07-12 20:21:28 -070068#define BLOCK_FREED_HOLDER 3 /* this block was freed during this transaction, and can't be written */
Linus Torvalds1da177e2005-04-16 15:20:36 -070069
70#define BLOCK_NEEDS_FLUSH 4 /* used in flush_journal_list */
71#define BLOCK_DIRTIED 5
72
Linus Torvalds1da177e2005-04-16 15:20:36 -070073/* journal list state bits */
74#define LIST_TOUCHED 1
75#define LIST_DIRTY 2
Linus Torvaldsbd4c6252005-07-12 20:21:28 -070076#define LIST_COMMIT_PENDING 4 /* someone will commit this list */
Linus Torvalds1da177e2005-04-16 15:20:36 -070077
78/* flags for do_journal_end */
79#define FLUSH_ALL 1 /* flush commit and real blocks */
80#define COMMIT_NOW 2 /* end and commit this transaction */
Linus Torvaldsbd4c6252005-07-12 20:21:28 -070081#define WAIT 4 /* wait for the log blocks to hit the disk */
Linus Torvalds1da177e2005-04-16 15:20:36 -070082
Linus Torvaldsbd4c6252005-07-12 20:21:28 -070083static int do_journal_end(struct reiserfs_transaction_handle *,
84 struct super_block *, unsigned long nblocks,
85 int flags);
86static int flush_journal_list(struct super_block *s,
87 struct reiserfs_journal_list *jl, int flushall);
88static int flush_commit_list(struct super_block *s,
89 struct reiserfs_journal_list *jl, int flushall);
90static int can_dirty(struct reiserfs_journal_cnode *cn);
91static int journal_join(struct reiserfs_transaction_handle *th,
Jeff Mahoneya9dd3642009-03-30 14:02:45 -040092 struct super_block *sb, unsigned long nblocks);
Al Viro4385bab2013-05-05 22:11:03 -040093static void release_journal_dev(struct super_block *super,
Linus Torvaldsbd4c6252005-07-12 20:21:28 -070094 struct reiserfs_journal *journal);
Linus Torvalds1da177e2005-04-16 15:20:36 -070095static int dirty_one_transaction(struct super_block *s,
Linus Torvaldsbd4c6252005-07-12 20:21:28 -070096 struct reiserfs_journal_list *jl);
David Howellsc4028952006-11-22 14:57:56 +000097static void flush_async_commits(struct work_struct *work);
Linus Torvalds1da177e2005-04-16 15:20:36 -070098static void queue_log_writer(struct super_block *s);
99
100/* values for join in do_journal_begin_r */
101enum {
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700102 JBEGIN_REG = 0, /* regular journal begin */
103 JBEGIN_JOIN = 1, /* join the running transaction if at all possible */
104 JBEGIN_ABORT = 2, /* called from cleanup code, ignores aborted flag */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700105};
106
107static int do_journal_begin_r(struct reiserfs_transaction_handle *th,
Jeff Mahoneya9dd3642009-03-30 14:02:45 -0400108 struct super_block *sb,
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700109 unsigned long nblocks, int join);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700110
Jeff Mahoneya9dd3642009-03-30 14:02:45 -0400111static void init_journal_hash(struct super_block *sb)
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700112{
Jeff Mahoneya9dd3642009-03-30 14:02:45 -0400113 struct reiserfs_journal *journal = SB_JOURNAL(sb);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700114 memset(journal->j_hash_table, 0,
115 JOURNAL_HASH_SIZE * sizeof(struct reiserfs_journal_cnode *));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700116}
117
118/*
119** clears BH_Dirty and sticks the buffer on the clean list. Called because I can't allow refile_buffer to
120** make schedule happen after I've freed a block. Look at remove_from_transaction and journal_mark_freed for
121** more details.
122*/
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700123static int reiserfs_clean_and_file_buffer(struct buffer_head *bh)
124{
125 if (bh) {
126 clear_buffer_dirty(bh);
127 clear_buffer_journal_test(bh);
128 }
129 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700130}
131
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700132static struct reiserfs_bitmap_node *allocate_bitmap_node(struct super_block
Jeff Mahoneya9dd3642009-03-30 14:02:45 -0400133 *sb)
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700134{
135 struct reiserfs_bitmap_node *bn;
136 static int id;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700137
Pekka Enbergd739b422006-02-01 03:06:43 -0800138 bn = kmalloc(sizeof(struct reiserfs_bitmap_node), GFP_NOFS);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700139 if (!bn) {
140 return NULL;
141 }
Jeff Mahoneya9dd3642009-03-30 14:02:45 -0400142 bn->data = kzalloc(sb->s_blocksize, GFP_NOFS);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700143 if (!bn->data) {
Pekka Enbergd739b422006-02-01 03:06:43 -0800144 kfree(bn);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700145 return NULL;
146 }
147 bn->id = id++;
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700148 INIT_LIST_HEAD(&bn->list);
149 return bn;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700150}
151
Jeff Mahoneya9dd3642009-03-30 14:02:45 -0400152static struct reiserfs_bitmap_node *get_bitmap_node(struct super_block *sb)
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700153{
Jeff Mahoneya9dd3642009-03-30 14:02:45 -0400154 struct reiserfs_journal *journal = SB_JOURNAL(sb);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700155 struct reiserfs_bitmap_node *bn = NULL;
156 struct list_head *entry = journal->j_bitmap_nodes.next;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700157
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700158 journal->j_used_bitmap_nodes++;
159 repeat:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700160
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700161 if (entry != &journal->j_bitmap_nodes) {
162 bn = list_entry(entry, struct reiserfs_bitmap_node, list);
163 list_del(entry);
Jeff Mahoneya9dd3642009-03-30 14:02:45 -0400164 memset(bn->data, 0, sb->s_blocksize);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700165 journal->j_free_bitmap_nodes--;
166 return bn;
167 }
Jeff Mahoneya9dd3642009-03-30 14:02:45 -0400168 bn = allocate_bitmap_node(sb);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700169 if (!bn) {
170 yield();
171 goto repeat;
172 }
173 return bn;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700174}
Jeff Mahoneya9dd3642009-03-30 14:02:45 -0400175static inline void free_bitmap_node(struct super_block *sb,
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700176 struct reiserfs_bitmap_node *bn)
177{
Jeff Mahoneya9dd3642009-03-30 14:02:45 -0400178 struct reiserfs_journal *journal = SB_JOURNAL(sb);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700179 journal->j_used_bitmap_nodes--;
180 if (journal->j_free_bitmap_nodes > REISERFS_MAX_BITMAP_NODES) {
Pekka Enbergd739b422006-02-01 03:06:43 -0800181 kfree(bn->data);
182 kfree(bn);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700183 } else {
184 list_add(&bn->list, &journal->j_bitmap_nodes);
185 journal->j_free_bitmap_nodes++;
186 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700187}
188
Jeff Mahoneya9dd3642009-03-30 14:02:45 -0400189static void allocate_bitmap_nodes(struct super_block *sb)
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700190{
191 int i;
Jeff Mahoneya9dd3642009-03-30 14:02:45 -0400192 struct reiserfs_journal *journal = SB_JOURNAL(sb);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700193 struct reiserfs_bitmap_node *bn = NULL;
194 for (i = 0; i < REISERFS_MIN_BITMAP_NODES; i++) {
Jeff Mahoneya9dd3642009-03-30 14:02:45 -0400195 bn = allocate_bitmap_node(sb);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700196 if (bn) {
197 list_add(&bn->list, &journal->j_bitmap_nodes);
198 journal->j_free_bitmap_nodes++;
199 } else {
Jeff Mahoney0222e652009-03-30 14:02:44 -0400200 break; /* this is ok, we'll try again when more are needed */
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700201 }
202 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700203}
204
Jeff Mahoneya9dd3642009-03-30 14:02:45 -0400205static int set_bit_in_list_bitmap(struct super_block *sb,
Jeff Mahoney3ee16672007-10-18 23:39:25 -0700206 b_blocknr_t block,
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700207 struct reiserfs_list_bitmap *jb)
208{
Jeff Mahoneya9dd3642009-03-30 14:02:45 -0400209 unsigned int bmap_nr = block / (sb->s_blocksize << 3);
210 unsigned int bit_nr = block % (sb->s_blocksize << 3);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700211
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700212 if (!jb->bitmaps[bmap_nr]) {
Jeff Mahoneya9dd3642009-03-30 14:02:45 -0400213 jb->bitmaps[bmap_nr] = get_bitmap_node(sb);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700214 }
215 set_bit(bit_nr, (unsigned long *)jb->bitmaps[bmap_nr]->data);
216 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700217}
218
Jeff Mahoneya9dd3642009-03-30 14:02:45 -0400219static void cleanup_bitmap_list(struct super_block *sb,
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700220 struct reiserfs_list_bitmap *jb)
221{
222 int i;
223 if (jb->bitmaps == NULL)
224 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700225
Jeff Mahoneya9dd3642009-03-30 14:02:45 -0400226 for (i = 0; i < reiserfs_bmap_count(sb); i++) {
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700227 if (jb->bitmaps[i]) {
Jeff Mahoneya9dd3642009-03-30 14:02:45 -0400228 free_bitmap_node(sb, jb->bitmaps[i]);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700229 jb->bitmaps[i] = NULL;
230 }
231 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700232}
233
234/*
235** only call this on FS unmount.
236*/
Jeff Mahoneya9dd3642009-03-30 14:02:45 -0400237static int free_list_bitmaps(struct super_block *sb,
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700238 struct reiserfs_list_bitmap *jb_array)
239{
240 int i;
241 struct reiserfs_list_bitmap *jb;
242 for (i = 0; i < JOURNAL_NUM_BITMAPS; i++) {
243 jb = jb_array + i;
244 jb->journal_list = NULL;
Jeff Mahoneya9dd3642009-03-30 14:02:45 -0400245 cleanup_bitmap_list(sb, jb);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700246 vfree(jb->bitmaps);
247 jb->bitmaps = NULL;
248 }
249 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700250}
251
Jeff Mahoneya9dd3642009-03-30 14:02:45 -0400252static int free_bitmap_nodes(struct super_block *sb)
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700253{
Jeff Mahoneya9dd3642009-03-30 14:02:45 -0400254 struct reiserfs_journal *journal = SB_JOURNAL(sb);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700255 struct list_head *next = journal->j_bitmap_nodes.next;
256 struct reiserfs_bitmap_node *bn;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700257
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700258 while (next != &journal->j_bitmap_nodes) {
259 bn = list_entry(next, struct reiserfs_bitmap_node, list);
260 list_del(next);
Pekka Enbergd739b422006-02-01 03:06:43 -0800261 kfree(bn->data);
262 kfree(bn);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700263 next = journal->j_bitmap_nodes.next;
264 journal->j_free_bitmap_nodes--;
265 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700266
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700267 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700268}
269
270/*
Jeff Mahoney0222e652009-03-30 14:02:44 -0400271** get memory for JOURNAL_NUM_BITMAPS worth of bitmaps.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700272** jb_array is the array to be filled in.
273*/
Jeff Mahoneya9dd3642009-03-30 14:02:45 -0400274int reiserfs_allocate_list_bitmaps(struct super_block *sb,
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700275 struct reiserfs_list_bitmap *jb_array,
Jeff Mahoney3ee16672007-10-18 23:39:25 -0700276 unsigned int bmap_nr)
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700277{
278 int i;
279 int failed = 0;
280 struct reiserfs_list_bitmap *jb;
281 int mem = bmap_nr * sizeof(struct reiserfs_bitmap_node *);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700282
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700283 for (i = 0; i < JOURNAL_NUM_BITMAPS; i++) {
284 jb = jb_array + i;
285 jb->journal_list = NULL;
Joe Perches558feb02011-05-28 10:36:33 -0700286 jb->bitmaps = vzalloc(mem);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700287 if (!jb->bitmaps) {
Jeff Mahoneya9dd3642009-03-30 14:02:45 -0400288 reiserfs_warning(sb, "clm-2000", "unable to "
Jeff Mahoney45b03d52009-03-30 14:02:21 -0400289 "allocate bitmaps for journal lists");
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700290 failed = 1;
291 break;
292 }
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700293 }
294 if (failed) {
Jeff Mahoneya9dd3642009-03-30 14:02:45 -0400295 free_list_bitmaps(sb, jb_array);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700296 return -1;
297 }
298 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700299}
300
301/*
Jeff Mahoney0222e652009-03-30 14:02:44 -0400302** find an available list bitmap. If you can't find one, flush a commit list
Linus Torvalds1da177e2005-04-16 15:20:36 -0700303** and try again
304*/
Jeff Mahoneya9dd3642009-03-30 14:02:45 -0400305static struct reiserfs_list_bitmap *get_list_bitmap(struct super_block *sb,
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700306 struct reiserfs_journal_list
307 *jl)
308{
309 int i, j;
Jeff Mahoneya9dd3642009-03-30 14:02:45 -0400310 struct reiserfs_journal *journal = SB_JOURNAL(sb);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700311 struct reiserfs_list_bitmap *jb = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700312
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700313 for (j = 0; j < (JOURNAL_NUM_BITMAPS * 3); j++) {
314 i = journal->j_list_bitmap_index;
315 journal->j_list_bitmap_index = (i + 1) % JOURNAL_NUM_BITMAPS;
316 jb = journal->j_list_bitmap + i;
317 if (journal->j_list_bitmap[i].journal_list) {
Jeff Mahoneya9dd3642009-03-30 14:02:45 -0400318 flush_commit_list(sb,
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700319 journal->j_list_bitmap[i].
320 journal_list, 1);
321 if (!journal->j_list_bitmap[i].journal_list) {
322 break;
323 }
324 } else {
325 break;
326 }
327 }
328 if (jb->journal_list) { /* double check to make sure if flushed correctly */
329 return NULL;
330 }
331 jb->journal_list = jl;
332 return jb;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700333}
334
Jeff Mahoney0222e652009-03-30 14:02:44 -0400335/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700336** allocates a new chunk of X nodes, and links them all together as a list.
337** Uses the cnode->next and cnode->prev pointers
338** returns NULL on failure
339*/
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700340static struct reiserfs_journal_cnode *allocate_cnodes(int num_cnodes)
341{
342 struct reiserfs_journal_cnode *head;
343 int i;
344 if (num_cnodes <= 0) {
345 return NULL;
346 }
Joe Perches558feb02011-05-28 10:36:33 -0700347 head = vzalloc(num_cnodes * sizeof(struct reiserfs_journal_cnode));
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700348 if (!head) {
349 return NULL;
350 }
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700351 head[0].prev = NULL;
352 head[0].next = head + 1;
353 for (i = 1; i < num_cnodes; i++) {
354 head[i].prev = head + (i - 1);
355 head[i].next = head + (i + 1); /* if last one, overwrite it after the if */
356 }
357 head[num_cnodes - 1].next = NULL;
358 return head;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700359}
360
361/*
Jeff Mahoney0222e652009-03-30 14:02:44 -0400362** pulls a cnode off the free list, or returns NULL on failure
Linus Torvalds1da177e2005-04-16 15:20:36 -0700363*/
Jeff Mahoneya9dd3642009-03-30 14:02:45 -0400364static struct reiserfs_journal_cnode *get_cnode(struct super_block *sb)
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700365{
366 struct reiserfs_journal_cnode *cn;
Jeff Mahoneya9dd3642009-03-30 14:02:45 -0400367 struct reiserfs_journal *journal = SB_JOURNAL(sb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700368
Jeff Mahoneya9dd3642009-03-30 14:02:45 -0400369 reiserfs_check_lock_depth(sb, "get_cnode");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700370
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700371 if (journal->j_cnode_free <= 0) {
372 return NULL;
373 }
374 journal->j_cnode_used++;
375 journal->j_cnode_free--;
376 cn = journal->j_cnode_free_list;
377 if (!cn) {
378 return cn;
379 }
380 if (cn->next) {
381 cn->next->prev = NULL;
382 }
383 journal->j_cnode_free_list = cn->next;
384 memset(cn, 0, sizeof(struct reiserfs_journal_cnode));
385 return cn;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700386}
387
388/*
Jeff Mahoney0222e652009-03-30 14:02:44 -0400389** returns a cnode to the free list
Linus Torvalds1da177e2005-04-16 15:20:36 -0700390*/
Jeff Mahoneya9dd3642009-03-30 14:02:45 -0400391static void free_cnode(struct super_block *sb,
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700392 struct reiserfs_journal_cnode *cn)
393{
Jeff Mahoneya9dd3642009-03-30 14:02:45 -0400394 struct reiserfs_journal *journal = SB_JOURNAL(sb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700395
Jeff Mahoneya9dd3642009-03-30 14:02:45 -0400396 reiserfs_check_lock_depth(sb, "free_cnode");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700397
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700398 journal->j_cnode_used--;
399 journal->j_cnode_free++;
400 /* memset(cn, 0, sizeof(struct reiserfs_journal_cnode)) ; */
401 cn->next = journal->j_cnode_free_list;
402 if (journal->j_cnode_free_list) {
403 journal->j_cnode_free_list->prev = cn;
404 }
405 cn->prev = NULL; /* not needed with the memset, but I might kill the memset, and forget to do this */
406 journal->j_cnode_free_list = cn;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700407}
408
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700409static void clear_prepared_bits(struct buffer_head *bh)
410{
411 clear_buffer_journal_prepared(bh);
412 clear_buffer_journal_restore_dirty(bh);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700413}
414
Linus Torvalds1da177e2005-04-16 15:20:36 -0700415/* return a cnode with same dev, block number and size in table, or null if not found */
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700416static inline struct reiserfs_journal_cnode *get_journal_hash_dev(struct
417 super_block
418 *sb,
419 struct
420 reiserfs_journal_cnode
421 **table,
422 long bl)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700423{
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700424 struct reiserfs_journal_cnode *cn;
425 cn = journal_hash(table, sb, bl);
426 while (cn) {
427 if (cn->blocknr == bl && cn->sb == sb)
428 return cn;
429 cn = cn->hnext;
430 }
431 return (struct reiserfs_journal_cnode *)0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700432}
433
434/*
435** this actually means 'can this block be reallocated yet?'. If you set search_all, a block can only be allocated
436** if it is not in the current transaction, was not freed by the current transaction, and has no chance of ever
437** being overwritten by a replay after crashing.
438**
439** If you don't set search_all, a block can only be allocated if it is not in the current transaction. Since deleting
440** a block removes it from the current transaction, this case should never happen. If you don't set search_all, make
441** sure you never write the block without logging it.
442**
443** next_zero_bit is a suggestion about the next block to try for find_forward.
444** when bl is rejected because it is set in a journal list bitmap, we search
445** for the next zero bit in the bitmap that rejected bl. Then, we return that
446** through next_zero_bit for find_forward to try.
447**
448** Just because we return something in next_zero_bit does not mean we won't
449** reject it on the next call to reiserfs_in_journal
450**
451*/
Jeff Mahoneya9dd3642009-03-30 14:02:45 -0400452int reiserfs_in_journal(struct super_block *sb,
Jeff Mahoney3ee16672007-10-18 23:39:25 -0700453 unsigned int bmap_nr, int bit_nr, int search_all,
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700454 b_blocknr_t * next_zero_bit)
455{
Jeff Mahoneya9dd3642009-03-30 14:02:45 -0400456 struct reiserfs_journal *journal = SB_JOURNAL(sb);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700457 struct reiserfs_journal_cnode *cn;
458 struct reiserfs_list_bitmap *jb;
459 int i;
460 unsigned long bl;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700461
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700462 *next_zero_bit = 0; /* always start this at zero. */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700463
Jeff Mahoneya9dd3642009-03-30 14:02:45 -0400464 PROC_INFO_INC(sb, journal.in_journal);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700465 /* If we aren't doing a search_all, this is a metablock, and it will be logged before use.
466 ** if we crash before the transaction that freed it commits, this transaction won't
467 ** have committed either, and the block will never be written
468 */
469 if (search_all) {
470 for (i = 0; i < JOURNAL_NUM_BITMAPS; i++) {
Jeff Mahoneya9dd3642009-03-30 14:02:45 -0400471 PROC_INFO_INC(sb, journal.in_journal_bitmap);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700472 jb = journal->j_list_bitmap + i;
473 if (jb->journal_list && jb->bitmaps[bmap_nr] &&
474 test_bit(bit_nr,
475 (unsigned long *)jb->bitmaps[bmap_nr]->
476 data)) {
477 *next_zero_bit =
478 find_next_zero_bit((unsigned long *)
479 (jb->bitmaps[bmap_nr]->
480 data),
Jeff Mahoneya9dd3642009-03-30 14:02:45 -0400481 sb->s_blocksize << 3,
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700482 bit_nr + 1);
483 return 1;
484 }
485 }
486 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700487
Jeff Mahoneya9dd3642009-03-30 14:02:45 -0400488 bl = bmap_nr * (sb->s_blocksize << 3) + bit_nr;
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700489 /* is it in any old transactions? */
490 if (search_all
491 && (cn =
Jeff Mahoneya9dd3642009-03-30 14:02:45 -0400492 get_journal_hash_dev(sb, journal->j_list_hash_table, bl))) {
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700493 return 1;
494 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700495
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700496 /* is it in the current transaction. This should never happen */
Jeff Mahoneya9dd3642009-03-30 14:02:45 -0400497 if ((cn = get_journal_hash_dev(sb, journal->j_hash_table, bl))) {
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700498 BUG();
499 return 1;
500 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700501
Jeff Mahoneya9dd3642009-03-30 14:02:45 -0400502 PROC_INFO_INC(sb, journal.in_journal_reusable);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700503 /* safe for reuse */
504 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700505}
506
507/* insert cn into table
508*/
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700509static inline void insert_journal_hash(struct reiserfs_journal_cnode **table,
510 struct reiserfs_journal_cnode *cn)
511{
512 struct reiserfs_journal_cnode *cn_orig;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700513
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700514 cn_orig = journal_hash(table, cn->sb, cn->blocknr);
515 cn->hnext = cn_orig;
516 cn->hprev = NULL;
517 if (cn_orig) {
518 cn_orig->hprev = cn;
519 }
520 journal_hash(table, cn->sb, cn->blocknr) = cn;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700521}
522
523/* lock the current transaction */
Jeff Mahoneya9dd3642009-03-30 14:02:45 -0400524static inline void lock_journal(struct super_block *sb)
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700525{
Jeff Mahoneya9dd3642009-03-30 14:02:45 -0400526 PROC_INFO_INC(sb, journal.lock_journal);
Frederic Weisbecker8ebc4232009-04-07 04:19:49 +0200527
528 reiserfs_mutex_lock_safe(&SB_JOURNAL(sb)->j_mutex, sb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700529}
530
531/* unlock the current transaction */
Jeff Mahoneya9dd3642009-03-30 14:02:45 -0400532static inline void unlock_journal(struct super_block *sb)
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700533{
Jeff Mahoneya9dd3642009-03-30 14:02:45 -0400534 mutex_unlock(&SB_JOURNAL(sb)->j_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700535}
536
537static inline void get_journal_list(struct reiserfs_journal_list *jl)
538{
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700539 jl->j_refcount++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700540}
541
542static inline void put_journal_list(struct super_block *s,
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700543 struct reiserfs_journal_list *jl)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700544{
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700545 if (jl->j_refcount < 1) {
Jeff Mahoneyc3a9c212009-03-30 14:02:25 -0400546 reiserfs_panic(s, "journal-2", "trans id %u, refcount at %d",
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700547 jl->j_trans_id, jl->j_refcount);
548 }
549 if (--jl->j_refcount == 0)
Pekka Enbergd739b422006-02-01 03:06:43 -0800550 kfree(jl);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700551}
552
553/*
554** this used to be much more involved, and I'm keeping it just in case things get ugly again.
555** it gets called by flush_commit_list, and cleans up any data stored about blocks freed during a
556** transaction.
557*/
Jeff Mahoneya9dd3642009-03-30 14:02:45 -0400558static void cleanup_freed_for_journal_list(struct super_block *sb,
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700559 struct reiserfs_journal_list *jl)
560{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700561
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700562 struct reiserfs_list_bitmap *jb = jl->j_list_bitmap;
563 if (jb) {
Jeff Mahoneya9dd3642009-03-30 14:02:45 -0400564 cleanup_bitmap_list(sb, jb);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700565 }
566 jl->j_list_bitmap->journal_list = NULL;
567 jl->j_list_bitmap = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700568}
569
570static int journal_list_still_alive(struct super_block *s,
Jeff Mahoney600ed412009-03-30 14:02:17 -0400571 unsigned int trans_id)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700572{
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700573 struct reiserfs_journal *journal = SB_JOURNAL(s);
574 struct list_head *entry = &journal->j_journal_list;
575 struct reiserfs_journal_list *jl;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700576
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700577 if (!list_empty(entry)) {
578 jl = JOURNAL_LIST_ENTRY(entry->next);
579 if (jl->j_trans_id <= trans_id) {
580 return 1;
581 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700582 }
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700583 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700584}
585
Chris Mason398c95b2007-10-16 23:29:44 -0700586/*
587 * If page->mapping was null, we failed to truncate this page for
588 * some reason. Most likely because it was truncated after being
589 * logged via data=journal.
590 *
591 * This does a check to see if the buffer belongs to one of these
592 * lost pages before doing the final put_bh. If page->mapping was
593 * null, it tries to free buffers on the page, which should make the
594 * final page_cache_release drop the page from the lru.
595 */
596static void release_buffer_page(struct buffer_head *bh)
597{
598 struct page *page = bh->b_page;
Nick Piggin529ae9a2008-08-02 12:01:03 +0200599 if (!page->mapping && trylock_page(page)) {
Chris Mason398c95b2007-10-16 23:29:44 -0700600 page_cache_get(page);
601 put_bh(bh);
602 if (!page->mapping)
603 try_to_free_buffers(page);
604 unlock_page(page);
605 page_cache_release(page);
606 } else {
607 put_bh(bh);
608 }
609}
610
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700611static void reiserfs_end_buffer_io_sync(struct buffer_head *bh, int uptodate)
612{
613 char b[BDEVNAME_SIZE];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700614
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700615 if (buffer_journaled(bh)) {
Jeff Mahoney45b03d52009-03-30 14:02:21 -0400616 reiserfs_warning(NULL, "clm-2084",
617 "pinned buffer %lu:%s sent to disk",
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700618 bh->b_blocknr, bdevname(bh->b_bdev, b));
619 }
620 if (uptodate)
621 set_buffer_uptodate(bh);
622 else
623 clear_buffer_uptodate(bh);
Chris Mason398c95b2007-10-16 23:29:44 -0700624
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700625 unlock_buffer(bh);
Chris Mason398c95b2007-10-16 23:29:44 -0700626 release_buffer_page(bh);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700627}
628
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700629static void reiserfs_end_ordered_io(struct buffer_head *bh, int uptodate)
630{
631 if (uptodate)
632 set_buffer_uptodate(bh);
633 else
634 clear_buffer_uptodate(bh);
635 unlock_buffer(bh);
636 put_bh(bh);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700637}
638
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700639static void submit_logged_buffer(struct buffer_head *bh)
640{
641 get_bh(bh);
642 bh->b_end_io = reiserfs_end_buffer_io_sync;
643 clear_buffer_journal_new(bh);
644 clear_buffer_dirty(bh);
645 if (!test_clear_buffer_journal_test(bh))
646 BUG();
647 if (!buffer_uptodate(bh))
648 BUG();
649 submit_bh(WRITE, bh);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700650}
651
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700652static void submit_ordered_buffer(struct buffer_head *bh)
653{
654 get_bh(bh);
655 bh->b_end_io = reiserfs_end_ordered_io;
656 clear_buffer_dirty(bh);
657 if (!buffer_uptodate(bh))
658 BUG();
659 submit_bh(WRITE, bh);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700660}
661
Linus Torvalds1da177e2005-04-16 15:20:36 -0700662#define CHUNK_SIZE 32
663struct buffer_chunk {
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700664 struct buffer_head *bh[CHUNK_SIZE];
665 int nr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700666};
667
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700668static void write_chunk(struct buffer_chunk *chunk)
669{
670 int i;
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700671 for (i = 0; i < chunk->nr; i++) {
672 submit_logged_buffer(chunk->bh[i]);
673 }
674 chunk->nr = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700675}
676
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700677static void write_ordered_chunk(struct buffer_chunk *chunk)
678{
679 int i;
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700680 for (i = 0; i < chunk->nr; i++) {
681 submit_ordered_buffer(chunk->bh[i]);
682 }
683 chunk->nr = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700684}
685
686static int add_to_chunk(struct buffer_chunk *chunk, struct buffer_head *bh,
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700687 spinlock_t * lock, void (fn) (struct buffer_chunk *))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700688{
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700689 int ret = 0;
Eric Sesterhenn14a61442006-10-03 23:36:38 +0200690 BUG_ON(chunk->nr >= CHUNK_SIZE);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700691 chunk->bh[chunk->nr++] = bh;
692 if (chunk->nr >= CHUNK_SIZE) {
693 ret = 1;
694 if (lock)
695 spin_unlock(lock);
696 fn(chunk);
697 if (lock)
698 spin_lock(lock);
699 }
700 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700701}
702
Linus Torvalds1da177e2005-04-16 15:20:36 -0700703static atomic_t nr_reiserfs_jh = ATOMIC_INIT(0);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700704static struct reiserfs_jh *alloc_jh(void)
705{
706 struct reiserfs_jh *jh;
707 while (1) {
708 jh = kmalloc(sizeof(*jh), GFP_NOFS);
709 if (jh) {
710 atomic_inc(&nr_reiserfs_jh);
711 return jh;
712 }
713 yield();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700714 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700715}
716
717/*
718 * we want to free the jh when the buffer has been written
719 * and waited on
720 */
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700721void reiserfs_free_jh(struct buffer_head *bh)
722{
723 struct reiserfs_jh *jh;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700724
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700725 jh = bh->b_private;
726 if (jh) {
727 bh->b_private = NULL;
728 jh->bh = NULL;
729 list_del_init(&jh->list);
730 kfree(jh);
731 if (atomic_read(&nr_reiserfs_jh) <= 0)
732 BUG();
733 atomic_dec(&nr_reiserfs_jh);
734 put_bh(bh);
735 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700736}
737
738static inline int __add_jh(struct reiserfs_journal *j, struct buffer_head *bh,
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700739 int tail)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700740{
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700741 struct reiserfs_jh *jh;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700742
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700743 if (bh->b_private) {
744 spin_lock(&j->j_dirty_buffers_lock);
745 if (!bh->b_private) {
746 spin_unlock(&j->j_dirty_buffers_lock);
747 goto no_jh;
748 }
749 jh = bh->b_private;
750 list_del_init(&jh->list);
751 } else {
752 no_jh:
753 get_bh(bh);
754 jh = alloc_jh();
755 spin_lock(&j->j_dirty_buffers_lock);
756 /* buffer must be locked for __add_jh, should be able to have
757 * two adds at the same time
758 */
Eric Sesterhenn14a61442006-10-03 23:36:38 +0200759 BUG_ON(bh->b_private);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700760 jh->bh = bh;
761 bh->b_private = jh;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700762 }
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700763 jh->jl = j->j_current_jl;
764 if (tail)
765 list_add_tail(&jh->list, &jh->jl->j_tail_bh_list);
766 else {
767 list_add_tail(&jh->list, &jh->jl->j_bh_list);
768 }
769 spin_unlock(&j->j_dirty_buffers_lock);
770 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700771}
772
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700773int reiserfs_add_tail_list(struct inode *inode, struct buffer_head *bh)
774{
775 return __add_jh(SB_JOURNAL(inode->i_sb), bh, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700776}
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700777int reiserfs_add_ordered_list(struct inode *inode, struct buffer_head *bh)
778{
779 return __add_jh(SB_JOURNAL(inode->i_sb), bh, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700780}
781
782#define JH_ENTRY(l) list_entry((l), struct reiserfs_jh, list)
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700783static int write_ordered_buffers(spinlock_t * lock,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700784 struct reiserfs_journal *j,
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700785 struct reiserfs_journal_list *jl,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700786 struct list_head *list)
787{
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700788 struct buffer_head *bh;
789 struct reiserfs_jh *jh;
790 int ret = j->j_errno;
791 struct buffer_chunk chunk;
792 struct list_head tmp;
793 INIT_LIST_HEAD(&tmp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700794
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700795 chunk.nr = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700796 spin_lock(lock);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700797 while (!list_empty(list)) {
798 jh = JH_ENTRY(list->next);
799 bh = jh->bh;
800 get_bh(bh);
Nick Pigginca5de402008-08-02 12:02:13 +0200801 if (!trylock_buffer(bh)) {
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700802 if (!buffer_dirty(bh)) {
Akinobu Mitaf1166292006-06-26 00:24:46 -0700803 list_move(&jh->list, &tmp);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700804 goto loop_next;
805 }
806 spin_unlock(lock);
807 if (chunk.nr)
808 write_ordered_chunk(&chunk);
809 wait_on_buffer(bh);
810 cond_resched();
811 spin_lock(lock);
812 goto loop_next;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700813 }
Chris Mason3d4492f2006-02-01 03:06:49 -0800814 /* in theory, dirty non-uptodate buffers should never get here,
815 * but the upper layer io error paths still have a few quirks.
816 * Handle them here as gracefully as we can
817 */
818 if (!buffer_uptodate(bh) && buffer_dirty(bh)) {
819 clear_buffer_dirty(bh);
820 ret = -EIO;
821 }
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700822 if (buffer_dirty(bh)) {
Akinobu Mitaf1166292006-06-26 00:24:46 -0700823 list_move(&jh->list, &tmp);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700824 add_to_chunk(&chunk, bh, lock, write_ordered_chunk);
825 } else {
826 reiserfs_free_jh(bh);
827 unlock_buffer(bh);
828 }
829 loop_next:
830 put_bh(bh);
831 cond_resched_lock(lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700832 }
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700833 if (chunk.nr) {
834 spin_unlock(lock);
835 write_ordered_chunk(&chunk);
836 spin_lock(lock);
837 }
838 while (!list_empty(&tmp)) {
839 jh = JH_ENTRY(tmp.prev);
840 bh = jh->bh;
841 get_bh(bh);
842 reiserfs_free_jh(bh);
843
844 if (buffer_locked(bh)) {
845 spin_unlock(lock);
846 wait_on_buffer(bh);
847 spin_lock(lock);
848 }
849 if (!buffer_uptodate(bh)) {
850 ret = -EIO;
851 }
Chris Masond62b1b82006-02-01 03:06:47 -0800852 /* ugly interaction with invalidatepage here.
853 * reiserfs_invalidate_page will pin any buffer that has a valid
854 * journal head from an older transaction. If someone else sets
855 * our buffer dirty after we write it in the first loop, and
856 * then someone truncates the page away, nobody will ever write
857 * the buffer. We're safe if we write the page one last time
858 * after freeing the journal header.
859 */
860 if (buffer_dirty(bh) && unlikely(bh->b_page->mapping == NULL)) {
861 spin_unlock(lock);
862 ll_rw_block(WRITE, 1, &bh);
863 spin_lock(lock);
864 }
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700865 put_bh(bh);
866 cond_resched_lock(lock);
867 }
868 spin_unlock(lock);
869 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700870}
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700871
872static int flush_older_commits(struct super_block *s,
873 struct reiserfs_journal_list *jl)
874{
875 struct reiserfs_journal *journal = SB_JOURNAL(s);
876 struct reiserfs_journal_list *other_jl;
877 struct reiserfs_journal_list *first_jl;
878 struct list_head *entry;
Jeff Mahoney600ed412009-03-30 14:02:17 -0400879 unsigned int trans_id = jl->j_trans_id;
880 unsigned int other_trans_id;
881 unsigned int first_trans_id;
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700882
883 find_first:
884 /*
885 * first we walk backwards to find the oldest uncommitted transation
886 */
887 first_jl = jl;
888 entry = jl->j_list.prev;
889 while (1) {
890 other_jl = JOURNAL_LIST_ENTRY(entry);
891 if (entry == &journal->j_journal_list ||
892 atomic_read(&other_jl->j_older_commits_done))
893 break;
894
895 first_jl = other_jl;
896 entry = other_jl->j_list.prev;
897 }
898
899 /* if we didn't find any older uncommitted transactions, return now */
900 if (first_jl == jl) {
901 return 0;
902 }
903
904 first_trans_id = first_jl->j_trans_id;
905
906 entry = &first_jl->j_list;
907 while (1) {
908 other_jl = JOURNAL_LIST_ENTRY(entry);
909 other_trans_id = other_jl->j_trans_id;
910
911 if (other_trans_id < trans_id) {
912 if (atomic_read(&other_jl->j_commit_left) != 0) {
913 flush_commit_list(s, other_jl, 0);
914
915 /* list we were called with is gone, return */
916 if (!journal_list_still_alive(s, trans_id))
917 return 1;
918
919 /* the one we just flushed is gone, this means all
920 * older lists are also gone, so first_jl is no longer
921 * valid either. Go back to the beginning.
922 */
923 if (!journal_list_still_alive
924 (s, other_trans_id)) {
925 goto find_first;
926 }
927 }
928 entry = entry->next;
929 if (entry == &journal->j_journal_list)
930 return 0;
931 } else {
932 return 0;
933 }
934 }
935 return 0;
936}
Adrian Bunkdeba0f42007-10-16 23:26:03 -0700937
938static int reiserfs_async_progress_wait(struct super_block *s)
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700939{
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700940 struct reiserfs_journal *j = SB_JOURNAL(s);
Frederic Weisbecker8ebc4232009-04-07 04:19:49 +0200941
942 if (atomic_read(&j->j_async_throttle)) {
Jeff Mahoney278f6672013-08-08 17:34:46 -0400943 int depth;
944
945 depth = reiserfs_write_unlock_nested(s);
Jens Axboe8aa7e842009-07-09 14:52:32 +0200946 congestion_wait(BLK_RW_ASYNC, HZ / 10);
Jeff Mahoney278f6672013-08-08 17:34:46 -0400947 reiserfs_write_lock_nested(s, depth);
Frederic Weisbecker8ebc4232009-04-07 04:19:49 +0200948 }
949
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700950 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700951}
952
953/*
954** if this journal list still has commit blocks unflushed, send them to disk.
955**
956** log areas must be flushed in order (transaction 2 can't commit before transaction 1)
957** Before the commit block can by written, every other log block must be safely on disk
958**
959*/
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700960static int flush_commit_list(struct super_block *s,
961 struct reiserfs_journal_list *jl, int flushall)
962{
963 int i;
Jeff Mahoney3ee16672007-10-18 23:39:25 -0700964 b_blocknr_t bn;
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700965 struct buffer_head *tbh = NULL;
Jeff Mahoney600ed412009-03-30 14:02:17 -0400966 unsigned int trans_id = jl->j_trans_id;
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700967 struct reiserfs_journal *journal = SB_JOURNAL(s);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700968 int retval = 0;
Chris Masone0e851c2006-02-01 03:06:49 -0800969 int write_len;
Jeff Mahoney278f6672013-08-08 17:34:46 -0400970 int depth;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700971
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700972 reiserfs_check_lock_depth(s, "flush_commit_list");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700973
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700974 if (atomic_read(&jl->j_older_commits_done)) {
975 return 0;
976 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700977
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700978 /* before we can put our commit blocks on disk, we have to make sure everyone older than
979 ** us is on disk too
980 */
981 BUG_ON(jl->j_len <= 0);
982 BUG_ON(trans_id == journal->j_trans_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700983
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700984 get_journal_list(jl);
985 if (flushall) {
986 if (flush_older_commits(s, jl) == 1) {
987 /* list disappeared during flush_older_commits. return */
988 goto put_jl;
989 }
990 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700991
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700992 /* make sure nobody is trying to flush this one at the same time */
Frederic Weisbecker8ebc4232009-04-07 04:19:49 +0200993 reiserfs_mutex_lock_safe(&jl->j_commit_mutex, s);
994
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700995 if (!journal_list_still_alive(s, trans_id)) {
Jeff Mahoney90415de2008-07-25 01:46:40 -0700996 mutex_unlock(&jl->j_commit_mutex);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700997 goto put_jl;
998 }
999 BUG_ON(jl->j_trans_id == 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001000
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001001 /* this commit is done, exit */
1002 if (atomic_read(&(jl->j_commit_left)) <= 0) {
1003 if (flushall) {
1004 atomic_set(&(jl->j_older_commits_done), 1);
1005 }
Jeff Mahoney90415de2008-07-25 01:46:40 -07001006 mutex_unlock(&jl->j_commit_mutex);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001007 goto put_jl;
1008 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001009
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001010 if (!list_empty(&jl->j_bh_list)) {
Chris Mason3d4492f2006-02-01 03:06:49 -08001011 int ret;
Frederic Weisbecker8ebc4232009-04-07 04:19:49 +02001012
1013 /*
1014 * We might sleep in numerous places inside
1015 * write_ordered_buffers. Relax the write lock.
1016 */
Jeff Mahoney278f6672013-08-08 17:34:46 -04001017 depth = reiserfs_write_unlock_nested(s);
Chris Mason3d4492f2006-02-01 03:06:49 -08001018 ret = write_ordered_buffers(&journal->j_dirty_buffers_lock,
1019 journal, jl, &jl->j_bh_list);
1020 if (ret < 0 && retval == 0)
1021 retval = ret;
Jeff Mahoney278f6672013-08-08 17:34:46 -04001022 reiserfs_write_lock_nested(s, depth);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001023 }
1024 BUG_ON(!list_empty(&jl->j_bh_list));
1025 /*
1026 * for the description block and all the log blocks, submit any buffers
Chris Masone0e851c2006-02-01 03:06:49 -08001027 * that haven't already reached the disk. Try to write at least 256
1028 * log blocks. later on, we will only wait on blocks that correspond
1029 * to this transaction, but while we're unplugging we might as well
1030 * get a chunk of data on there.
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001031 */
1032 atomic_inc(&journal->j_async_throttle);
Chris Masone0e851c2006-02-01 03:06:49 -08001033 write_len = jl->j_len + 1;
1034 if (write_len < 256)
1035 write_len = 256;
1036 for (i = 0 ; i < write_len ; i++) {
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001037 bn = SB_ONDISK_JOURNAL_1st_BLOCK(s) + (jl->j_start + i) %
1038 SB_ONDISK_JOURNAL_SIZE(s);
1039 tbh = journal_find_get_block(s, bn);
Chris Masone0e851c2006-02-01 03:06:49 -08001040 if (tbh) {
Frederic Weisbecker6e3647a2009-05-01 02:27:39 +02001041 if (buffer_dirty(tbh)) {
Jeff Mahoney278f6672013-08-08 17:34:46 -04001042 depth = reiserfs_write_unlock_nested(s);
Frederic Weisbecker6e3647a2009-05-01 02:27:39 +02001043 ll_rw_block(WRITE, 1, &tbh);
Jeff Mahoney278f6672013-08-08 17:34:46 -04001044 reiserfs_write_lock_nested(s, depth);
Frederic Weisbecker6e3647a2009-05-01 02:27:39 +02001045 }
Chris Masone0e851c2006-02-01 03:06:49 -08001046 put_bh(tbh) ;
1047 }
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001048 }
1049 atomic_dec(&journal->j_async_throttle);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001050
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001051 for (i = 0; i < (jl->j_len + 1); i++) {
1052 bn = SB_ONDISK_JOURNAL_1st_BLOCK(s) +
1053 (jl->j_start + i) % SB_ONDISK_JOURNAL_SIZE(s);
1054 tbh = journal_find_get_block(s, bn);
Frederic Weisbecker8ebc4232009-04-07 04:19:49 +02001055
Jeff Mahoney278f6672013-08-08 17:34:46 -04001056 depth = reiserfs_write_unlock_nested(s);
1057 __wait_on_buffer(tbh);
1058 reiserfs_write_lock_nested(s, depth);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001059 // since we're using ll_rw_blk above, it might have skipped over
1060 // a locked buffer. Double check here
1061 //
Frederic Weisbecker8ebc4232009-04-07 04:19:49 +02001062 /* redundant, sync_dirty_buffer() checks */
1063 if (buffer_dirty(tbh)) {
Jeff Mahoney278f6672013-08-08 17:34:46 -04001064 depth = reiserfs_write_unlock_nested(s);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001065 sync_dirty_buffer(tbh);
Jeff Mahoney278f6672013-08-08 17:34:46 -04001066 reiserfs_write_lock_nested(s, depth);
Frederic Weisbecker8ebc4232009-04-07 04:19:49 +02001067 }
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001068 if (unlikely(!buffer_uptodate(tbh))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001069#ifdef CONFIG_REISERFS_CHECK
Jeff Mahoney45b03d52009-03-30 14:02:21 -04001070 reiserfs_warning(s, "journal-601",
1071 "buffer write failed");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001072#endif
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001073 retval = -EIO;
1074 }
1075 put_bh(tbh); /* once for journal_find_get_block */
1076 put_bh(tbh); /* once due to original getblk in do_journal_end */
1077 atomic_dec(&(jl->j_commit_left));
1078 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001079
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001080 BUG_ON(atomic_read(&(jl->j_commit_left)) != 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001081
Christoph Hellwig7cd33ad2010-08-18 05:29:14 -04001082 /* If there was a write error in the journal - we can't commit
1083 * this transaction - it will be invalid and, if successful,
1084 * will just end up propagating the write error out to
1085 * the file system. */
1086 if (likely(!retval && !reiserfs_is_journal_aborted (journal))) {
1087 if (buffer_dirty(jl->j_commit_bh))
1088 BUG();
1089 mark_buffer_dirty(jl->j_commit_bh) ;
Jeff Mahoney278f6672013-08-08 17:34:46 -04001090 depth = reiserfs_write_unlock_nested(s);
Christoph Hellwig7cd33ad2010-08-18 05:29:14 -04001091 if (reiserfs_barrier_flush(s))
1092 __sync_dirty_buffer(jl->j_commit_bh, WRITE_FLUSH_FUA);
1093 else
1094 sync_dirty_buffer(jl->j_commit_bh);
Jeff Mahoney278f6672013-08-08 17:34:46 -04001095 reiserfs_write_lock_nested(s, depth);
Frederic Weisbecker8ebc4232009-04-07 04:19:49 +02001096 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001097
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001098 /* If there was a write error in the journal - we can't commit this
1099 * transaction - it will be invalid and, if successful, will just end
Robert P. J. Daybeb7dd82007-05-09 07:14:03 +02001100 * up propagating the write error out to the filesystem. */
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001101 if (unlikely(!buffer_uptodate(jl->j_commit_bh))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001102#ifdef CONFIG_REISERFS_CHECK
Jeff Mahoney45b03d52009-03-30 14:02:21 -04001103 reiserfs_warning(s, "journal-615", "buffer write failed");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001104#endif
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001105 retval = -EIO;
1106 }
1107 bforget(jl->j_commit_bh);
1108 if (journal->j_last_commit_id != 0 &&
1109 (jl->j_trans_id - journal->j_last_commit_id) != 1) {
Jeff Mahoney45b03d52009-03-30 14:02:21 -04001110 reiserfs_warning(s, "clm-2200", "last commit %lu, current %lu",
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001111 journal->j_last_commit_id, jl->j_trans_id);
1112 }
1113 journal->j_last_commit_id = jl->j_trans_id;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001114
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001115 /* now, every commit block is on the disk. It is safe to allow blocks freed during this transaction to be reallocated */
1116 cleanup_freed_for_journal_list(s, jl);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001117
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001118 retval = retval ? retval : journal->j_errno;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001119
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001120 /* mark the metadata dirty */
1121 if (!retval)
1122 dirty_one_transaction(s, jl);
1123 atomic_dec(&(jl->j_commit_left));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001124
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001125 if (flushall) {
1126 atomic_set(&(jl->j_older_commits_done), 1);
1127 }
Jeff Mahoney90415de2008-07-25 01:46:40 -07001128 mutex_unlock(&jl->j_commit_mutex);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001129 put_jl:
1130 put_journal_list(s, jl);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001131
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001132 if (retval)
1133 reiserfs_abort(s, retval, "Journal write error in %s",
Harvey Harrisonfbe54982008-04-28 02:16:22 -07001134 __func__);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001135 return retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001136}
1137
1138/*
Jeff Mahoney0222e652009-03-30 14:02:44 -04001139** flush_journal_list frequently needs to find a newer transaction for a given block. This does that, or
1140** returns NULL if it can't find anything
Linus Torvalds1da177e2005-04-16 15:20:36 -07001141*/
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001142static struct reiserfs_journal_list *find_newer_jl_for_cn(struct
1143 reiserfs_journal_cnode
1144 *cn)
1145{
1146 struct super_block *sb = cn->sb;
1147 b_blocknr_t blocknr = cn->blocknr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001148
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001149 cn = cn->hprev;
1150 while (cn) {
1151 if (cn->sb == sb && cn->blocknr == blocknr && cn->jlist) {
1152 return cn->jlist;
1153 }
1154 cn = cn->hprev;
1155 }
1156 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001157}
1158
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001159static void remove_journal_hash(struct super_block *,
1160 struct reiserfs_journal_cnode **,
1161 struct reiserfs_journal_list *, unsigned long,
1162 int);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001163
1164/*
1165** once all the real blocks have been flushed, it is safe to remove them from the
1166** journal list for this transaction. Aside from freeing the cnode, this also allows the
1167** block to be reallocated for data blocks if it had been deleted.
1168*/
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04001169static void remove_all_from_journal_list(struct super_block *sb,
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001170 struct reiserfs_journal_list *jl,
1171 int debug)
1172{
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04001173 struct reiserfs_journal *journal = SB_JOURNAL(sb);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001174 struct reiserfs_journal_cnode *cn, *last;
1175 cn = jl->j_realblock;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001176
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001177 /* which is better, to lock once around the whole loop, or
1178 ** to lock for each call to remove_journal_hash?
1179 */
1180 while (cn) {
1181 if (cn->blocknr != 0) {
1182 if (debug) {
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04001183 reiserfs_warning(sb, "reiserfs-2201",
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001184 "block %u, bh is %d, state %ld",
1185 cn->blocknr, cn->bh ? 1 : 0,
1186 cn->state);
1187 }
1188 cn->state = 0;
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04001189 remove_journal_hash(sb, journal->j_list_hash_table,
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001190 jl, cn->blocknr, 1);
1191 }
1192 last = cn;
1193 cn = cn->next;
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04001194 free_cnode(sb, last);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001195 }
1196 jl->j_realblock = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001197}
1198
1199/*
1200** if this timestamp is greater than the timestamp we wrote last to the header block, write it to the header block.
1201** once this is done, I can safely say the log area for this transaction won't ever be replayed, and I can start
1202** releasing blocks in this transaction for reuse as data blocks.
1203** called by flush_journal_list, before it calls remove_all_from_journal_list
1204**
1205*/
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04001206static int _update_journal_header_block(struct super_block *sb,
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001207 unsigned long offset,
Jeff Mahoney600ed412009-03-30 14:02:17 -04001208 unsigned int trans_id)
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001209{
1210 struct reiserfs_journal_header *jh;
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04001211 struct reiserfs_journal *journal = SB_JOURNAL(sb);
Jeff Mahoney278f6672013-08-08 17:34:46 -04001212 int depth;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001213
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001214 if (reiserfs_is_journal_aborted(journal))
1215 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001216
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001217 if (trans_id >= journal->j_last_flush_trans_id) {
1218 if (buffer_locked((journal->j_header_bh))) {
Jeff Mahoney278f6672013-08-08 17:34:46 -04001219 depth = reiserfs_write_unlock_nested(sb);
1220 __wait_on_buffer(journal->j_header_bh);
1221 reiserfs_write_lock_nested(sb, depth);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001222 if (unlikely(!buffer_uptodate(journal->j_header_bh))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001223#ifdef CONFIG_REISERFS_CHECK
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04001224 reiserfs_warning(sb, "journal-699",
Jeff Mahoney45b03d52009-03-30 14:02:21 -04001225 "buffer write failed");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001226#endif
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001227 return -EIO;
1228 }
1229 }
1230 journal->j_last_flush_trans_id = trans_id;
1231 journal->j_first_unflushed_offset = offset;
1232 jh = (struct reiserfs_journal_header *)(journal->j_header_bh->
1233 b_data);
1234 jh->j_last_flush_trans_id = cpu_to_le32(trans_id);
1235 jh->j_first_unflushed_offset = cpu_to_le32(offset);
1236 jh->j_mount_id = cpu_to_le32(journal->j_mount_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001237
Christoph Hellwig7cd33ad2010-08-18 05:29:14 -04001238 set_buffer_dirty(journal->j_header_bh);
Jeff Mahoney278f6672013-08-08 17:34:46 -04001239 depth = reiserfs_write_unlock_nested(sb);
Christoph Hellwig7cd33ad2010-08-18 05:29:14 -04001240
1241 if (reiserfs_barrier_flush(sb))
1242 __sync_dirty_buffer(journal->j_header_bh, WRITE_FLUSH_FUA);
1243 else
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001244 sync_dirty_buffer(journal->j_header_bh);
Christoph Hellwig7cd33ad2010-08-18 05:29:14 -04001245
Jeff Mahoney278f6672013-08-08 17:34:46 -04001246 reiserfs_write_lock_nested(sb, depth);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001247 if (!buffer_uptodate(journal->j_header_bh)) {
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04001248 reiserfs_warning(sb, "journal-837",
Jeff Mahoney45b03d52009-03-30 14:02:21 -04001249 "IO error during journal replay");
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001250 return -EIO;
1251 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001252 }
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001253 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001254}
1255
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04001256static int update_journal_header_block(struct super_block *sb,
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001257 unsigned long offset,
Jeff Mahoney600ed412009-03-30 14:02:17 -04001258 unsigned int trans_id)
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001259{
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04001260 return _update_journal_header_block(sb, offset, trans_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001261}
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001262
Jeff Mahoney0222e652009-03-30 14:02:44 -04001263/*
1264** flush any and all journal lists older than you are
Linus Torvalds1da177e2005-04-16 15:20:36 -07001265** can only be called from flush_journal_list
1266*/
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04001267static int flush_older_journal_lists(struct super_block *sb,
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001268 struct reiserfs_journal_list *jl)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001269{
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001270 struct list_head *entry;
1271 struct reiserfs_journal_list *other_jl;
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04001272 struct reiserfs_journal *journal = SB_JOURNAL(sb);
Jeff Mahoney600ed412009-03-30 14:02:17 -04001273 unsigned int trans_id = jl->j_trans_id;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001274
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001275 /* we know we are the only ones flushing things, no extra race
1276 * protection is required.
1277 */
1278 restart:
1279 entry = journal->j_journal_list.next;
1280 /* Did we wrap? */
1281 if (entry == &journal->j_journal_list)
1282 return 0;
1283 other_jl = JOURNAL_LIST_ENTRY(entry);
1284 if (other_jl->j_trans_id < trans_id) {
1285 BUG_ON(other_jl->j_refcount <= 0);
1286 /* do not flush all */
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04001287 flush_journal_list(sb, other_jl, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001288
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001289 /* other_jl is now deleted from the list */
1290 goto restart;
1291 }
1292 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001293}
1294
1295static void del_from_work_list(struct super_block *s,
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001296 struct reiserfs_journal_list *jl)
1297{
1298 struct reiserfs_journal *journal = SB_JOURNAL(s);
1299 if (!list_empty(&jl->j_working_list)) {
1300 list_del_init(&jl->j_working_list);
1301 journal->j_num_work_lists--;
1302 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001303}
1304
1305/* flush a journal list, both commit and real blocks
1306**
1307** always set flushall to 1, unless you are calling from inside
1308** flush_journal_list
1309**
Jeff Mahoney0222e652009-03-30 14:02:44 -04001310** IMPORTANT. This can only be called while there are no journal writers,
1311** and the journal is locked. That means it can only be called from
Linus Torvalds1da177e2005-04-16 15:20:36 -07001312** do_journal_end, or by journal_release
1313*/
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001314static int flush_journal_list(struct super_block *s,
1315 struct reiserfs_journal_list *jl, int flushall)
1316{
1317 struct reiserfs_journal_list *pjl;
1318 struct reiserfs_journal_cnode *cn, *last;
1319 int count;
1320 int was_jwait = 0;
1321 int was_dirty = 0;
1322 struct buffer_head *saved_bh;
1323 unsigned long j_len_saved = jl->j_len;
1324 struct reiserfs_journal *journal = SB_JOURNAL(s);
1325 int err = 0;
Jeff Mahoney278f6672013-08-08 17:34:46 -04001326 int depth;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001327
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001328 BUG_ON(j_len_saved <= 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001329
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001330 if (atomic_read(&journal->j_wcount) != 0) {
Jeff Mahoney45b03d52009-03-30 14:02:21 -04001331 reiserfs_warning(s, "clm-2048", "called with wcount %d",
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001332 atomic_read(&journal->j_wcount));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001333 }
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001334
1335 /* if flushall == 0, the lock is already held */
1336 if (flushall) {
Frederic Weisbecker8ebc4232009-04-07 04:19:49 +02001337 reiserfs_mutex_lock_safe(&journal->j_flush_mutex, s);
Jeff Mahoneyafe70252008-07-25 01:46:39 -07001338 } else if (mutex_trylock(&journal->j_flush_mutex)) {
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001339 BUG();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001340 }
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001341
1342 count = 0;
1343 if (j_len_saved > journal->j_trans_max) {
Jeff Mahoneyc3a9c212009-03-30 14:02:25 -04001344 reiserfs_panic(s, "journal-715", "length is %lu, trans id %lu",
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001345 j_len_saved, jl->j_trans_id);
1346 return 0;
1347 }
1348
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001349 /* if all the work is already done, get out of here */
1350 if (atomic_read(&(jl->j_nonzerolen)) <= 0 &&
1351 atomic_read(&(jl->j_commit_left)) <= 0) {
1352 goto flush_older_and_return;
1353 }
1354
Jeff Mahoney0222e652009-03-30 14:02:44 -04001355 /* start by putting the commit list on disk. This will also flush
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001356 ** the commit lists of any olders transactions
1357 */
1358 flush_commit_list(s, jl, 1);
1359
1360 if (!(jl->j_state & LIST_DIRTY)
1361 && !reiserfs_is_journal_aborted(journal))
1362 BUG();
1363
1364 /* are we done now? */
1365 if (atomic_read(&(jl->j_nonzerolen)) <= 0 &&
1366 atomic_read(&(jl->j_commit_left)) <= 0) {
1367 goto flush_older_and_return;
1368 }
1369
Jeff Mahoney0222e652009-03-30 14:02:44 -04001370 /* loop through each cnode, see if we need to write it,
1371 ** or wait on a more recent transaction, or just ignore it
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001372 */
1373 if (atomic_read(&(journal->j_wcount)) != 0) {
Jeff Mahoneyc3a9c212009-03-30 14:02:25 -04001374 reiserfs_panic(s, "journal-844", "journal list is flushing, "
1375 "wcount is not 0");
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001376 }
1377 cn = jl->j_realblock;
1378 while (cn) {
1379 was_jwait = 0;
1380 was_dirty = 0;
1381 saved_bh = NULL;
1382 /* blocknr of 0 is no longer in the hash, ignore it */
1383 if (cn->blocknr == 0) {
1384 goto free_cnode;
1385 }
1386
1387 /* This transaction failed commit. Don't write out to the disk */
1388 if (!(jl->j_state & LIST_DIRTY))
1389 goto free_cnode;
1390
1391 pjl = find_newer_jl_for_cn(cn);
1392 /* the order is important here. We check pjl to make sure we
1393 ** don't clear BH_JDirty_wait if we aren't the one writing this
1394 ** block to disk
1395 */
1396 if (!pjl && cn->bh) {
1397 saved_bh = cn->bh;
1398
Jeff Mahoney0222e652009-03-30 14:02:44 -04001399 /* we do this to make sure nobody releases the buffer while
1400 ** we are working with it
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001401 */
1402 get_bh(saved_bh);
1403
1404 if (buffer_journal_dirty(saved_bh)) {
1405 BUG_ON(!can_dirty(cn));
1406 was_jwait = 1;
1407 was_dirty = 1;
1408 } else if (can_dirty(cn)) {
1409 /* everything with !pjl && jwait should be writable */
1410 BUG();
1411 }
1412 }
1413
1414 /* if someone has this block in a newer transaction, just make
Matt LaPlante0779bf22006-11-30 05:24:39 +01001415 ** sure they are committed, and don't try writing it to disk
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001416 */
1417 if (pjl) {
1418 if (atomic_read(&pjl->j_commit_left))
1419 flush_commit_list(s, pjl, 1);
1420 goto free_cnode;
1421 }
1422
Jeff Mahoney0222e652009-03-30 14:02:44 -04001423 /* bh == NULL when the block got to disk on its own, OR,
1424 ** the block got freed in a future transaction
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001425 */
1426 if (saved_bh == NULL) {
1427 goto free_cnode;
1428 }
1429
1430 /* this should never happen. kupdate_one_transaction has this list
1431 ** locked while it works, so we should never see a buffer here that
1432 ** is not marked JDirty_wait
1433 */
1434 if ((!was_jwait) && !buffer_locked(saved_bh)) {
Jeff Mahoney45b03d52009-03-30 14:02:21 -04001435 reiserfs_warning(s, "journal-813",
1436 "BAD! buffer %llu %cdirty %cjwait, "
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001437 "not in a newer tranasction",
1438 (unsigned long long)saved_bh->
1439 b_blocknr, was_dirty ? ' ' : '!',
1440 was_jwait ? ' ' : '!');
1441 }
1442 if (was_dirty) {
1443 /* we inc again because saved_bh gets decremented at free_cnode */
1444 get_bh(saved_bh);
1445 set_bit(BLOCK_NEEDS_FLUSH, &cn->state);
1446 lock_buffer(saved_bh);
1447 BUG_ON(cn->blocknr != saved_bh->b_blocknr);
1448 if (buffer_dirty(saved_bh))
1449 submit_logged_buffer(saved_bh);
1450 else
1451 unlock_buffer(saved_bh);
1452 count++;
1453 } else {
Jeff Mahoney45b03d52009-03-30 14:02:21 -04001454 reiserfs_warning(s, "clm-2082",
1455 "Unable to flush buffer %llu in %s",
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001456 (unsigned long long)saved_bh->
Harvey Harrisonfbe54982008-04-28 02:16:22 -07001457 b_blocknr, __func__);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001458 }
1459 free_cnode:
1460 last = cn;
1461 cn = cn->next;
1462 if (saved_bh) {
1463 /* we incremented this to keep others from taking the buffer head away */
1464 put_bh(saved_bh);
1465 if (atomic_read(&(saved_bh->b_count)) < 0) {
Jeff Mahoney45b03d52009-03-30 14:02:21 -04001466 reiserfs_warning(s, "journal-945",
1467 "saved_bh->b_count < 0");
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001468 }
1469 }
1470 }
1471 if (count > 0) {
1472 cn = jl->j_realblock;
1473 while (cn) {
1474 if (test_bit(BLOCK_NEEDS_FLUSH, &cn->state)) {
1475 if (!cn->bh) {
Jeff Mahoneyc3a9c212009-03-30 14:02:25 -04001476 reiserfs_panic(s, "journal-1011",
1477 "cn->bh is NULL");
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001478 }
Frederic Weisbecker8ebc4232009-04-07 04:19:49 +02001479
Jeff Mahoney278f6672013-08-08 17:34:46 -04001480 depth = reiserfs_write_unlock_nested(s);
1481 __wait_on_buffer(cn->bh);
1482 reiserfs_write_lock_nested(s, depth);
Frederic Weisbecker8ebc4232009-04-07 04:19:49 +02001483
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001484 if (!cn->bh) {
Jeff Mahoneyc3a9c212009-03-30 14:02:25 -04001485 reiserfs_panic(s, "journal-1012",
1486 "cn->bh is NULL");
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001487 }
1488 if (unlikely(!buffer_uptodate(cn->bh))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001489#ifdef CONFIG_REISERFS_CHECK
Jeff Mahoney45b03d52009-03-30 14:02:21 -04001490 reiserfs_warning(s, "journal-949",
1491 "buffer write failed");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001492#endif
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001493 err = -EIO;
1494 }
1495 /* note, we must clear the JDirty_wait bit after the up to date
1496 ** check, otherwise we race against our flushpage routine
1497 */
1498 BUG_ON(!test_clear_buffer_journal_dirty
1499 (cn->bh));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001500
Chris Mason398c95b2007-10-16 23:29:44 -07001501 /* drop one ref for us */
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001502 put_bh(cn->bh);
Chris Mason398c95b2007-10-16 23:29:44 -07001503 /* drop one ref for journal_mark_dirty */
1504 release_buffer_page(cn->bh);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001505 }
1506 cn = cn->next;
1507 }
1508 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001509
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001510 if (err)
1511 reiserfs_abort(s, -EIO,
1512 "Write error while pushing transaction to disk in %s",
Harvey Harrisonfbe54982008-04-28 02:16:22 -07001513 __func__);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001514 flush_older_and_return:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001515
Jeff Mahoney0222e652009-03-30 14:02:44 -04001516 /* before we can update the journal header block, we _must_ flush all
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001517 ** real blocks from all older transactions to disk. This is because
1518 ** once the header block is updated, this transaction will not be
1519 ** replayed after a crash
1520 */
1521 if (flushall) {
1522 flush_older_journal_lists(s, jl);
1523 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001524
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001525 err = journal->j_errno;
Jeff Mahoney0222e652009-03-30 14:02:44 -04001526 /* before we can remove everything from the hash tables for this
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001527 ** transaction, we must make sure it can never be replayed
1528 **
1529 ** since we are only called from do_journal_end, we know for sure there
1530 ** are no allocations going on while we are flushing journal lists. So,
1531 ** we only need to update the journal header block for the last list
1532 ** being flushed
1533 */
1534 if (!err && flushall) {
1535 err =
1536 update_journal_header_block(s,
1537 (jl->j_start + jl->j_len +
1538 2) % SB_ONDISK_JOURNAL_SIZE(s),
1539 jl->j_trans_id);
1540 if (err)
1541 reiserfs_abort(s, -EIO,
1542 "Write error while updating journal header in %s",
Harvey Harrisonfbe54982008-04-28 02:16:22 -07001543 __func__);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001544 }
1545 remove_all_from_journal_list(s, jl, 0);
1546 list_del_init(&jl->j_list);
1547 journal->j_num_lists--;
1548 del_from_work_list(s, jl);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001549
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001550 if (journal->j_last_flush_id != 0 &&
1551 (jl->j_trans_id - journal->j_last_flush_id) != 1) {
Jeff Mahoney45b03d52009-03-30 14:02:21 -04001552 reiserfs_warning(s, "clm-2201", "last flush %lu, current %lu",
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001553 journal->j_last_flush_id, jl->j_trans_id);
1554 }
1555 journal->j_last_flush_id = jl->j_trans_id;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001556
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001557 /* not strictly required since we are freeing the list, but it should
1558 * help find code using dead lists later on
1559 */
1560 jl->j_len = 0;
1561 atomic_set(&(jl->j_nonzerolen), 0);
1562 jl->j_start = 0;
1563 jl->j_realblock = NULL;
1564 jl->j_commit_bh = NULL;
1565 jl->j_trans_id = 0;
1566 jl->j_state = 0;
1567 put_journal_list(s, jl);
1568 if (flushall)
Jeff Mahoneyafe70252008-07-25 01:46:39 -07001569 mutex_unlock(&journal->j_flush_mutex);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001570 return err;
1571}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001572
1573static int write_one_transaction(struct super_block *s,
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001574 struct reiserfs_journal_list *jl,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001575 struct buffer_chunk *chunk)
1576{
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001577 struct reiserfs_journal_cnode *cn;
1578 int ret = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001579
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001580 jl->j_state |= LIST_TOUCHED;
1581 del_from_work_list(s, jl);
1582 if (jl->j_len == 0 || atomic_read(&jl->j_nonzerolen) == 0) {
1583 return 0;
1584 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001585
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001586 cn = jl->j_realblock;
1587 while (cn) {
1588 /* if the blocknr == 0, this has been cleared from the hash,
1589 ** skip it
1590 */
1591 if (cn->blocknr == 0) {
1592 goto next;
1593 }
1594 if (cn->bh && can_dirty(cn) && buffer_dirty(cn->bh)) {
1595 struct buffer_head *tmp_bh;
1596 /* we can race against journal_mark_freed when we try
1597 * to lock_buffer(cn->bh), so we have to inc the buffer
1598 * count, and recheck things after locking
1599 */
1600 tmp_bh = cn->bh;
1601 get_bh(tmp_bh);
1602 lock_buffer(tmp_bh);
1603 if (cn->bh && can_dirty(cn) && buffer_dirty(tmp_bh)) {
1604 if (!buffer_journal_dirty(tmp_bh) ||
1605 buffer_journal_prepared(tmp_bh))
1606 BUG();
1607 add_to_chunk(chunk, tmp_bh, NULL, write_chunk);
1608 ret++;
1609 } else {
1610 /* note, cn->bh might be null now */
1611 unlock_buffer(tmp_bh);
1612 }
1613 put_bh(tmp_bh);
1614 }
1615 next:
1616 cn = cn->next;
1617 cond_resched();
1618 }
1619 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001620}
1621
1622/* used by flush_commit_list */
1623static int dirty_one_transaction(struct super_block *s,
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001624 struct reiserfs_journal_list *jl)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001625{
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001626 struct reiserfs_journal_cnode *cn;
1627 struct reiserfs_journal_list *pjl;
1628 int ret = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001629
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001630 jl->j_state |= LIST_DIRTY;
1631 cn = jl->j_realblock;
1632 while (cn) {
1633 /* look for a more recent transaction that logged this
1634 ** buffer. Only the most recent transaction with a buffer in
1635 ** it is allowed to send that buffer to disk
1636 */
1637 pjl = find_newer_jl_for_cn(cn);
1638 if (!pjl && cn->blocknr && cn->bh
1639 && buffer_journal_dirty(cn->bh)) {
1640 BUG_ON(!can_dirty(cn));
1641 /* if the buffer is prepared, it will either be logged
1642 * or restored. If restored, we need to make sure
1643 * it actually gets marked dirty
1644 */
1645 clear_buffer_journal_new(cn->bh);
1646 if (buffer_journal_prepared(cn->bh)) {
1647 set_buffer_journal_restore_dirty(cn->bh);
1648 } else {
1649 set_buffer_journal_test(cn->bh);
1650 mark_buffer_dirty(cn->bh);
1651 }
1652 }
1653 cn = cn->next;
1654 }
1655 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001656}
1657
1658static int kupdate_transactions(struct super_block *s,
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001659 struct reiserfs_journal_list *jl,
1660 struct reiserfs_journal_list **next_jl,
Jeff Mahoney600ed412009-03-30 14:02:17 -04001661 unsigned int *next_trans_id,
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001662 int num_blocks, int num_trans)
1663{
1664 int ret = 0;
1665 int written = 0;
1666 int transactions_flushed = 0;
Jeff Mahoney600ed412009-03-30 14:02:17 -04001667 unsigned int orig_trans_id = jl->j_trans_id;
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001668 struct buffer_chunk chunk;
1669 struct list_head *entry;
1670 struct reiserfs_journal *journal = SB_JOURNAL(s);
1671 chunk.nr = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001672
Frederic Weisbeckera412f9e2009-04-14 00:10:35 +02001673 reiserfs_mutex_lock_safe(&journal->j_flush_mutex, s);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001674 if (!journal_list_still_alive(s, orig_trans_id)) {
1675 goto done;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001676 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001677
Jeff Mahoneyafe70252008-07-25 01:46:39 -07001678 /* we've got j_flush_mutex held, nobody is going to delete any
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001679 * of these lists out from underneath us
1680 */
1681 while ((num_trans && transactions_flushed < num_trans) ||
1682 (!num_trans && written < num_blocks)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001683
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001684 if (jl->j_len == 0 || (jl->j_state & LIST_TOUCHED) ||
1685 atomic_read(&jl->j_commit_left)
1686 || !(jl->j_state & LIST_DIRTY)) {
1687 del_from_work_list(s, jl);
1688 break;
1689 }
1690 ret = write_one_transaction(s, jl, &chunk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001691
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001692 if (ret < 0)
1693 goto done;
1694 transactions_flushed++;
1695 written += ret;
1696 entry = jl->j_list.next;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001697
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001698 /* did we wrap? */
1699 if (entry == &journal->j_journal_list) {
1700 break;
1701 }
1702 jl = JOURNAL_LIST_ENTRY(entry);
1703
1704 /* don't bother with older transactions */
1705 if (jl->j_trans_id <= orig_trans_id)
1706 break;
1707 }
1708 if (chunk.nr) {
1709 write_chunk(&chunk);
1710 }
1711
1712 done:
Jeff Mahoneyafe70252008-07-25 01:46:39 -07001713 mutex_unlock(&journal->j_flush_mutex);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001714 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001715}
1716
1717/* for o_sync and fsync heavy applications, they tend to use
1718** all the journa list slots with tiny transactions. These
1719** trigger lots and lots of calls to update the header block, which
1720** adds seeks and slows things down.
1721**
1722** This function tries to clear out a large chunk of the journal lists
1723** at once, which makes everything faster since only the newest journal
1724** list updates the header block
1725*/
1726static int flush_used_journal_lists(struct super_block *s,
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001727 struct reiserfs_journal_list *jl)
1728{
1729 unsigned long len = 0;
1730 unsigned long cur_len;
1731 int ret;
1732 int i;
1733 int limit = 256;
1734 struct reiserfs_journal_list *tjl;
1735 struct reiserfs_journal_list *flush_jl;
Jeff Mahoney600ed412009-03-30 14:02:17 -04001736 unsigned int trans_id;
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001737 struct reiserfs_journal *journal = SB_JOURNAL(s);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001738
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001739 flush_jl = tjl = jl;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001740
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001741 /* in data logging mode, try harder to flush a lot of blocks */
1742 if (reiserfs_data_log(s))
1743 limit = 1024;
1744 /* flush for 256 transactions or limit blocks, whichever comes first */
1745 for (i = 0; i < 256 && len < limit; i++) {
1746 if (atomic_read(&tjl->j_commit_left) ||
1747 tjl->j_trans_id < jl->j_trans_id) {
1748 break;
1749 }
1750 cur_len = atomic_read(&tjl->j_nonzerolen);
1751 if (cur_len > 0) {
1752 tjl->j_state &= ~LIST_TOUCHED;
1753 }
1754 len += cur_len;
1755 flush_jl = tjl;
1756 if (tjl->j_list.next == &journal->j_journal_list)
1757 break;
1758 tjl = JOURNAL_LIST_ENTRY(tjl->j_list.next);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001759 }
Jeff Mahoney721a7692013-09-23 16:50:42 -04001760 get_journal_list(jl);
1761 get_journal_list(flush_jl);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001762 /* try to find a group of blocks we can flush across all the
1763 ** transactions, but only bother if we've actually spanned
1764 ** across multiple lists
1765 */
1766 if (flush_jl != jl) {
1767 ret = kupdate_transactions(s, jl, &tjl, &trans_id, len, i);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001768 }
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001769 flush_journal_list(s, flush_jl, 1);
Jeff Mahoney721a7692013-09-23 16:50:42 -04001770 put_journal_list(s, flush_jl);
1771 put_journal_list(s, jl);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001772 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001773}
1774
1775/*
1776** removes any nodes in table with name block and dev as bh.
1777** only touchs the hnext and hprev pointers.
1778*/
1779void remove_journal_hash(struct super_block *sb,
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001780 struct reiserfs_journal_cnode **table,
1781 struct reiserfs_journal_list *jl,
1782 unsigned long block, int remove_freed)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001783{
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001784 struct reiserfs_journal_cnode *cur;
1785 struct reiserfs_journal_cnode **head;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001786
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001787 head = &(journal_hash(table, sb, block));
1788 if (!head) {
1789 return;
1790 }
1791 cur = *head;
1792 while (cur) {
1793 if (cur->blocknr == block && cur->sb == sb
1794 && (jl == NULL || jl == cur->jlist)
1795 && (!test_bit(BLOCK_FREED, &cur->state) || remove_freed)) {
1796 if (cur->hnext) {
1797 cur->hnext->hprev = cur->hprev;
1798 }
1799 if (cur->hprev) {
1800 cur->hprev->hnext = cur->hnext;
1801 } else {
1802 *head = cur->hnext;
1803 }
1804 cur->blocknr = 0;
1805 cur->sb = NULL;
1806 cur->state = 0;
1807 if (cur->bh && cur->jlist) /* anybody who clears the cur->bh will also dec the nonzerolen */
1808 atomic_dec(&(cur->jlist->j_nonzerolen));
1809 cur->bh = NULL;
1810 cur->jlist = NULL;
1811 }
1812 cur = cur->hnext;
1813 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001814}
1815
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04001816static void free_journal_ram(struct super_block *sb)
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001817{
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04001818 struct reiserfs_journal *journal = SB_JOURNAL(sb);
Pekka Enbergd739b422006-02-01 03:06:43 -08001819 kfree(journal->j_current_jl);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001820 journal->j_num_lists--;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001821
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001822 vfree(journal->j_cnode_free_orig);
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04001823 free_list_bitmaps(sb, journal->j_list_bitmap);
1824 free_bitmap_nodes(sb); /* must be after free_list_bitmaps */
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001825 if (journal->j_header_bh) {
1826 brelse(journal->j_header_bh);
1827 }
1828 /* j_header_bh is on the journal dev, make sure not to release the journal
1829 * dev until we brelse j_header_bh
1830 */
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04001831 release_journal_dev(sb, journal);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001832 vfree(journal);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001833}
1834
1835/*
1836** call on unmount. Only set error to 1 if you haven't made your way out
1837** of read_super() yet. Any other caller must keep error at 0.
1838*/
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001839static int do_journal_release(struct reiserfs_transaction_handle *th,
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04001840 struct super_block *sb, int error)
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001841{
1842 struct reiserfs_transaction_handle myth;
1843 int flushed = 0;
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04001844 struct reiserfs_journal *journal = SB_JOURNAL(sb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001845
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001846 /* we only want to flush out transactions if we were called with error == 0
1847 */
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04001848 if (!error && !(sb->s_flags & MS_RDONLY)) {
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001849 /* end the current trans */
1850 BUG_ON(!th->t_trans_id);
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04001851 do_journal_end(th, sb, 10, FLUSH_ALL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001852
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001853 /* make sure something gets logged to force our way into the flush code */
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04001854 if (!journal_join(&myth, sb, 1)) {
1855 reiserfs_prepare_for_journal(sb,
1856 SB_BUFFER_WITH_SB(sb),
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001857 1);
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04001858 journal_mark_dirty(&myth, sb,
1859 SB_BUFFER_WITH_SB(sb));
1860 do_journal_end(&myth, sb, 1, FLUSH_ALL);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001861 flushed = 1;
1862 }
1863 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001864
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001865 /* this also catches errors during the do_journal_end above */
1866 if (!error && reiserfs_is_journal_aborted(journal)) {
1867 memset(&myth, 0, sizeof(myth));
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04001868 if (!journal_join_abort(&myth, sb, 1)) {
1869 reiserfs_prepare_for_journal(sb,
1870 SB_BUFFER_WITH_SB(sb),
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001871 1);
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04001872 journal_mark_dirty(&myth, sb,
1873 SB_BUFFER_WITH_SB(sb));
1874 do_journal_end(&myth, sb, 1, FLUSH_ALL);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001875 }
1876 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001877
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001878 /* wait for all commits to finish */
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04001879 cancel_delayed_work(&SB_JOURNAL(sb)->j_work);
Frederic Weisbecker8ebc4232009-04-07 04:19:49 +02001880
1881 /*
1882 * We must release the write lock here because
1883 * the workqueue job (flush_async_commit) needs this lock
1884 */
1885 reiserfs_write_unlock(sb);
Artem Bityutskiy033369d2012-06-01 17:18:08 +03001886
1887 cancel_delayed_work_sync(&REISERFS_SB(sb)->old_work);
Jeff Mahoney797d9012014-04-23 10:00:34 -04001888 flush_workqueue(REISERFS_SB(sb)->commit_wq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001889
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04001890 free_journal_ram(sb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001891
Frederic Weisbecker05236762009-12-30 05:56:08 +01001892 reiserfs_write_lock(sb);
1893
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001894 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001895}
1896
1897/*
1898** call on unmount. flush all journal trans, release all alloc'd ram
1899*/
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001900int journal_release(struct reiserfs_transaction_handle *th,
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04001901 struct super_block *sb)
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001902{
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04001903 return do_journal_release(th, sb, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001904}
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001905
Linus Torvalds1da177e2005-04-16 15:20:36 -07001906/*
1907** only call from an error condition inside reiserfs_read_super!
1908*/
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001909int journal_release_error(struct reiserfs_transaction_handle *th,
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04001910 struct super_block *sb)
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001911{
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04001912 return do_journal_release(th, sb, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001913}
1914
1915/* compares description block with commit block. returns 1 if they differ, 0 if they are the same */
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04001916static int journal_compare_desc_commit(struct super_block *sb,
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001917 struct reiserfs_journal_desc *desc,
1918 struct reiserfs_journal_commit *commit)
1919{
1920 if (get_commit_trans_id(commit) != get_desc_trans_id(desc) ||
1921 get_commit_trans_len(commit) != get_desc_trans_len(desc) ||
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04001922 get_commit_trans_len(commit) > SB_JOURNAL(sb)->j_trans_max ||
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001923 get_commit_trans_len(commit) <= 0) {
1924 return 1;
1925 }
1926 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001927}
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001928
Jeff Mahoney0222e652009-03-30 14:02:44 -04001929/* returns 0 if it did not find a description block
Linus Torvalds1da177e2005-04-16 15:20:36 -07001930** returns -1 if it found a corrupt commit block
Jeff Mahoney0222e652009-03-30 14:02:44 -04001931** returns 1 if both desc and commit were valid
Jeff Mahoney278f6672013-08-08 17:34:46 -04001932** NOTE: only called during fs mount
Linus Torvalds1da177e2005-04-16 15:20:36 -07001933*/
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04001934static int journal_transaction_is_valid(struct super_block *sb,
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001935 struct buffer_head *d_bh,
Jeff Mahoney600ed412009-03-30 14:02:17 -04001936 unsigned int *oldest_invalid_trans_id,
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001937 unsigned long *newest_mount_id)
1938{
1939 struct reiserfs_journal_desc *desc;
1940 struct reiserfs_journal_commit *commit;
1941 struct buffer_head *c_bh;
1942 unsigned long offset;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001943
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001944 if (!d_bh)
1945 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001946
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001947 desc = (struct reiserfs_journal_desc *)d_bh->b_data;
1948 if (get_desc_trans_len(desc) > 0
1949 && !memcmp(get_journal_desc_magic(d_bh), JOURNAL_DESC_MAGIC, 8)) {
1950 if (oldest_invalid_trans_id && *oldest_invalid_trans_id
1951 && get_desc_trans_id(desc) > *oldest_invalid_trans_id) {
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04001952 reiserfs_debug(sb, REISERFS_DEBUG_CODE,
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001953 "journal-986: transaction "
1954 "is valid returning because trans_id %d is greater than "
1955 "oldest_invalid %lu",
1956 get_desc_trans_id(desc),
1957 *oldest_invalid_trans_id);
1958 return 0;
1959 }
1960 if (newest_mount_id
1961 && *newest_mount_id > get_desc_mount_id(desc)) {
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04001962 reiserfs_debug(sb, REISERFS_DEBUG_CODE,
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001963 "journal-1087: transaction "
1964 "is valid returning because mount_id %d is less than "
1965 "newest_mount_id %lu",
1966 get_desc_mount_id(desc),
1967 *newest_mount_id);
1968 return -1;
1969 }
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04001970 if (get_desc_trans_len(desc) > SB_JOURNAL(sb)->j_trans_max) {
1971 reiserfs_warning(sb, "journal-2018",
Jeff Mahoney45b03d52009-03-30 14:02:21 -04001972 "Bad transaction length %d "
1973 "encountered, ignoring transaction",
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001974 get_desc_trans_len(desc));
1975 return -1;
1976 }
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04001977 offset = d_bh->b_blocknr - SB_ONDISK_JOURNAL_1st_BLOCK(sb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001978
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001979 /* ok, we have a journal description block, lets see if the transaction was valid */
1980 c_bh =
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04001981 journal_bread(sb,
1982 SB_ONDISK_JOURNAL_1st_BLOCK(sb) +
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001983 ((offset + get_desc_trans_len(desc) +
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04001984 1) % SB_ONDISK_JOURNAL_SIZE(sb)));
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001985 if (!c_bh)
1986 return 0;
1987 commit = (struct reiserfs_journal_commit *)c_bh->b_data;
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04001988 if (journal_compare_desc_commit(sb, desc, commit)) {
1989 reiserfs_debug(sb, REISERFS_DEBUG_CODE,
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001990 "journal_transaction_is_valid, commit offset %ld had bad "
1991 "time %d or length %d",
1992 c_bh->b_blocknr -
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04001993 SB_ONDISK_JOURNAL_1st_BLOCK(sb),
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001994 get_commit_trans_id(commit),
1995 get_commit_trans_len(commit));
1996 brelse(c_bh);
1997 if (oldest_invalid_trans_id) {
1998 *oldest_invalid_trans_id =
1999 get_desc_trans_id(desc);
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04002000 reiserfs_debug(sb, REISERFS_DEBUG_CODE,
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002001 "journal-1004: "
2002 "transaction_is_valid setting oldest invalid trans_id "
2003 "to %d",
2004 get_desc_trans_id(desc));
2005 }
2006 return -1;
2007 }
2008 brelse(c_bh);
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04002009 reiserfs_debug(sb, REISERFS_DEBUG_CODE,
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002010 "journal-1006: found valid "
2011 "transaction start offset %llu, len %d id %d",
2012 d_bh->b_blocknr -
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04002013 SB_ONDISK_JOURNAL_1st_BLOCK(sb),
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002014 get_desc_trans_len(desc),
2015 get_desc_trans_id(desc));
2016 return 1;
2017 } else {
2018 return 0;
2019 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002020}
2021
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002022static void brelse_array(struct buffer_head **heads, int num)
2023{
2024 int i;
2025 for (i = 0; i < num; i++) {
2026 brelse(heads[i]);
2027 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002028}
2029
2030/*
2031** given the start, and values for the oldest acceptable transactions,
Jeff Mahoney278f6672013-08-08 17:34:46 -04002032** this either reads in a replays a transaction, or returns because the
2033** transaction is invalid, or too old.
2034** NOTE: only called during fs mount
Linus Torvalds1da177e2005-04-16 15:20:36 -07002035*/
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04002036static int journal_read_transaction(struct super_block *sb,
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002037 unsigned long cur_dblock,
2038 unsigned long oldest_start,
Jeff Mahoney600ed412009-03-30 14:02:17 -04002039 unsigned int oldest_trans_id,
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002040 unsigned long newest_mount_id)
2041{
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04002042 struct reiserfs_journal *journal = SB_JOURNAL(sb);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002043 struct reiserfs_journal_desc *desc;
2044 struct reiserfs_journal_commit *commit;
Jeff Mahoney600ed412009-03-30 14:02:17 -04002045 unsigned int trans_id = 0;
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002046 struct buffer_head *c_bh;
2047 struct buffer_head *d_bh;
2048 struct buffer_head **log_blocks = NULL;
2049 struct buffer_head **real_blocks = NULL;
Jeff Mahoney600ed412009-03-30 14:02:17 -04002050 unsigned int trans_offset;
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002051 int i;
2052 int trans_half;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002053
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04002054 d_bh = journal_bread(sb, cur_dblock);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002055 if (!d_bh)
2056 return 1;
2057 desc = (struct reiserfs_journal_desc *)d_bh->b_data;
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04002058 trans_offset = d_bh->b_blocknr - SB_ONDISK_JOURNAL_1st_BLOCK(sb);
2059 reiserfs_debug(sb, REISERFS_DEBUG_CODE, "journal-1037: "
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002060 "journal_read_transaction, offset %llu, len %d mount_id %d",
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04002061 d_bh->b_blocknr - SB_ONDISK_JOURNAL_1st_BLOCK(sb),
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002062 get_desc_trans_len(desc), get_desc_mount_id(desc));
2063 if (get_desc_trans_id(desc) < oldest_trans_id) {
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04002064 reiserfs_debug(sb, REISERFS_DEBUG_CODE, "journal-1039: "
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002065 "journal_read_trans skipping because %lu is too old",
2066 cur_dblock -
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04002067 SB_ONDISK_JOURNAL_1st_BLOCK(sb));
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002068 brelse(d_bh);
2069 return 1;
2070 }
2071 if (get_desc_mount_id(desc) != newest_mount_id) {
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04002072 reiserfs_debug(sb, REISERFS_DEBUG_CODE, "journal-1146: "
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002073 "journal_read_trans skipping because %d is != "
2074 "newest_mount_id %lu", get_desc_mount_id(desc),
2075 newest_mount_id);
2076 brelse(d_bh);
2077 return 1;
2078 }
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04002079 c_bh = journal_bread(sb, SB_ONDISK_JOURNAL_1st_BLOCK(sb) +
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002080 ((trans_offset + get_desc_trans_len(desc) + 1) %
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04002081 SB_ONDISK_JOURNAL_SIZE(sb)));
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002082 if (!c_bh) {
2083 brelse(d_bh);
2084 return 1;
2085 }
2086 commit = (struct reiserfs_journal_commit *)c_bh->b_data;
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04002087 if (journal_compare_desc_commit(sb, desc, commit)) {
2088 reiserfs_debug(sb, REISERFS_DEBUG_CODE,
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002089 "journal_read_transaction, "
2090 "commit offset %llu had bad time %d or length %d",
2091 c_bh->b_blocknr -
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04002092 SB_ONDISK_JOURNAL_1st_BLOCK(sb),
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002093 get_commit_trans_id(commit),
2094 get_commit_trans_len(commit));
2095 brelse(c_bh);
2096 brelse(d_bh);
2097 return 1;
2098 }
Jeff Mahoney3f8b5ee2010-03-23 13:35:39 -07002099
2100 if (bdev_read_only(sb->s_bdev)) {
2101 reiserfs_warning(sb, "clm-2076",
2102 "device is readonly, unable to replay log");
2103 brelse(c_bh);
2104 brelse(d_bh);
2105 return -EROFS;
2106 }
2107
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002108 trans_id = get_desc_trans_id(desc);
2109 /* now we know we've got a good transaction, and it was inside the valid time ranges */
Pekka Enbergd739b422006-02-01 03:06:43 -08002110 log_blocks = kmalloc(get_desc_trans_len(desc) *
2111 sizeof(struct buffer_head *), GFP_NOFS);
2112 real_blocks = kmalloc(get_desc_trans_len(desc) *
2113 sizeof(struct buffer_head *), GFP_NOFS);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002114 if (!log_blocks || !real_blocks) {
2115 brelse(c_bh);
2116 brelse(d_bh);
Pekka Enbergd739b422006-02-01 03:06:43 -08002117 kfree(log_blocks);
2118 kfree(real_blocks);
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04002119 reiserfs_warning(sb, "journal-1169",
Jeff Mahoney45b03d52009-03-30 14:02:21 -04002120 "kmalloc failed, unable to mount FS");
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002121 return -1;
2122 }
2123 /* get all the buffer heads */
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04002124 trans_half = journal_trans_half(sb->s_blocksize);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002125 for (i = 0; i < get_desc_trans_len(desc); i++) {
2126 log_blocks[i] =
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04002127 journal_getblk(sb,
2128 SB_ONDISK_JOURNAL_1st_BLOCK(sb) +
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002129 (trans_offset + 1 +
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04002130 i) % SB_ONDISK_JOURNAL_SIZE(sb));
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002131 if (i < trans_half) {
2132 real_blocks[i] =
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04002133 sb_getblk(sb,
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002134 le32_to_cpu(desc->j_realblock[i]));
2135 } else {
2136 real_blocks[i] =
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04002137 sb_getblk(sb,
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002138 le32_to_cpu(commit->
2139 j_realblock[i - trans_half]));
2140 }
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04002141 if (real_blocks[i]->b_blocknr > SB_BLOCK_COUNT(sb)) {
2142 reiserfs_warning(sb, "journal-1207",
Jeff Mahoney45b03d52009-03-30 14:02:21 -04002143 "REPLAY FAILURE fsck required! "
2144 "Block to replay is outside of "
2145 "filesystem");
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002146 goto abort_replay;
2147 }
2148 /* make sure we don't try to replay onto log or reserved area */
2149 if (is_block_in_log_or_reserved_area
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04002150 (sb, real_blocks[i]->b_blocknr)) {
2151 reiserfs_warning(sb, "journal-1204",
Jeff Mahoney45b03d52009-03-30 14:02:21 -04002152 "REPLAY FAILURE fsck required! "
2153 "Trying to replay onto a log block");
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002154 abort_replay:
2155 brelse_array(log_blocks, i);
2156 brelse_array(real_blocks, i);
2157 brelse(c_bh);
2158 brelse(d_bh);
Pekka Enbergd739b422006-02-01 03:06:43 -08002159 kfree(log_blocks);
2160 kfree(real_blocks);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002161 return -1;
2162 }
2163 }
2164 /* read in the log blocks, memcpy to the corresponding real block */
2165 ll_rw_block(READ, get_desc_trans_len(desc), log_blocks);
2166 for (i = 0; i < get_desc_trans_len(desc); i++) {
Frederic Weisbecker8ebc4232009-04-07 04:19:49 +02002167
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002168 wait_on_buffer(log_blocks[i]);
2169 if (!buffer_uptodate(log_blocks[i])) {
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04002170 reiserfs_warning(sb, "journal-1212",
Jeff Mahoney45b03d52009-03-30 14:02:21 -04002171 "REPLAY FAILURE fsck required! "
2172 "buffer write failed");
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002173 brelse_array(log_blocks + i,
2174 get_desc_trans_len(desc) - i);
2175 brelse_array(real_blocks, get_desc_trans_len(desc));
2176 brelse(c_bh);
2177 brelse(d_bh);
Pekka Enbergd739b422006-02-01 03:06:43 -08002178 kfree(log_blocks);
2179 kfree(real_blocks);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002180 return -1;
2181 }
2182 memcpy(real_blocks[i]->b_data, log_blocks[i]->b_data,
2183 real_blocks[i]->b_size);
2184 set_buffer_uptodate(real_blocks[i]);
2185 brelse(log_blocks[i]);
2186 }
2187 /* flush out the real blocks */
2188 for (i = 0; i < get_desc_trans_len(desc); i++) {
2189 set_buffer_dirty(real_blocks[i]);
Christoph Hellwig9cb569d2010-08-11 17:06:24 +02002190 write_dirty_buffer(real_blocks[i], WRITE);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002191 }
2192 for (i = 0; i < get_desc_trans_len(desc); i++) {
2193 wait_on_buffer(real_blocks[i]);
2194 if (!buffer_uptodate(real_blocks[i])) {
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04002195 reiserfs_warning(sb, "journal-1226",
Jeff Mahoney45b03d52009-03-30 14:02:21 -04002196 "REPLAY FAILURE, fsck required! "
2197 "buffer write failed");
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002198 brelse_array(real_blocks + i,
2199 get_desc_trans_len(desc) - i);
2200 brelse(c_bh);
2201 brelse(d_bh);
Pekka Enbergd739b422006-02-01 03:06:43 -08002202 kfree(log_blocks);
2203 kfree(real_blocks);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002204 return -1;
2205 }
2206 brelse(real_blocks[i]);
2207 }
2208 cur_dblock =
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04002209 SB_ONDISK_JOURNAL_1st_BLOCK(sb) +
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002210 ((trans_offset + get_desc_trans_len(desc) +
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04002211 2) % SB_ONDISK_JOURNAL_SIZE(sb));
2212 reiserfs_debug(sb, REISERFS_DEBUG_CODE,
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002213 "journal-1095: setting journal " "start to offset %ld",
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04002214 cur_dblock - SB_ONDISK_JOURNAL_1st_BLOCK(sb));
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002215
2216 /* init starting values for the first transaction, in case this is the last transaction to be replayed. */
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04002217 journal->j_start = cur_dblock - SB_ONDISK_JOURNAL_1st_BLOCK(sb);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002218 journal->j_last_flush_trans_id = trans_id;
2219 journal->j_trans_id = trans_id + 1;
Alexander Zarochentseva44c94a2006-03-25 03:06:59 -08002220 /* check for trans_id overflow */
2221 if (journal->j_trans_id == 0)
2222 journal->j_trans_id = 10;
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002223 brelse(c_bh);
2224 brelse(d_bh);
Pekka Enbergd739b422006-02-01 03:06:43 -08002225 kfree(log_blocks);
2226 kfree(real_blocks);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002227 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002228}
2229
2230/* This function reads blocks starting from block and to max_block of bufsize
2231 size (but no more than BUFNR blocks at a time). This proved to improve
2232 mounting speed on self-rebuilding raid5 arrays at least.
2233 Right now it is only used from journal code. But later we might use it
2234 from other places.
2235 Note: Do not use journal_getblk/sb_getblk functions here! */
Jeff Mahoney3ee16672007-10-18 23:39:25 -07002236static struct buffer_head *reiserfs_breada(struct block_device *dev,
2237 b_blocknr_t block, int bufsize,
2238 b_blocknr_t max_block)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002239{
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002240 struct buffer_head *bhlist[BUFNR];
Linus Torvalds1da177e2005-04-16 15:20:36 -07002241 unsigned int blocks = BUFNR;
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002242 struct buffer_head *bh;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002243 int i, j;
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002244
2245 bh = __getblk(dev, block, bufsize);
2246 if (buffer_uptodate(bh))
2247 return (bh);
2248
Linus Torvalds1da177e2005-04-16 15:20:36 -07002249 if (block + BUFNR > max_block) {
2250 blocks = max_block - block;
2251 }
2252 bhlist[0] = bh;
2253 j = 1;
2254 for (i = 1; i < blocks; i++) {
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002255 bh = __getblk(dev, block + i, bufsize);
2256 if (buffer_uptodate(bh)) {
2257 brelse(bh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002258 break;
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002259 } else
2260 bhlist[j++] = bh;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002261 }
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002262 ll_rw_block(READ, j, bhlist);
2263 for (i = 1; i < j; i++)
2264 brelse(bhlist[i]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002265 bh = bhlist[0];
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002266 wait_on_buffer(bh);
2267 if (buffer_uptodate(bh))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002268 return bh;
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002269 brelse(bh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002270 return NULL;
2271}
2272
2273/*
2274** read and replay the log
Jeff Mahoney278f6672013-08-08 17:34:46 -04002275** on a clean unmount, the journal header's next unflushed pointer will
2276** be to an invalid transaction. This tests that before finding all the
2277** transactions in the log, which makes normal mount times fast.
2278** After a crash, this starts with the next unflushed transaction, and
2279** replays until it finds one too old, or invalid.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002280** On exit, it sets things up so the first transaction will work correctly.
Jeff Mahoney278f6672013-08-08 17:34:46 -04002281** NOTE: only called during fs mount
Linus Torvalds1da177e2005-04-16 15:20:36 -07002282*/
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04002283static int journal_read(struct super_block *sb)
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002284{
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04002285 struct reiserfs_journal *journal = SB_JOURNAL(sb);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002286 struct reiserfs_journal_desc *desc;
Jeff Mahoney600ed412009-03-30 14:02:17 -04002287 unsigned int oldest_trans_id = 0;
2288 unsigned int oldest_invalid_trans_id = 0;
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002289 time_t start;
2290 unsigned long oldest_start = 0;
2291 unsigned long cur_dblock = 0;
2292 unsigned long newest_mount_id = 9;
2293 struct buffer_head *d_bh;
2294 struct reiserfs_journal_header *jh;
2295 int valid_journal_header = 0;
2296 int replay_count = 0;
2297 int continue_replay = 1;
2298 int ret;
2299 char b[BDEVNAME_SIZE];
Linus Torvalds1da177e2005-04-16 15:20:36 -07002300
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04002301 cur_dblock = SB_ONDISK_JOURNAL_1st_BLOCK(sb);
2302 reiserfs_info(sb, "checking transaction log (%s)\n",
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002303 bdevname(journal->j_dev_bd, b));
2304 start = get_seconds();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002305
Jeff Mahoney0222e652009-03-30 14:02:44 -04002306 /* step 1, read in the journal header block. Check the transaction it says
2307 ** is the first unflushed, and if that transaction is not valid,
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002308 ** replay is done
2309 */
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04002310 journal->j_header_bh = journal_bread(sb,
2311 SB_ONDISK_JOURNAL_1st_BLOCK(sb)
2312 + SB_ONDISK_JOURNAL_SIZE(sb));
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002313 if (!journal->j_header_bh) {
2314 return 1;
2315 }
2316 jh = (struct reiserfs_journal_header *)(journal->j_header_bh->b_data);
Vladimir V. Savelievc499ec22006-03-02 02:54:39 -08002317 if (le32_to_cpu(jh->j_first_unflushed_offset) <
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04002318 SB_ONDISK_JOURNAL_SIZE(sb)
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002319 && le32_to_cpu(jh->j_last_flush_trans_id) > 0) {
2320 oldest_start =
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04002321 SB_ONDISK_JOURNAL_1st_BLOCK(sb) +
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002322 le32_to_cpu(jh->j_first_unflushed_offset);
2323 oldest_trans_id = le32_to_cpu(jh->j_last_flush_trans_id) + 1;
2324 newest_mount_id = le32_to_cpu(jh->j_mount_id);
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04002325 reiserfs_debug(sb, REISERFS_DEBUG_CODE,
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002326 "journal-1153: found in "
2327 "header: first_unflushed_offset %d, last_flushed_trans_id "
2328 "%lu", le32_to_cpu(jh->j_first_unflushed_offset),
2329 le32_to_cpu(jh->j_last_flush_trans_id));
2330 valid_journal_header = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002331
Jeff Mahoney0222e652009-03-30 14:02:44 -04002332 /* now, we try to read the first unflushed offset. If it is not valid,
2333 ** there is nothing more we can do, and it makes no sense to read
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002334 ** through the whole log.
2335 */
2336 d_bh =
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04002337 journal_bread(sb,
2338 SB_ONDISK_JOURNAL_1st_BLOCK(sb) +
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002339 le32_to_cpu(jh->j_first_unflushed_offset));
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04002340 ret = journal_transaction_is_valid(sb, d_bh, NULL, NULL);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002341 if (!ret) {
2342 continue_replay = 0;
2343 }
2344 brelse(d_bh);
2345 goto start_log_replay;
2346 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002347
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002348 /* ok, there are transactions that need to be replayed. start with the first log block, find
2349 ** all the valid transactions, and pick out the oldest.
2350 */
2351 while (continue_replay
2352 && cur_dblock <
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04002353 (SB_ONDISK_JOURNAL_1st_BLOCK(sb) +
2354 SB_ONDISK_JOURNAL_SIZE(sb))) {
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002355 /* Note that it is required for blocksize of primary fs device and journal
2356 device to be the same */
2357 d_bh =
2358 reiserfs_breada(journal->j_dev_bd, cur_dblock,
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04002359 sb->s_blocksize,
2360 SB_ONDISK_JOURNAL_1st_BLOCK(sb) +
2361 SB_ONDISK_JOURNAL_SIZE(sb));
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002362 ret =
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04002363 journal_transaction_is_valid(sb, d_bh,
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002364 &oldest_invalid_trans_id,
2365 &newest_mount_id);
2366 if (ret == 1) {
2367 desc = (struct reiserfs_journal_desc *)d_bh->b_data;
2368 if (oldest_start == 0) { /* init all oldest_ values */
2369 oldest_trans_id = get_desc_trans_id(desc);
2370 oldest_start = d_bh->b_blocknr;
2371 newest_mount_id = get_desc_mount_id(desc);
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04002372 reiserfs_debug(sb, REISERFS_DEBUG_CODE,
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002373 "journal-1179: Setting "
2374 "oldest_start to offset %llu, trans_id %lu",
2375 oldest_start -
2376 SB_ONDISK_JOURNAL_1st_BLOCK
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04002377 (sb), oldest_trans_id);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002378 } else if (oldest_trans_id > get_desc_trans_id(desc)) {
2379 /* one we just read was older */
2380 oldest_trans_id = get_desc_trans_id(desc);
2381 oldest_start = d_bh->b_blocknr;
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04002382 reiserfs_debug(sb, REISERFS_DEBUG_CODE,
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002383 "journal-1180: Resetting "
2384 "oldest_start to offset %lu, trans_id %lu",
2385 oldest_start -
2386 SB_ONDISK_JOURNAL_1st_BLOCK
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04002387 (sb), oldest_trans_id);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002388 }
2389 if (newest_mount_id < get_desc_mount_id(desc)) {
2390 newest_mount_id = get_desc_mount_id(desc);
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04002391 reiserfs_debug(sb, REISERFS_DEBUG_CODE,
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002392 "journal-1299: Setting "
2393 "newest_mount_id to %d",
2394 get_desc_mount_id(desc));
2395 }
2396 cur_dblock += get_desc_trans_len(desc) + 2;
2397 } else {
2398 cur_dblock++;
2399 }
2400 brelse(d_bh);
2401 }
2402
2403 start_log_replay:
2404 cur_dblock = oldest_start;
2405 if (oldest_trans_id) {
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04002406 reiserfs_debug(sb, REISERFS_DEBUG_CODE,
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002407 "journal-1206: Starting replay "
2408 "from offset %llu, trans_id %lu",
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04002409 cur_dblock - SB_ONDISK_JOURNAL_1st_BLOCK(sb),
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002410 oldest_trans_id);
2411
2412 }
2413 replay_count = 0;
2414 while (continue_replay && oldest_trans_id > 0) {
2415 ret =
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04002416 journal_read_transaction(sb, cur_dblock, oldest_start,
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002417 oldest_trans_id, newest_mount_id);
2418 if (ret < 0) {
2419 return ret;
2420 } else if (ret != 0) {
2421 break;
2422 }
2423 cur_dblock =
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04002424 SB_ONDISK_JOURNAL_1st_BLOCK(sb) + journal->j_start;
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002425 replay_count++;
2426 if (cur_dblock == oldest_start)
2427 break;
2428 }
2429
2430 if (oldest_trans_id == 0) {
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04002431 reiserfs_debug(sb, REISERFS_DEBUG_CODE,
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002432 "journal-1225: No valid " "transactions found");
2433 }
2434 /* j_start does not get set correctly if we don't replay any transactions.
2435 ** if we had a valid journal_header, set j_start to the first unflushed transaction value,
2436 ** copy the trans_id from the header
2437 */
2438 if (valid_journal_header && replay_count == 0) {
2439 journal->j_start = le32_to_cpu(jh->j_first_unflushed_offset);
2440 journal->j_trans_id =
2441 le32_to_cpu(jh->j_last_flush_trans_id) + 1;
Alexander Zarochentseva44c94a2006-03-25 03:06:59 -08002442 /* check for trans_id overflow */
2443 if (journal->j_trans_id == 0)
2444 journal->j_trans_id = 10;
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002445 journal->j_last_flush_trans_id =
2446 le32_to_cpu(jh->j_last_flush_trans_id);
2447 journal->j_mount_id = le32_to_cpu(jh->j_mount_id) + 1;
2448 } else {
2449 journal->j_mount_id = newest_mount_id + 1;
2450 }
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04002451 reiserfs_debug(sb, REISERFS_DEBUG_CODE, "journal-1299: Setting "
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002452 "newest_mount_id to %lu", journal->j_mount_id);
2453 journal->j_first_unflushed_offset = journal->j_start;
2454 if (replay_count > 0) {
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04002455 reiserfs_info(sb,
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002456 "replayed %d transactions in %lu seconds\n",
2457 replay_count, get_seconds() - start);
2458 }
Jeff Mahoney278f6672013-08-08 17:34:46 -04002459 /* needed to satisfy the locking in _update_journal_header_block */
2460 reiserfs_write_lock(sb);
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04002461 if (!bdev_read_only(sb->s_bdev) &&
2462 _update_journal_header_block(sb, journal->j_start,
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002463 journal->j_last_flush_trans_id)) {
Jeff Mahoney278f6672013-08-08 17:34:46 -04002464 reiserfs_write_unlock(sb);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002465 /* replay failed, caller must call free_journal_ram and abort
2466 ** the mount
2467 */
2468 return -1;
2469 }
Jeff Mahoney278f6672013-08-08 17:34:46 -04002470 reiserfs_write_unlock(sb);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002471 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002472}
2473
2474static struct reiserfs_journal_list *alloc_journal_list(struct super_block *s)
2475{
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002476 struct reiserfs_journal_list *jl;
Pekka Enberg8c777cc2006-02-01 03:06:43 -08002477 jl = kzalloc(sizeof(struct reiserfs_journal_list),
2478 GFP_NOFS | __GFP_NOFAIL);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002479 INIT_LIST_HEAD(&jl->j_list);
2480 INIT_LIST_HEAD(&jl->j_working_list);
2481 INIT_LIST_HEAD(&jl->j_tail_bh_list);
2482 INIT_LIST_HEAD(&jl->j_bh_list);
Jeff Mahoney90415de2008-07-25 01:46:40 -07002483 mutex_init(&jl->j_commit_mutex);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002484 SB_JOURNAL(s)->j_num_lists++;
2485 get_journal_list(jl);
2486 return jl;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002487}
2488
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04002489static void journal_list_init(struct super_block *sb)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002490{
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04002491 SB_JOURNAL(sb)->j_current_jl = alloc_journal_list(sb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002492}
2493
Al Viro4385bab2013-05-05 22:11:03 -04002494static void release_journal_dev(struct super_block *super,
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002495 struct reiserfs_journal *journal)
2496{
Christoph Hellwig86098fa2008-04-30 00:54:46 -07002497 if (journal->j_dev_bd != NULL) {
Al Viro4385bab2013-05-05 22:11:03 -04002498 blkdev_put(journal->j_dev_bd, journal->j_dev_mode);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002499 journal->j_dev_bd = NULL;
2500 }
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002501}
2502
2503static int journal_init_dev(struct super_block *super,
2504 struct reiserfs_journal *journal,
2505 const char *jdev_name)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002506{
2507 int result;
2508 dev_t jdev;
Tejun Heoe525fd82010-11-13 11:55:17 +01002509 fmode_t blkdev_mode = FMODE_READ | FMODE_WRITE | FMODE_EXCL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002510 char b[BDEVNAME_SIZE];
2511
2512 result = 0;
2513
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002514 journal->j_dev_bd = NULL;
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002515 jdev = SB_ONDISK_JOURNAL_DEVICE(super) ?
2516 new_decode_dev(SB_ONDISK_JOURNAL_DEVICE(super)) : super->s_dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002517
2518 if (bdev_read_only(super->s_bdev))
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002519 blkdev_mode = FMODE_READ;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002520
2521 /* there is no "jdev" option and journal is on separate device */
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002522 if ((!jdev_name || !jdev_name[0])) {
Tejun Heoe525fd82010-11-13 11:55:17 +01002523 if (jdev == super->s_dev)
2524 blkdev_mode &= ~FMODE_EXCL;
Tejun Heod4d77622010-11-13 11:55:18 +01002525 journal->j_dev_bd = blkdev_get_by_dev(jdev, blkdev_mode,
2526 journal);
Al Viroe5eb8ca2007-10-08 13:24:05 -04002527 journal->j_dev_mode = blkdev_mode;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002528 if (IS_ERR(journal->j_dev_bd)) {
2529 result = PTR_ERR(journal->j_dev_bd);
2530 journal->j_dev_bd = NULL;
Jeff Mahoney45b03d52009-03-30 14:02:21 -04002531 reiserfs_warning(super, "sh-458",
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002532 "cannot init journal device '%s': %i",
2533 __bdevname(jdev, b), result);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002534 return result;
Tejun Heoe525fd82010-11-13 11:55:17 +01002535 } else if (jdev != super->s_dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002536 set_blocksize(journal->j_dev_bd, super->s_blocksize);
Christoph Hellwig86098fa2008-04-30 00:54:46 -07002537
Linus Torvalds1da177e2005-04-16 15:20:36 -07002538 return 0;
2539 }
2540
Al Viroe5eb8ca2007-10-08 13:24:05 -04002541 journal->j_dev_mode = blkdev_mode;
Tejun Heod4d77622010-11-13 11:55:18 +01002542 journal->j_dev_bd = blkdev_get_by_path(jdev_name, blkdev_mode, journal);
Christoph Hellwig86098fa2008-04-30 00:54:46 -07002543 if (IS_ERR(journal->j_dev_bd)) {
2544 result = PTR_ERR(journal->j_dev_bd);
2545 journal->j_dev_bd = NULL;
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002546 reiserfs_warning(super,
2547 "journal_init_dev: Cannot open '%s': %i",
2548 jdev_name, result);
Christoph Hellwig86098fa2008-04-30 00:54:46 -07002549 return result;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002550 }
Christoph Hellwig86098fa2008-04-30 00:54:46 -07002551
2552 set_blocksize(journal->j_dev_bd, super->s_blocksize);
2553 reiserfs_info(super,
2554 "journal_init_dev: journal device: %s\n",
2555 bdevname(journal->j_dev_bd, b));
2556 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002557}
2558
Edward Shishkincf3d0b82007-10-16 23:30:30 -07002559/**
2560 * When creating/tuning a file system user can assign some
2561 * journal params within boundaries which depend on the ratio
2562 * blocksize/standard_blocksize.
2563 *
2564 * For blocks >= standard_blocksize transaction size should
2565 * be not less then JOURNAL_TRANS_MIN_DEFAULT, and not more
2566 * then JOURNAL_TRANS_MAX_DEFAULT.
2567 *
2568 * For blocks < standard_blocksize these boundaries should be
2569 * decreased proportionally.
2570 */
2571#define REISERFS_STANDARD_BLKSIZE (4096)
2572
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04002573static int check_advise_trans_params(struct super_block *sb,
Edward Shishkincf3d0b82007-10-16 23:30:30 -07002574 struct reiserfs_journal *journal)
2575{
2576 if (journal->j_trans_max) {
2577 /* Non-default journal params.
2578 Do sanity check for them. */
2579 int ratio = 1;
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04002580 if (sb->s_blocksize < REISERFS_STANDARD_BLKSIZE)
2581 ratio = REISERFS_STANDARD_BLKSIZE / sb->s_blocksize;
Edward Shishkincf3d0b82007-10-16 23:30:30 -07002582
2583 if (journal->j_trans_max > JOURNAL_TRANS_MAX_DEFAULT / ratio ||
2584 journal->j_trans_max < JOURNAL_TRANS_MIN_DEFAULT / ratio ||
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04002585 SB_ONDISK_JOURNAL_SIZE(sb) / journal->j_trans_max <
Edward Shishkincf3d0b82007-10-16 23:30:30 -07002586 JOURNAL_MIN_RATIO) {
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04002587 reiserfs_warning(sb, "sh-462",
Jeff Mahoney45b03d52009-03-30 14:02:21 -04002588 "bad transaction max size (%u). "
2589 "FSCK?", journal->j_trans_max);
Edward Shishkincf3d0b82007-10-16 23:30:30 -07002590 return 1;
2591 }
2592 if (journal->j_max_batch != (journal->j_trans_max) *
2593 JOURNAL_MAX_BATCH_DEFAULT/JOURNAL_TRANS_MAX_DEFAULT) {
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04002594 reiserfs_warning(sb, "sh-463",
Jeff Mahoney45b03d52009-03-30 14:02:21 -04002595 "bad transaction max batch (%u). "
2596 "FSCK?", journal->j_max_batch);
Edward Shishkincf3d0b82007-10-16 23:30:30 -07002597 return 1;
2598 }
2599 } else {
2600 /* Default journal params.
2601 The file system was created by old version
2602 of mkreiserfs, so some fields contain zeros,
2603 and we need to advise proper values for them */
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04002604 if (sb->s_blocksize != REISERFS_STANDARD_BLKSIZE) {
2605 reiserfs_warning(sb, "sh-464", "bad blocksize (%u)",
2606 sb->s_blocksize);
Jeff Mahoney45b03d52009-03-30 14:02:21 -04002607 return 1;
2608 }
Edward Shishkincf3d0b82007-10-16 23:30:30 -07002609 journal->j_trans_max = JOURNAL_TRANS_MAX_DEFAULT;
2610 journal->j_max_batch = JOURNAL_MAX_BATCH_DEFAULT;
2611 journal->j_max_commit_age = JOURNAL_MAX_COMMIT_AGE;
2612 }
2613 return 0;
2614}
2615
Linus Torvalds1da177e2005-04-16 15:20:36 -07002616/*
2617** must be called once on fs mount. calls journal_read for you
2618*/
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04002619int journal_init(struct super_block *sb, const char *j_dev_name,
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002620 int old_format, unsigned int commit_max_age)
2621{
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04002622 int num_cnodes = SB_ONDISK_JOURNAL_SIZE(sb) * 2;
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002623 struct buffer_head *bhjh;
2624 struct reiserfs_super_block *rs;
2625 struct reiserfs_journal_header *jh;
2626 struct reiserfs_journal *journal;
2627 struct reiserfs_journal_list *jl;
2628 char b[BDEVNAME_SIZE];
Frederic Weisbecker98ea3f52009-12-29 21:51:15 +01002629 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002630
Joe Perches558feb02011-05-28 10:36:33 -07002631 journal = SB_JOURNAL(sb) = vzalloc(sizeof(struct reiserfs_journal));
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002632 if (!journal) {
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04002633 reiserfs_warning(sb, "journal-1256",
Jeff Mahoney45b03d52009-03-30 14:02:21 -04002634 "unable to get memory for journal structure");
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002635 return 1;
2636 }
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002637 INIT_LIST_HEAD(&journal->j_bitmap_nodes);
2638 INIT_LIST_HEAD(&journal->j_prealloc_list);
2639 INIT_LIST_HEAD(&journal->j_working_list);
2640 INIT_LIST_HEAD(&journal->j_journal_list);
2641 journal->j_persistent_trans = 0;
Frederic Weisbecker37c69b92012-01-10 15:11:09 -08002642 if (reiserfs_allocate_list_bitmaps(sb, journal->j_list_bitmap,
2643 reiserfs_bmap_count(sb)))
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002644 goto free_and_return;
Frederic Weisbecker98ea3f52009-12-29 21:51:15 +01002645
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04002646 allocate_bitmap_nodes(sb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002647
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002648 /* reserved for journal area support */
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04002649 SB_JOURNAL_1st_RESERVED_BLOCK(sb) = (old_format ?
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002650 REISERFS_OLD_DISK_OFFSET_IN_BYTES
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04002651 / sb->s_blocksize +
2652 reiserfs_bmap_count(sb) +
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002653 1 :
2654 REISERFS_DISK_OFFSET_IN_BYTES /
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04002655 sb->s_blocksize + 2);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002656
Lucas De Marchi25985ed2011-03-30 22:57:33 -03002657 /* Sanity check to see is the standard journal fitting within first bitmap
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002658 (actual for small blocksizes) */
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04002659 if (!SB_ONDISK_JOURNAL_DEVICE(sb) &&
2660 (SB_JOURNAL_1st_RESERVED_BLOCK(sb) +
2661 SB_ONDISK_JOURNAL_SIZE(sb) > sb->s_blocksize * 8)) {
2662 reiserfs_warning(sb, "journal-1393",
Jeff Mahoney45b03d52009-03-30 14:02:21 -04002663 "journal does not fit for area addressed "
2664 "by first of bitmap blocks. It starts at "
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002665 "%u and its size is %u. Block size %ld",
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04002666 SB_JOURNAL_1st_RESERVED_BLOCK(sb),
2667 SB_ONDISK_JOURNAL_SIZE(sb),
2668 sb->s_blocksize);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002669 goto free_and_return;
2670 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002671
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04002672 if (journal_init_dev(sb, journal, j_dev_name) != 0) {
2673 reiserfs_warning(sb, "sh-462",
Jeff Mahoney45b03d52009-03-30 14:02:21 -04002674 "unable to initialize jornal device");
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002675 goto free_and_return;
2676 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002677
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04002678 rs = SB_DISK_SUPER_BLOCK(sb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002679
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002680 /* read journal header */
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04002681 bhjh = journal_bread(sb,
2682 SB_ONDISK_JOURNAL_1st_BLOCK(sb) +
2683 SB_ONDISK_JOURNAL_SIZE(sb));
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002684 if (!bhjh) {
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04002685 reiserfs_warning(sb, "sh-459",
Jeff Mahoney45b03d52009-03-30 14:02:21 -04002686 "unable to read journal header");
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002687 goto free_and_return;
2688 }
2689 jh = (struct reiserfs_journal_header *)(bhjh->b_data);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002690
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002691 /* make sure that journal matches to the super block */
2692 if (is_reiserfs_jr(rs)
2693 && (le32_to_cpu(jh->jh_journal.jp_journal_magic) !=
2694 sb_jp_journal_magic(rs))) {
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04002695 reiserfs_warning(sb, "sh-460",
Jeff Mahoney45b03d52009-03-30 14:02:21 -04002696 "journal header magic %x (device %s) does "
2697 "not match to magic found in super block %x",
2698 jh->jh_journal.jp_journal_magic,
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002699 bdevname(journal->j_dev_bd, b),
2700 sb_jp_journal_magic(rs));
2701 brelse(bhjh);
2702 goto free_and_return;
2703 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002704
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002705 journal->j_trans_max = le32_to_cpu(jh->jh_journal.jp_journal_trans_max);
2706 journal->j_max_batch = le32_to_cpu(jh->jh_journal.jp_journal_max_batch);
2707 journal->j_max_commit_age =
2708 le32_to_cpu(jh->jh_journal.jp_journal_max_commit_age);
2709 journal->j_max_trans_age = JOURNAL_MAX_TRANS_AGE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002710
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04002711 if (check_advise_trans_params(sb, journal) != 0)
Edward Shishkincf3d0b82007-10-16 23:30:30 -07002712 goto free_and_return;
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002713 journal->j_default_max_commit_age = journal->j_max_commit_age;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002714
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002715 if (commit_max_age != 0) {
2716 journal->j_max_commit_age = commit_max_age;
2717 journal->j_max_trans_age = commit_max_age;
2718 }
2719
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04002720 reiserfs_info(sb, "journal params: device %s, size %u, "
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002721 "journal first block %u, max trans len %u, max batch %u, "
2722 "max commit age %u, max trans age %u\n",
2723 bdevname(journal->j_dev_bd, b),
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04002724 SB_ONDISK_JOURNAL_SIZE(sb),
2725 SB_ONDISK_JOURNAL_1st_BLOCK(sb),
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002726 journal->j_trans_max,
2727 journal->j_max_batch,
2728 journal->j_max_commit_age, journal->j_max_trans_age);
2729
2730 brelse(bhjh);
2731
2732 journal->j_list_bitmap_index = 0;
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04002733 journal_list_init(sb);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002734
2735 memset(journal->j_list_hash_table, 0,
2736 JOURNAL_HASH_SIZE * sizeof(struct reiserfs_journal_cnode *));
2737
2738 INIT_LIST_HEAD(&journal->j_dirty_buffers);
2739 spin_lock_init(&journal->j_dirty_buffers_lock);
2740
2741 journal->j_start = 0;
2742 journal->j_len = 0;
2743 journal->j_len_alloc = 0;
2744 atomic_set(&(journal->j_wcount), 0);
2745 atomic_set(&(journal->j_async_throttle), 0);
2746 journal->j_bcount = 0;
2747 journal->j_trans_start_time = 0;
2748 journal->j_last = NULL;
2749 journal->j_first = NULL;
2750 init_waitqueue_head(&(journal->j_join_wait));
Jeff Mahoneyf68215c2008-07-25 01:46:38 -07002751 mutex_init(&journal->j_mutex);
Jeff Mahoneyafe70252008-07-25 01:46:39 -07002752 mutex_init(&journal->j_flush_mutex);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002753
2754 journal->j_trans_id = 10;
2755 journal->j_mount_id = 10;
2756 journal->j_state = 0;
2757 atomic_set(&(journal->j_jlock), 0);
2758 journal->j_cnode_free_list = allocate_cnodes(num_cnodes);
2759 journal->j_cnode_free_orig = journal->j_cnode_free_list;
2760 journal->j_cnode_free = journal->j_cnode_free_list ? num_cnodes : 0;
2761 journal->j_cnode_used = 0;
2762 journal->j_must_wait = 0;
2763
Jeff Mahoney576f6d72005-11-29 19:34:39 -08002764 if (journal->j_cnode_free == 0) {
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04002765 reiserfs_warning(sb, "journal-2004", "Journal cnode memory "
Jeff Mahoney576f6d72005-11-29 19:34:39 -08002766 "allocation failed (%ld bytes). Journal is "
2767 "too large for available memory. Usually "
2768 "this is due to a journal that is too large.",
2769 sizeof (struct reiserfs_journal_cnode) * num_cnodes);
2770 goto free_and_return;
2771 }
2772
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04002773 init_journal_hash(sb);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002774 jl = journal->j_current_jl;
Frederic Weisbecker37c69b92012-01-10 15:11:09 -08002775
2776 /*
2777 * get_list_bitmap() may call flush_commit_list() which
2778 * requires the lock. Calling flush_commit_list() shouldn't happen
2779 * this early but I like to be paranoid.
2780 */
2781 reiserfs_write_lock(sb);
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04002782 jl->j_list_bitmap = get_list_bitmap(sb, jl);
Frederic Weisbecker37c69b92012-01-10 15:11:09 -08002783 reiserfs_write_unlock(sb);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002784 if (!jl->j_list_bitmap) {
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04002785 reiserfs_warning(sb, "journal-2005",
Jeff Mahoney45b03d52009-03-30 14:02:21 -04002786 "get_list_bitmap failed for journal list 0");
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002787 goto free_and_return;
2788 }
Frederic Weisbecker37c69b92012-01-10 15:11:09 -08002789
Frederic Weisbecker37c69b92012-01-10 15:11:09 -08002790 ret = journal_read(sb);
Frederic Weisbecker37c69b92012-01-10 15:11:09 -08002791 if (ret < 0) {
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04002792 reiserfs_warning(sb, "reiserfs-2006",
Jeff Mahoney45b03d52009-03-30 14:02:21 -04002793 "Replay Failure, unable to mount");
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002794 goto free_and_return;
2795 }
2796
David Howellsc4028952006-11-22 14:57:56 +00002797 INIT_DELAYED_WORK(&journal->j_work, flush_async_commits);
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04002798 journal->j_work_sb = sb;
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002799 return 0;
2800 free_and_return:
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04002801 free_journal_ram(sb);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002802 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002803}
2804
2805/*
2806** test for a polite end of the current transaction. Used by file_write, and should
2807** be used by delete to make sure they don't write more than can fit inside a single
2808** transaction
2809*/
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002810int journal_transaction_should_end(struct reiserfs_transaction_handle *th,
2811 int new_alloc)
2812{
2813 struct reiserfs_journal *journal = SB_JOURNAL(th->t_super);
2814 time_t now = get_seconds();
2815 /* cannot restart while nested */
2816 BUG_ON(!th->t_trans_id);
2817 if (th->t_refcount > 1)
2818 return 0;
2819 if (journal->j_must_wait > 0 ||
2820 (journal->j_len_alloc + new_alloc) >= journal->j_max_batch ||
2821 atomic_read(&(journal->j_jlock)) ||
2822 (now - journal->j_trans_start_time) > journal->j_max_trans_age ||
2823 journal->j_cnode_free < (journal->j_trans_max * 3)) {
2824 return 1;
2825 }
Davidlohr Buesob18c1c62012-01-10 15:11:05 -08002826
Chris Mason6ae1ea42006-02-01 03:06:50 -08002827 journal->j_len_alloc += new_alloc;
2828 th->t_blocks_allocated += new_alloc ;
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002829 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002830}
2831
Davidlohr Buesob18c1c62012-01-10 15:11:05 -08002832/* this must be called inside a transaction
Linus Torvalds1da177e2005-04-16 15:20:36 -07002833*/
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002834void reiserfs_block_writes(struct reiserfs_transaction_handle *th)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002835{
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002836 struct reiserfs_journal *journal = SB_JOURNAL(th->t_super);
2837 BUG_ON(!th->t_trans_id);
2838 journal->j_must_wait = 1;
2839 set_bit(J_WRITERS_BLOCKED, &journal->j_state);
2840 return;
2841}
2842
Davidlohr Buesob18c1c62012-01-10 15:11:05 -08002843/* this must be called without a transaction started
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002844*/
2845void reiserfs_allow_writes(struct super_block *s)
2846{
2847 struct reiserfs_journal *journal = SB_JOURNAL(s);
2848 clear_bit(J_WRITERS_BLOCKED, &journal->j_state);
2849 wake_up(&journal->j_join_wait);
2850}
2851
Davidlohr Buesob18c1c62012-01-10 15:11:05 -08002852/* this must be called without a transaction started
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002853*/
2854void reiserfs_wait_on_write_block(struct super_block *s)
2855{
2856 struct reiserfs_journal *journal = SB_JOURNAL(s);
2857 wait_event(journal->j_join_wait,
2858 !test_bit(J_WRITERS_BLOCKED, &journal->j_state));
2859}
2860
2861static void queue_log_writer(struct super_block *s)
2862{
2863 wait_queue_t wait;
2864 struct reiserfs_journal *journal = SB_JOURNAL(s);
2865 set_bit(J_WRITERS_QUEUED, &journal->j_state);
2866
2867 /*
2868 * we don't want to use wait_event here because
2869 * we only want to wait once.
2870 */
2871 init_waitqueue_entry(&wait, current);
2872 add_wait_queue(&journal->j_join_wait, &wait);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002873 set_current_state(TASK_UNINTERRUPTIBLE);
Frederic Weisbecker8ebc4232009-04-07 04:19:49 +02002874 if (test_bit(J_WRITERS_QUEUED, &journal->j_state)) {
Jeff Mahoney278f6672013-08-08 17:34:46 -04002875 int depth = reiserfs_write_unlock_nested(s);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002876 schedule();
Jeff Mahoney278f6672013-08-08 17:34:46 -04002877 reiserfs_write_lock_nested(s, depth);
Frederic Weisbecker8ebc4232009-04-07 04:19:49 +02002878 }
Milind Arun Choudhary5ab2f7e2007-05-08 00:30:51 -07002879 __set_current_state(TASK_RUNNING);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002880 remove_wait_queue(&journal->j_join_wait, &wait);
2881}
2882
2883static void wake_queued_writers(struct super_block *s)
2884{
2885 struct reiserfs_journal *journal = SB_JOURNAL(s);
2886 if (test_and_clear_bit(J_WRITERS_QUEUED, &journal->j_state))
2887 wake_up(&journal->j_join_wait);
2888}
2889
Jeff Mahoney600ed412009-03-30 14:02:17 -04002890static void let_transaction_grow(struct super_block *sb, unsigned int trans_id)
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002891{
2892 struct reiserfs_journal *journal = SB_JOURNAL(sb);
2893 unsigned long bcount = journal->j_bcount;
2894 while (1) {
Jeff Mahoney278f6672013-08-08 17:34:46 -04002895 int depth;
2896
2897 depth = reiserfs_write_unlock_nested(sb);
Nishanth Aravamudan041e0e32005-09-10 00:27:23 -07002898 schedule_timeout_uninterruptible(1);
Jeff Mahoney278f6672013-08-08 17:34:46 -04002899 reiserfs_write_lock_nested(sb, depth);
2900
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002901 journal->j_current_jl->j_state |= LIST_COMMIT_PENDING;
2902 while ((atomic_read(&journal->j_wcount) > 0 ||
2903 atomic_read(&journal->j_jlock)) &&
2904 journal->j_trans_id == trans_id) {
2905 queue_log_writer(sb);
2906 }
2907 if (journal->j_trans_id != trans_id)
2908 break;
2909 if (bcount == journal->j_bcount)
2910 break;
2911 bcount = journal->j_bcount;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002912 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002913}
2914
2915/* join == true if you must join an existing transaction.
2916** join == false if you can deal with waiting for others to finish
2917**
2918** this will block until the transaction is joinable. send the number of blocks you
2919** expect to use in nblocks.
2920*/
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002921static int do_journal_begin_r(struct reiserfs_transaction_handle *th,
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04002922 struct super_block *sb, unsigned long nblocks,
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002923 int join)
2924{
2925 time_t now = get_seconds();
Jeff Mahoney600ed412009-03-30 14:02:17 -04002926 unsigned int old_trans_id;
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04002927 struct reiserfs_journal *journal = SB_JOURNAL(sb);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002928 struct reiserfs_transaction_handle myth;
2929 int sched_count = 0;
2930 int retval;
Jeff Mahoney278f6672013-08-08 17:34:46 -04002931 int depth;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002932
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04002933 reiserfs_check_lock_depth(sb, "journal_begin");
Eric Sesterhenn14a61442006-10-03 23:36:38 +02002934 BUG_ON(nblocks > journal->j_trans_max);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002935
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04002936 PROC_INFO_INC(sb, journal.journal_being);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002937 /* set here for journal_join */
2938 th->t_refcount = 1;
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04002939 th->t_super = sb;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002940
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002941 relock:
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04002942 lock_journal(sb);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002943 if (join != JBEGIN_ABORT && reiserfs_is_journal_aborted(journal)) {
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04002944 unlock_journal(sb);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002945 retval = journal->j_errno;
2946 goto out_fail;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002947 }
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002948 journal->j_bcount++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002949
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002950 if (test_bit(J_WRITERS_BLOCKED, &journal->j_state)) {
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04002951 unlock_journal(sb);
Jeff Mahoney278f6672013-08-08 17:34:46 -04002952 depth = reiserfs_write_unlock_nested(sb);
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04002953 reiserfs_wait_on_write_block(sb);
Jeff Mahoney278f6672013-08-08 17:34:46 -04002954 reiserfs_write_lock_nested(sb, depth);
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04002955 PROC_INFO_INC(sb, journal.journal_relock_writers);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002956 goto relock;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002957 }
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002958 now = get_seconds();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002959
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002960 /* if there is no room in the journal OR
Jeff Mahoney0222e652009-03-30 14:02:44 -04002961 ** 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 -07002962 ** we don't sleep if there aren't other writers
2963 */
2964
2965 if ((!join && journal->j_must_wait > 0) ||
2966 (!join
2967 && (journal->j_len_alloc + nblocks + 2) >= journal->j_max_batch)
2968 || (!join && atomic_read(&journal->j_wcount) > 0
2969 && journal->j_trans_start_time > 0
2970 && (now - journal->j_trans_start_time) >
2971 journal->j_max_trans_age) || (!join
2972 && atomic_read(&journal->j_jlock))
2973 || (!join && journal->j_cnode_free < (journal->j_trans_max * 3))) {
2974
2975 old_trans_id = journal->j_trans_id;
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04002976 unlock_journal(sb); /* allow others to finish this transaction */
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002977
2978 if (!join && (journal->j_len_alloc + nblocks + 2) >=
2979 journal->j_max_batch &&
2980 ((journal->j_len + nblocks + 2) * 100) <
2981 (journal->j_len_alloc * 75)) {
2982 if (atomic_read(&journal->j_wcount) > 10) {
2983 sched_count++;
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04002984 queue_log_writer(sb);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002985 goto relock;
2986 }
2987 }
2988 /* don't mess with joining the transaction if all we have to do is
2989 * wait for someone else to do a commit
2990 */
2991 if (atomic_read(&journal->j_jlock)) {
2992 while (journal->j_trans_id == old_trans_id &&
2993 atomic_read(&journal->j_jlock)) {
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04002994 queue_log_writer(sb);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002995 }
2996 goto relock;
2997 }
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04002998 retval = journal_join(&myth, sb, 1);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002999 if (retval)
3000 goto out_fail;
3001
3002 /* someone might have ended the transaction while we joined */
3003 if (old_trans_id != journal->j_trans_id) {
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04003004 retval = do_journal_end(&myth, sb, 1, 0);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003005 } else {
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04003006 retval = do_journal_end(&myth, sb, 1, COMMIT_NOW);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003007 }
3008
3009 if (retval)
3010 goto out_fail;
3011
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04003012 PROC_INFO_INC(sb, journal.journal_relock_wcount);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003013 goto relock;
3014 }
3015 /* we are the first writer, set trans_id */
3016 if (journal->j_trans_start_time == 0) {
3017 journal->j_trans_start_time = get_seconds();
3018 }
3019 atomic_inc(&(journal->j_wcount));
3020 journal->j_len_alloc += nblocks;
3021 th->t_blocks_logged = 0;
3022 th->t_blocks_allocated = nblocks;
3023 th->t_trans_id = journal->j_trans_id;
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04003024 unlock_journal(sb);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003025 INIT_LIST_HEAD(&th->t_list);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003026 return 0;
3027
3028 out_fail:
3029 memset(th, 0, sizeof(*th));
3030 /* Re-set th->t_super, so we can properly keep track of how many
3031 * persistent transactions there are. We need to do this so if this
3032 * call is part of a failed restart_transaction, we can free it later */
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04003033 th->t_super = sb;
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003034 return retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003035}
3036
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003037struct reiserfs_transaction_handle *reiserfs_persistent_transaction(struct
3038 super_block
3039 *s,
3040 int nblocks)
3041{
3042 int ret;
3043 struct reiserfs_transaction_handle *th;
3044
3045 /* if we're nesting into an existing transaction. It will be
3046 ** persistent on its own
3047 */
3048 if (reiserfs_transaction_running(s)) {
3049 th = current->journal_info;
3050 th->t_refcount++;
Eric Sesterhenn14a61442006-10-03 23:36:38 +02003051 BUG_ON(th->t_refcount < 2);
3052
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003053 return th;
3054 }
Pekka Enbergd739b422006-02-01 03:06:43 -08003055 th = kmalloc(sizeof(struct reiserfs_transaction_handle), GFP_NOFS);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003056 if (!th)
3057 return NULL;
3058 ret = journal_begin(th, s, nblocks);
3059 if (ret) {
Pekka Enbergd739b422006-02-01 03:06:43 -08003060 kfree(th);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003061 return NULL;
3062 }
3063
3064 SB_JOURNAL(s)->j_persistent_trans++;
3065 return th;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003066}
3067
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003068int reiserfs_end_persistent_transaction(struct reiserfs_transaction_handle *th)
3069{
3070 struct super_block *s = th->t_super;
3071 int ret = 0;
3072 if (th->t_trans_id)
3073 ret = journal_end(th, th->t_super, th->t_blocks_allocated);
3074 else
3075 ret = -EIO;
3076 if (th->t_refcount == 0) {
3077 SB_JOURNAL(s)->j_persistent_trans--;
Pekka Enbergd739b422006-02-01 03:06:43 -08003078 kfree(th);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003079 }
3080 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003081}
3082
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003083static int journal_join(struct reiserfs_transaction_handle *th,
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04003084 struct super_block *sb, unsigned long nblocks)
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003085{
3086 struct reiserfs_transaction_handle *cur_th = current->journal_info;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003087
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003088 /* this keeps do_journal_end from NULLing out the current->journal_info
3089 ** pointer
3090 */
3091 th->t_handle_save = cur_th;
Eric Sesterhenn14a61442006-10-03 23:36:38 +02003092 BUG_ON(cur_th && cur_th->t_refcount > 1);
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04003093 return do_journal_begin_r(th, sb, nblocks, JBEGIN_JOIN);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003094}
3095
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003096int journal_join_abort(struct reiserfs_transaction_handle *th,
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04003097 struct super_block *sb, unsigned long nblocks)
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003098{
3099 struct reiserfs_transaction_handle *cur_th = current->journal_info;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003100
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003101 /* this keeps do_journal_end from NULLing out the current->journal_info
3102 ** pointer
3103 */
3104 th->t_handle_save = cur_th;
Eric Sesterhenn14a61442006-10-03 23:36:38 +02003105 BUG_ON(cur_th && cur_th->t_refcount > 1);
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04003106 return do_journal_begin_r(th, sb, nblocks, JBEGIN_ABORT);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003107}
3108
3109int journal_begin(struct reiserfs_transaction_handle *th,
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04003110 struct super_block *sb, unsigned long nblocks)
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003111{
3112 struct reiserfs_transaction_handle *cur_th = current->journal_info;
3113 int ret;
3114
3115 th->t_handle_save = NULL;
3116 if (cur_th) {
3117 /* we are nesting into the current transaction */
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04003118 if (cur_th->t_super == sb) {
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003119 BUG_ON(!cur_th->t_refcount);
3120 cur_th->t_refcount++;
3121 memcpy(th, cur_th, sizeof(*th));
3122 if (th->t_refcount <= 1)
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04003123 reiserfs_warning(sb, "reiserfs-2005",
Jeff Mahoney45b03d52009-03-30 14:02:21 -04003124 "BAD: refcount <= 1, but "
3125 "journal_info != 0");
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003126 return 0;
3127 } else {
3128 /* we've ended up with a handle from a different filesystem.
3129 ** save it and restore on journal_end. This should never
3130 ** really happen...
3131 */
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04003132 reiserfs_warning(sb, "clm-2100",
Jeff Mahoney45b03d52009-03-30 14:02:21 -04003133 "nesting info a different FS");
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003134 th->t_handle_save = current->journal_info;
3135 current->journal_info = th;
3136 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003137 } else {
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003138 current->journal_info = th;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003139 }
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04003140 ret = do_journal_begin_r(th, sb, nblocks, JBEGIN_REG);
Eric Sesterhenn14a61442006-10-03 23:36:38 +02003141 BUG_ON(current->journal_info != th);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003142
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003143 /* I guess this boils down to being the reciprocal of clm-2100 above.
3144 * If do_journal_begin_r fails, we need to put it back, since journal_end
3145 * won't be called to do it. */
3146 if (ret)
3147 current->journal_info = th->t_handle_save;
3148 else
3149 BUG_ON(!th->t_refcount);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003150
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003151 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003152}
3153
3154/*
3155** puts bh into the current transaction. If it was already there, reorders removes the
3156** old pointers from the hash, and puts new ones in (to make sure replay happen in the right order).
3157**
3158** if it was dirty, cleans and files onto the clean list. I can't let it be dirty again until the
3159** transaction is committed.
Jeff Mahoney0222e652009-03-30 14:02:44 -04003160**
Linus Torvalds1da177e2005-04-16 15:20:36 -07003161** if j_len, is bigger than j_len_alloc, it pushes j_len_alloc to 10 + j_len.
3162*/
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003163int journal_mark_dirty(struct reiserfs_transaction_handle *th,
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04003164 struct super_block *sb, struct buffer_head *bh)
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003165{
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04003166 struct reiserfs_journal *journal = SB_JOURNAL(sb);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003167 struct reiserfs_journal_cnode *cn = NULL;
3168 int count_already_incd = 0;
3169 int prepared = 0;
3170 BUG_ON(!th->t_trans_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003171
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04003172 PROC_INFO_INC(sb, journal.mark_dirty);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003173 if (th->t_trans_id != journal->j_trans_id) {
Jeff Mahoneyc3a9c212009-03-30 14:02:25 -04003174 reiserfs_panic(th->t_super, "journal-1577",
3175 "handle trans id %ld != current trans id %ld",
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003176 th->t_trans_id, journal->j_trans_id);
3177 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003178
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003179 prepared = test_clear_buffer_journal_prepared(bh);
3180 clear_buffer_journal_restore_dirty(bh);
3181 /* already in this transaction, we are done */
3182 if (buffer_journaled(bh)) {
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04003183 PROC_INFO_INC(sb, journal.mark_dirty_already);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003184 return 0;
3185 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003186
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003187 /* this must be turned into a panic instead of a warning. We can't allow
3188 ** a dirty or journal_dirty or locked buffer to be logged, as some changes
3189 ** could get to disk too early. NOT GOOD.
3190 */
3191 if (!prepared || buffer_dirty(bh)) {
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04003192 reiserfs_warning(sb, "journal-1777",
Jeff Mahoney45b03d52009-03-30 14:02:21 -04003193 "buffer %llu bad state "
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003194 "%cPREPARED %cLOCKED %cDIRTY %cJDIRTY_WAIT",
3195 (unsigned long long)bh->b_blocknr,
3196 prepared ? ' ' : '!',
3197 buffer_locked(bh) ? ' ' : '!',
3198 buffer_dirty(bh) ? ' ' : '!',
3199 buffer_journal_dirty(bh) ? ' ' : '!');
3200 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003201
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003202 if (atomic_read(&(journal->j_wcount)) <= 0) {
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04003203 reiserfs_warning(sb, "journal-1409",
Jeff Mahoney45b03d52009-03-30 14:02:21 -04003204 "returning because j_wcount was %d",
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003205 atomic_read(&(journal->j_wcount)));
3206 return 1;
3207 }
Jeff Mahoney0222e652009-03-30 14:02:44 -04003208 /* this error means I've screwed up, and we've overflowed the transaction.
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003209 ** Nothing can be done here, except make the FS readonly or panic.
3210 */
3211 if (journal->j_len >= journal->j_trans_max) {
Jeff Mahoneyc3a9c212009-03-30 14:02:25 -04003212 reiserfs_panic(th->t_super, "journal-1413",
3213 "j_len (%lu) is too big",
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003214 journal->j_len);
3215 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003216
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003217 if (buffer_journal_dirty(bh)) {
3218 count_already_incd = 1;
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04003219 PROC_INFO_INC(sb, journal.mark_dirty_notjournal);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003220 clear_buffer_journal_dirty(bh);
3221 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003222
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003223 if (journal->j_len > journal->j_len_alloc) {
3224 journal->j_len_alloc = journal->j_len + JOURNAL_PER_BALANCE_CNT;
3225 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003226
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003227 set_buffer_journaled(bh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003228
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003229 /* now put this guy on the end */
3230 if (!cn) {
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04003231 cn = get_cnode(sb);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003232 if (!cn) {
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04003233 reiserfs_panic(sb, "journal-4", "get_cnode failed!");
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003234 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003235
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003236 if (th->t_blocks_logged == th->t_blocks_allocated) {
3237 th->t_blocks_allocated += JOURNAL_PER_BALANCE_CNT;
3238 journal->j_len_alloc += JOURNAL_PER_BALANCE_CNT;
3239 }
3240 th->t_blocks_logged++;
3241 journal->j_len++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003242
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003243 cn->bh = bh;
3244 cn->blocknr = bh->b_blocknr;
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04003245 cn->sb = sb;
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003246 cn->jlist = NULL;
3247 insert_journal_hash(journal->j_hash_table, cn);
3248 if (!count_already_incd) {
3249 get_bh(bh);
3250 }
3251 }
3252 cn->next = NULL;
3253 cn->prev = journal->j_last;
3254 cn->bh = bh;
3255 if (journal->j_last) {
3256 journal->j_last->next = cn;
3257 journal->j_last = cn;
3258 } else {
3259 journal->j_first = cn;
3260 journal->j_last = cn;
3261 }
Artem Bityutskiy033369d2012-06-01 17:18:08 +03003262 reiserfs_schedule_old_flush(sb);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003263 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003264}
3265
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003266int journal_end(struct reiserfs_transaction_handle *th,
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04003267 struct super_block *sb, unsigned long nblocks)
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003268{
3269 if (!current->journal_info && th->t_refcount > 1)
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04003270 reiserfs_warning(sb, "REISER-NESTING",
Jeff Mahoney45b03d52009-03-30 14:02:21 -04003271 "th NULL, refcount %d", th->t_refcount);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003272
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003273 if (!th->t_trans_id) {
3274 WARN_ON(1);
3275 return -EIO;
3276 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003277
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003278 th->t_refcount--;
3279 if (th->t_refcount > 0) {
3280 struct reiserfs_transaction_handle *cur_th =
3281 current->journal_info;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003282
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003283 /* we aren't allowed to close a nested transaction on a different
3284 ** filesystem from the one in the task struct
3285 */
Eric Sesterhenn14a61442006-10-03 23:36:38 +02003286 BUG_ON(cur_th->t_super != th->t_super);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003287
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003288 if (th != cur_th) {
3289 memcpy(current->journal_info, th, sizeof(*th));
3290 th->t_trans_id = 0;
3291 }
3292 return 0;
3293 } else {
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04003294 return do_journal_end(th, sb, nblocks, 0);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003295 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003296}
3297
Jeff Mahoney0222e652009-03-30 14:02:44 -04003298/* removes from the current transaction, relsing and descrementing any counters.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003299** also files the removed buffer directly onto the clean list
3300**
3301** called by journal_mark_freed when a block has been deleted
3302**
3303** returns 1 if it cleaned and relsed the buffer. 0 otherwise
3304*/
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04003305static int remove_from_transaction(struct super_block *sb,
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003306 b_blocknr_t blocknr, int already_cleaned)
3307{
3308 struct buffer_head *bh;
3309 struct reiserfs_journal_cnode *cn;
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04003310 struct reiserfs_journal *journal = SB_JOURNAL(sb);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003311 int ret = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003312
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04003313 cn = get_journal_hash_dev(sb, journal->j_hash_table, blocknr);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003314 if (!cn || !cn->bh) {
3315 return ret;
3316 }
3317 bh = cn->bh;
3318 if (cn->prev) {
3319 cn->prev->next = cn->next;
3320 }
3321 if (cn->next) {
3322 cn->next->prev = cn->prev;
3323 }
3324 if (cn == journal->j_first) {
3325 journal->j_first = cn->next;
3326 }
3327 if (cn == journal->j_last) {
3328 journal->j_last = cn->prev;
3329 }
3330 if (bh)
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04003331 remove_journal_hash(sb, journal->j_hash_table, NULL,
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003332 bh->b_blocknr, 0);
3333 clear_buffer_journaled(bh); /* don't log this one */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003334
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003335 if (!already_cleaned) {
3336 clear_buffer_journal_dirty(bh);
3337 clear_buffer_dirty(bh);
3338 clear_buffer_journal_test(bh);
3339 put_bh(bh);
3340 if (atomic_read(&(bh->b_count)) < 0) {
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04003341 reiserfs_warning(sb, "journal-1752",
Jeff Mahoney45b03d52009-03-30 14:02:21 -04003342 "b_count < 0");
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003343 }
3344 ret = 1;
3345 }
3346 journal->j_len--;
3347 journal->j_len_alloc--;
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04003348 free_cnode(sb, cn);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003349 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003350}
3351
3352/*
3353** for any cnode in a journal list, it can only be dirtied of all the
Matt LaPlante0779bf22006-11-30 05:24:39 +01003354** transactions that include it are committed to disk.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003355** this checks through each transaction, and returns 1 if you are allowed to dirty,
3356** and 0 if you aren't
3357**
3358** it is called by dirty_journal_list, which is called after flush_commit_list has gotten all the log
3359** blocks for a given transaction on disk
3360**
3361*/
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003362static int can_dirty(struct reiserfs_journal_cnode *cn)
3363{
3364 struct super_block *sb = cn->sb;
3365 b_blocknr_t blocknr = cn->blocknr;
3366 struct reiserfs_journal_cnode *cur = cn->hprev;
3367 int can_dirty = 1;
3368
3369 /* first test hprev. These are all newer than cn, so any node here
3370 ** with the same block number and dev means this node can't be sent
3371 ** to disk right now.
3372 */
3373 while (cur && can_dirty) {
3374 if (cur->jlist && cur->bh && cur->blocknr && cur->sb == sb &&
3375 cur->blocknr == blocknr) {
3376 can_dirty = 0;
3377 }
3378 cur = cur->hprev;
3379 }
3380 /* then test hnext. These are all older than cn. As long as they
3381 ** are committed to the log, it is safe to write cn to disk
3382 */
3383 cur = cn->hnext;
3384 while (cur && can_dirty) {
3385 if (cur->jlist && cur->jlist->j_len > 0 &&
3386 atomic_read(&(cur->jlist->j_commit_left)) > 0 && cur->bh &&
3387 cur->blocknr && cur->sb == sb && cur->blocknr == blocknr) {
3388 can_dirty = 0;
3389 }
3390 cur = cur->hnext;
3391 }
3392 return can_dirty;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003393}
3394
3395/* syncs the commit blocks, but does not force the real buffers to disk
Jeff Mahoney0222e652009-03-30 14:02:44 -04003396** will wait until the current transaction is done/committed before returning
Linus Torvalds1da177e2005-04-16 15:20:36 -07003397*/
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003398int journal_end_sync(struct reiserfs_transaction_handle *th,
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04003399 struct super_block *sb, unsigned long nblocks)
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003400{
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04003401 struct reiserfs_journal *journal = SB_JOURNAL(sb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003402
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003403 BUG_ON(!th->t_trans_id);
3404 /* you can sync while nested, very, very bad */
Eric Sesterhenn14a61442006-10-03 23:36:38 +02003405 BUG_ON(th->t_refcount > 1);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003406 if (journal->j_len == 0) {
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04003407 reiserfs_prepare_for_journal(sb, SB_BUFFER_WITH_SB(sb),
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003408 1);
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04003409 journal_mark_dirty(th, sb, SB_BUFFER_WITH_SB(sb));
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003410 }
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04003411 return do_journal_end(th, sb, nblocks, COMMIT_NOW | WAIT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003412}
3413
3414/*
3415** writeback the pending async commits to disk
3416*/
David Howellsc4028952006-11-22 14:57:56 +00003417static void flush_async_commits(struct work_struct *work)
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003418{
David Howellsc4028952006-11-22 14:57:56 +00003419 struct reiserfs_journal *journal =
3420 container_of(work, struct reiserfs_journal, j_work.work);
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04003421 struct super_block *sb = journal->j_work_sb;
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003422 struct reiserfs_journal_list *jl;
3423 struct list_head *entry;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003424
Frederic Weisbecker8ebc4232009-04-07 04:19:49 +02003425 reiserfs_write_lock(sb);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003426 if (!list_empty(&journal->j_journal_list)) {
3427 /* last entry is the youngest, commit it and you get everything */
3428 entry = journal->j_journal_list.prev;
3429 jl = JOURNAL_LIST_ENTRY(entry);
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04003430 flush_commit_list(sb, jl, 1);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003431 }
Frederic Weisbecker8ebc4232009-04-07 04:19:49 +02003432 reiserfs_write_unlock(sb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003433}
3434
3435/*
3436** flushes any old transactions to disk
3437** ends the current transaction if it is too old
3438*/
Artem Bityutskiy25729b02012-06-01 17:18:05 +03003439void reiserfs_flush_old_commits(struct super_block *sb)
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003440{
3441 time_t now;
3442 struct reiserfs_transaction_handle th;
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04003443 struct reiserfs_journal *journal = SB_JOURNAL(sb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003444
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003445 now = get_seconds();
3446 /* safety check so we don't flush while we are replaying the log during
3447 * mount
3448 */
Artem Bityutskiy25729b02012-06-01 17:18:05 +03003449 if (list_empty(&journal->j_journal_list))
3450 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003451
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003452 /* check the current transaction. If there are no writers, and it is
3453 * too old, finish it, and force the commit blocks to disk
3454 */
3455 if (atomic_read(&journal->j_wcount) <= 0 &&
3456 journal->j_trans_start_time > 0 &&
3457 journal->j_len > 0 &&
3458 (now - journal->j_trans_start_time) > journal->j_max_trans_age) {
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04003459 if (!journal_join(&th, sb, 1)) {
3460 reiserfs_prepare_for_journal(sb,
3461 SB_BUFFER_WITH_SB(sb),
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003462 1);
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04003463 journal_mark_dirty(&th, sb,
3464 SB_BUFFER_WITH_SB(sb));
Linus Torvalds1da177e2005-04-16 15:20:36 -07003465
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003466 /* we're only being called from kreiserfsd, it makes no sense to do
3467 ** an async commit so that kreiserfsd can do it later
3468 */
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04003469 do_journal_end(&th, sb, 1, COMMIT_NOW | WAIT);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003470 }
3471 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003472}
3473
3474/*
3475** 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 -04003476**
3477** 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 -07003478** the writers are done. By the time it wakes up, the transaction it was called has already ended, so it just
3479** flushes the commit list and returns 0.
3480**
3481** 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 -04003482**
Linus Torvalds1da177e2005-04-16 15:20:36 -07003483** Note, we can't allow the journal_end to proceed while there are still writers in the log.
3484*/
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003485static int check_journal_end(struct reiserfs_transaction_handle *th,
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04003486 struct super_block *sb, unsigned long nblocks,
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003487 int flags)
3488{
Linus Torvalds1da177e2005-04-16 15:20:36 -07003489
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003490 time_t now;
3491 int flush = flags & FLUSH_ALL;
3492 int commit_now = flags & COMMIT_NOW;
3493 int wait_on_commit = flags & WAIT;
3494 struct reiserfs_journal_list *jl;
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04003495 struct reiserfs_journal *journal = SB_JOURNAL(sb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003496
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003497 BUG_ON(!th->t_trans_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003498
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003499 if (th->t_trans_id != journal->j_trans_id) {
Jeff Mahoneyc3a9c212009-03-30 14:02:25 -04003500 reiserfs_panic(th->t_super, "journal-1577",
3501 "handle trans id %ld != current trans id %ld",
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003502 th->t_trans_id, journal->j_trans_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003503 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003504
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003505 journal->j_len_alloc -= (th->t_blocks_allocated - th->t_blocks_logged);
3506 if (atomic_read(&(journal->j_wcount)) > 0) { /* <= 0 is allowed. unmounting might not call begin */
3507 atomic_dec(&(journal->j_wcount));
3508 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003509
Jeff Mahoney0222e652009-03-30 14:02:44 -04003510 /* 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 -07003511 ** will be dealt with by next transaction that actually writes something, but should be taken
3512 ** care of in this trans
3513 */
Eric Sesterhenn14a61442006-10-03 23:36:38 +02003514 BUG_ON(journal->j_len == 0);
3515
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003516 /* if wcount > 0, and we are called to with flush or commit_now,
3517 ** we wait on j_join_wait. We will wake up when the last writer has
3518 ** finished the transaction, and started it on its way to the disk.
Jeff Mahoney0222e652009-03-30 14:02:44 -04003519 ** Then, we flush the commit or journal list, and just return 0
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003520 ** because the rest of journal end was already done for this transaction.
3521 */
3522 if (atomic_read(&(journal->j_wcount)) > 0) {
3523 if (flush || commit_now) {
3524 unsigned trans_id;
3525
3526 jl = journal->j_current_jl;
3527 trans_id = jl->j_trans_id;
3528 if (wait_on_commit)
3529 jl->j_state |= LIST_COMMIT_PENDING;
3530 atomic_set(&(journal->j_jlock), 1);
3531 if (flush) {
3532 journal->j_next_full_flush = 1;
3533 }
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04003534 unlock_journal(sb);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003535
3536 /* sleep while the current transaction is still j_jlocked */
3537 while (journal->j_trans_id == trans_id) {
3538 if (atomic_read(&journal->j_jlock)) {
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04003539 queue_log_writer(sb);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003540 } else {
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04003541 lock_journal(sb);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003542 if (journal->j_trans_id == trans_id) {
3543 atomic_set(&(journal->j_jlock),
3544 1);
3545 }
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04003546 unlock_journal(sb);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003547 }
3548 }
Eric Sesterhenn14a61442006-10-03 23:36:38 +02003549 BUG_ON(journal->j_trans_id == trans_id);
3550
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003551 if (commit_now
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04003552 && journal_list_still_alive(sb, trans_id)
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003553 && wait_on_commit) {
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04003554 flush_commit_list(sb, jl, 1);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003555 }
3556 return 0;
3557 }
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04003558 unlock_journal(sb);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003559 return 0;
3560 }
3561
3562 /* deal with old transactions where we are the last writers */
3563 now = get_seconds();
3564 if ((now - journal->j_trans_start_time) > journal->j_max_trans_age) {
3565 commit_now = 1;
3566 journal->j_next_async_flush = 1;
3567 }
3568 /* don't batch when someone is waiting on j_join_wait */
3569 /* don't batch when syncing the commit or flushing the whole trans */
3570 if (!(journal->j_must_wait > 0) && !(atomic_read(&(journal->j_jlock)))
3571 && !flush && !commit_now && (journal->j_len < journal->j_max_batch)
3572 && journal->j_len_alloc < journal->j_max_batch
3573 && journal->j_cnode_free > (journal->j_trans_max * 3)) {
3574 journal->j_bcount++;
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04003575 unlock_journal(sb);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003576 return 0;
3577 }
3578
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04003579 if (journal->j_start > SB_ONDISK_JOURNAL_SIZE(sb)) {
3580 reiserfs_panic(sb, "journal-003",
Jeff Mahoneyc3a9c212009-03-30 14:02:25 -04003581 "j_start (%ld) is too high",
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003582 journal->j_start);
3583 }
3584 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003585}
3586
3587/*
3588** Does all the work that makes deleting blocks safe.
3589** 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 -04003590**
Linus Torvalds1da177e2005-04-16 15:20:36 -07003591** otherwise:
3592** set a bit for the block in the journal bitmap. That will prevent it from being allocated for unformatted nodes
3593** before this transaction has finished.
3594**
3595** mark any cnodes for this block as BLOCK_FREED, and clear their bh pointers. That will prevent any old transactions with
3596** this block from trying to flush to the real location. Since we aren't removing the cnode from the journal_list_hash,
3597** the block can't be reallocated yet.
3598**
3599** Then remove it from the current transaction, decrementing any counters and filing it on the clean list.
3600*/
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003601int journal_mark_freed(struct reiserfs_transaction_handle *th,
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04003602 struct super_block *sb, b_blocknr_t blocknr)
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003603{
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04003604 struct reiserfs_journal *journal = SB_JOURNAL(sb);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003605 struct reiserfs_journal_cnode *cn = NULL;
3606 struct buffer_head *bh = NULL;
3607 struct reiserfs_list_bitmap *jb = NULL;
3608 int cleaned = 0;
3609 BUG_ON(!th->t_trans_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003610
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04003611 cn = get_journal_hash_dev(sb, journal->j_hash_table, blocknr);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003612 if (cn && cn->bh) {
3613 bh = cn->bh;
3614 get_bh(bh);
3615 }
3616 /* if it is journal new, we just remove it from this transaction */
3617 if (bh && buffer_journal_new(bh)) {
3618 clear_buffer_journal_new(bh);
3619 clear_prepared_bits(bh);
3620 reiserfs_clean_and_file_buffer(bh);
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04003621 cleaned = remove_from_transaction(sb, blocknr, cleaned);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003622 } else {
3623 /* set the bit for this block in the journal bitmap for this transaction */
3624 jb = journal->j_current_jl->j_list_bitmap;
3625 if (!jb) {
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04003626 reiserfs_panic(sb, "journal-1702",
Jeff Mahoneyc3a9c212009-03-30 14:02:25 -04003627 "journal_list_bitmap is NULL");
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003628 }
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04003629 set_bit_in_list_bitmap(sb, blocknr, jb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003630
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003631 /* Note, the entire while loop is not allowed to schedule. */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003632
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003633 if (bh) {
3634 clear_prepared_bits(bh);
3635 reiserfs_clean_and_file_buffer(bh);
3636 }
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04003637 cleaned = remove_from_transaction(sb, blocknr, cleaned);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003638
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003639 /* find all older transactions with this block, make sure they don't try to write it out */
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04003640 cn = get_journal_hash_dev(sb, journal->j_list_hash_table,
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003641 blocknr);
3642 while (cn) {
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04003643 if (sb == cn->sb && blocknr == cn->blocknr) {
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003644 set_bit(BLOCK_FREED, &cn->state);
3645 if (cn->bh) {
3646 if (!cleaned) {
3647 /* remove_from_transaction will brelse the buffer if it was
3648 ** in the current trans
3649 */
3650 clear_buffer_journal_dirty(cn->
3651 bh);
3652 clear_buffer_dirty(cn->bh);
3653 clear_buffer_journal_test(cn->
3654 bh);
3655 cleaned = 1;
3656 put_bh(cn->bh);
3657 if (atomic_read
3658 (&(cn->bh->b_count)) < 0) {
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04003659 reiserfs_warning(sb,
Jeff Mahoney45b03d52009-03-30 14:02:21 -04003660 "journal-2138",
3661 "cn->bh->b_count < 0");
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003662 }
3663 }
3664 if (cn->jlist) { /* since we are clearing the bh, we MUST dec nonzerolen */
3665 atomic_dec(&
3666 (cn->jlist->
3667 j_nonzerolen));
3668 }
3669 cn->bh = NULL;
3670 }
3671 }
3672 cn = cn->hnext;
3673 }
3674 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003675
Chris Mason398c95b2007-10-16 23:29:44 -07003676 if (bh)
3677 release_buffer_page(bh); /* get_hash grabs the buffer */
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003678 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003679}
3680
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003681void reiserfs_update_inode_transaction(struct inode *inode)
3682{
3683 struct reiserfs_journal *journal = SB_JOURNAL(inode->i_sb);
3684 REISERFS_I(inode)->i_jl = journal->j_current_jl;
3685 REISERFS_I(inode)->i_trans_id = journal->j_trans_id;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003686}
3687
3688/*
3689 * returns -1 on error, 0 if no commits/barriers were done and 1
3690 * if a transaction was actually committed and the barrier was done
3691 */
3692static int __commit_trans_jl(struct inode *inode, unsigned long id,
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003693 struct reiserfs_journal_list *jl)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003694{
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003695 struct reiserfs_transaction_handle th;
3696 struct super_block *sb = inode->i_sb;
3697 struct reiserfs_journal *journal = SB_JOURNAL(sb);
3698 int ret = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003699
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003700 /* is it from the current transaction, or from an unknown transaction? */
3701 if (id == journal->j_trans_id) {
3702 jl = journal->j_current_jl;
3703 /* try to let other writers come in and grow this transaction */
3704 let_transaction_grow(sb, id);
3705 if (journal->j_trans_id != id) {
3706 goto flush_commit_only;
3707 }
3708
3709 ret = journal_begin(&th, sb, 1);
3710 if (ret)
3711 return ret;
3712
3713 /* someone might have ended this transaction while we joined */
3714 if (journal->j_trans_id != id) {
3715 reiserfs_prepare_for_journal(sb, SB_BUFFER_WITH_SB(sb),
3716 1);
3717 journal_mark_dirty(&th, sb, SB_BUFFER_WITH_SB(sb));
3718 ret = journal_end(&th, sb, 1);
3719 goto flush_commit_only;
3720 }
3721
3722 ret = journal_end_sync(&th, sb, 1);
3723 if (!ret)
3724 ret = 1;
3725
3726 } else {
3727 /* this gets tricky, we have to make sure the journal list in
3728 * the inode still exists. We know the list is still around
3729 * if we've got a larger transaction id than the oldest list
3730 */
3731 flush_commit_only:
3732 if (journal_list_still_alive(inode->i_sb, id)) {
3733 /*
3734 * we only set ret to 1 when we know for sure
3735 * the barrier hasn't been started yet on the commit
3736 * block.
3737 */
3738 if (atomic_read(&jl->j_commit_left) > 1)
3739 ret = 1;
3740 flush_commit_list(sb, jl, 1);
3741 if (journal->j_errno)
3742 ret = journal->j_errno;
3743 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003744 }
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003745 /* otherwise the list is gone, and long since committed */
3746 return ret;
3747}
Linus Torvalds1da177e2005-04-16 15:20:36 -07003748
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003749int reiserfs_commit_for_inode(struct inode *inode)
3750{
Jeff Mahoney600ed412009-03-30 14:02:17 -04003751 unsigned int id = REISERFS_I(inode)->i_trans_id;
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003752 struct reiserfs_journal_list *jl = REISERFS_I(inode)->i_jl;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003753
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003754 /* for the whole inode, assume unset id means it was
3755 * changed in the current transaction. More conservative
Linus Torvalds1da177e2005-04-16 15:20:36 -07003756 */
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003757 if (!id || !jl) {
3758 reiserfs_update_inode_transaction(inode);
3759 id = REISERFS_I(inode)->i_trans_id;
3760 /* jl will be updated in __commit_trans_jl */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003761 }
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003762
3763 return __commit_trans_jl(inode, id, jl);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003764}
3765
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04003766void reiserfs_restore_prepared_buffer(struct super_block *sb,
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003767 struct buffer_head *bh)
3768{
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04003769 struct reiserfs_journal *journal = SB_JOURNAL(sb);
3770 PROC_INFO_INC(sb, journal.restore_prepared);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003771 if (!bh) {
3772 return;
3773 }
3774 if (test_clear_buffer_journal_restore_dirty(bh) &&
3775 buffer_journal_dirty(bh)) {
3776 struct reiserfs_journal_cnode *cn;
Jeff Mahoney278f6672013-08-08 17:34:46 -04003777 reiserfs_write_lock(sb);
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04003778 cn = get_journal_hash_dev(sb,
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003779 journal->j_list_hash_table,
3780 bh->b_blocknr);
3781 if (cn && can_dirty(cn)) {
3782 set_buffer_journal_test(bh);
3783 mark_buffer_dirty(bh);
3784 }
Jeff Mahoney278f6672013-08-08 17:34:46 -04003785 reiserfs_write_unlock(sb);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003786 }
3787 clear_buffer_journal_prepared(bh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003788}
3789
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003790extern struct tree_balance *cur_tb;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003791/*
3792** before we can change a metadata block, we have to make sure it won't
3793** be written to disk while we are altering it. So, we must:
3794** clean it
3795** wait on it.
Jeff Mahoney0222e652009-03-30 14:02:44 -04003796**
Linus Torvalds1da177e2005-04-16 15:20:36 -07003797*/
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04003798int reiserfs_prepare_for_journal(struct super_block *sb,
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003799 struct buffer_head *bh, int wait)
3800{
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04003801 PROC_INFO_INC(sb, journal.prepare);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003802
Nick Pigginca5de402008-08-02 12:02:13 +02003803 if (!trylock_buffer(bh)) {
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003804 if (!wait)
3805 return 0;
3806 lock_buffer(bh);
3807 }
3808 set_buffer_journal_prepared(bh);
3809 if (test_clear_buffer_dirty(bh) && buffer_journal_dirty(bh)) {
3810 clear_buffer_journal_test(bh);
3811 set_buffer_journal_restore_dirty(bh);
3812 }
3813 unlock_buffer(bh);
3814 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003815}
3816
Jeff Mahoney0222e652009-03-30 14:02:44 -04003817/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003818** long and ugly. If flush, will not return until all commit
3819** blocks and all real buffers in the trans are on disk.
3820** If no_async, won't return until all commit blocks are on disk.
3821**
3822** keep reading, there are comments as you go along
3823**
3824** If the journal is aborted, we just clean up. Things like flushing
3825** journal lists, etc just won't happen.
3826*/
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003827static int do_journal_end(struct reiserfs_transaction_handle *th,
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04003828 struct super_block *sb, unsigned long nblocks,
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003829 int flags)
3830{
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04003831 struct reiserfs_journal *journal = SB_JOURNAL(sb);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003832 struct reiserfs_journal_cnode *cn, *next, *jl_cn;
3833 struct reiserfs_journal_cnode *last_cn = NULL;
3834 struct reiserfs_journal_desc *desc;
3835 struct reiserfs_journal_commit *commit;
3836 struct buffer_head *c_bh; /* commit bh */
3837 struct buffer_head *d_bh; /* desc bh */
3838 int cur_write_start = 0; /* start index of current log write */
3839 int old_start;
3840 int i;
Alexander Zarochentseva44c94a2006-03-25 03:06:59 -08003841 int flush;
3842 int wait_on_commit;
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003843 struct reiserfs_journal_list *jl, *temp_jl;
3844 struct list_head *entry, *safe;
3845 unsigned long jindex;
Jeff Mahoney600ed412009-03-30 14:02:17 -04003846 unsigned int commit_trans_id;
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003847 int trans_half;
Jeff Mahoney278f6672013-08-08 17:34:46 -04003848 int depth;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003849
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003850 BUG_ON(th->t_refcount > 1);
3851 BUG_ON(!th->t_trans_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003852
Alexander Zarochentseva44c94a2006-03-25 03:06:59 -08003853 /* protect flush_older_commits from doing mistakes if the
3854 transaction ID counter gets overflowed. */
Jeff Mahoney600ed412009-03-30 14:02:17 -04003855 if (th->t_trans_id == ~0U)
Alexander Zarochentseva44c94a2006-03-25 03:06:59 -08003856 flags |= FLUSH_ALL | COMMIT_NOW | WAIT;
3857 flush = flags & FLUSH_ALL;
3858 wait_on_commit = flags & WAIT;
3859
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003860 current->journal_info = th->t_handle_save;
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04003861 reiserfs_check_lock_depth(sb, "journal end");
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003862 if (journal->j_len == 0) {
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04003863 reiserfs_prepare_for_journal(sb, SB_BUFFER_WITH_SB(sb),
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003864 1);
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04003865 journal_mark_dirty(th, sb, SB_BUFFER_WITH_SB(sb));
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003866 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003867
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04003868 lock_journal(sb);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003869 if (journal->j_next_full_flush) {
3870 flags |= FLUSH_ALL;
3871 flush = 1;
3872 }
3873 if (journal->j_next_async_flush) {
3874 flags |= COMMIT_NOW | WAIT;
3875 wait_on_commit = 1;
3876 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003877
Jeff Mahoney0222e652009-03-30 14:02:44 -04003878 /* check_journal_end locks the journal, and unlocks if it does not return 1
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003879 ** it tells us if we should continue with the journal_end, or just return
3880 */
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04003881 if (!check_journal_end(th, sb, nblocks, flags)) {
Artem Bityutskiy033369d2012-06-01 17:18:08 +03003882 reiserfs_schedule_old_flush(sb);
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04003883 wake_queued_writers(sb);
3884 reiserfs_async_progress_wait(sb);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003885 goto out;
3886 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003887
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003888 /* check_journal_end might set these, check again */
3889 if (journal->j_next_full_flush) {
3890 flush = 1;
3891 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003892
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003893 /*
3894 ** j must wait means we have to flush the log blocks, and the real blocks for
3895 ** this transaction
3896 */
3897 if (journal->j_must_wait > 0) {
3898 flush = 1;
3899 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003900#ifdef REISERFS_PREALLOCATE
Jan Karaef43bc42006-01-11 12:17:40 -08003901 /* quota ops might need to nest, setup the journal_info pointer for them
3902 * and raise the refcount so that it is > 0. */
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003903 current->journal_info = th;
Jan Karaef43bc42006-01-11 12:17:40 -08003904 th->t_refcount++;
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003905 reiserfs_discard_all_prealloc(th); /* it should not involve new blocks into
3906 * the transaction */
Jan Karaef43bc42006-01-11 12:17:40 -08003907 th->t_refcount--;
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003908 current->journal_info = th->t_handle_save;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003909#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07003910
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003911 /* setup description block */
3912 d_bh =
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04003913 journal_getblk(sb,
3914 SB_ONDISK_JOURNAL_1st_BLOCK(sb) +
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003915 journal->j_start);
3916 set_buffer_uptodate(d_bh);
3917 desc = (struct reiserfs_journal_desc *)(d_bh)->b_data;
3918 memset(d_bh->b_data, 0, d_bh->b_size);
3919 memcpy(get_journal_desc_magic(d_bh), JOURNAL_DESC_MAGIC, 8);
3920 set_desc_trans_id(desc, journal->j_trans_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003921
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003922 /* 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 -04003923 c_bh = journal_getblk(sb, SB_ONDISK_JOURNAL_1st_BLOCK(sb) +
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003924 ((journal->j_start + journal->j_len +
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04003925 1) % SB_ONDISK_JOURNAL_SIZE(sb)));
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003926 commit = (struct reiserfs_journal_commit *)c_bh->b_data;
3927 memset(c_bh->b_data, 0, c_bh->b_size);
3928 set_commit_trans_id(commit, journal->j_trans_id);
3929 set_buffer_uptodate(c_bh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003930
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003931 /* init this journal list */
3932 jl = journal->j_current_jl;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003933
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003934 /* we lock the commit before doing anything because
3935 * we want to make sure nobody tries to run flush_commit_list until
3936 * the new transaction is fully setup, and we've already flushed the
3937 * ordered bh list
3938 */
Frederic Weisbecker8ebc4232009-04-07 04:19:49 +02003939 reiserfs_mutex_lock_safe(&jl->j_commit_mutex, sb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003940
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003941 /* save the transaction id in case we need to commit it later */
3942 commit_trans_id = jl->j_trans_id;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003943
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003944 atomic_set(&jl->j_older_commits_done, 0);
3945 jl->j_trans_id = journal->j_trans_id;
3946 jl->j_timestamp = journal->j_trans_start_time;
3947 jl->j_commit_bh = c_bh;
3948 jl->j_start = journal->j_start;
3949 jl->j_len = journal->j_len;
3950 atomic_set(&jl->j_nonzerolen, journal->j_len);
3951 atomic_set(&jl->j_commit_left, journal->j_len + 2);
3952 jl->j_realblock = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003953
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003954 /* The ENTIRE FOR LOOP MUST not cause schedule to occur.
3955 ** for each real block, add it to the journal list hash,
3956 ** copy into real block index array in the commit or desc block
3957 */
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04003958 trans_half = journal_trans_half(sb->s_blocksize);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003959 for (i = 0, cn = journal->j_first; cn; cn = cn->next, i++) {
3960 if (buffer_journaled(cn->bh)) {
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04003961 jl_cn = get_cnode(sb);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003962 if (!jl_cn) {
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04003963 reiserfs_panic(sb, "journal-1676",
Jeff Mahoneyc3a9c212009-03-30 14:02:25 -04003964 "get_cnode returned NULL");
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003965 }
3966 if (i == 0) {
3967 jl->j_realblock = jl_cn;
3968 }
3969 jl_cn->prev = last_cn;
3970 jl_cn->next = NULL;
3971 if (last_cn) {
3972 last_cn->next = jl_cn;
3973 }
3974 last_cn = jl_cn;
Jeff Mahoney0222e652009-03-30 14:02:44 -04003975 /* make sure the block we are trying to log is not a block
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003976 of journal or reserved area */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003977
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003978 if (is_block_in_log_or_reserved_area
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04003979 (sb, cn->bh->b_blocknr)) {
3980 reiserfs_panic(sb, "journal-2332",
Jeff Mahoneyc3a9c212009-03-30 14:02:25 -04003981 "Trying to log block %lu, "
3982 "which is a log block",
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003983 cn->bh->b_blocknr);
3984 }
3985 jl_cn->blocknr = cn->bh->b_blocknr;
3986 jl_cn->state = 0;
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04003987 jl_cn->sb = sb;
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003988 jl_cn->bh = cn->bh;
3989 jl_cn->jlist = jl;
3990 insert_journal_hash(journal->j_list_hash_table, jl_cn);
3991 if (i < trans_half) {
3992 desc->j_realblock[i] =
3993 cpu_to_le32(cn->bh->b_blocknr);
3994 } else {
3995 commit->j_realblock[i - trans_half] =
3996 cpu_to_le32(cn->bh->b_blocknr);
3997 }
3998 } else {
3999 i--;
4000 }
4001 }
4002 set_desc_trans_len(desc, journal->j_len);
4003 set_desc_mount_id(desc, journal->j_mount_id);
4004 set_desc_trans_id(desc, journal->j_trans_id);
4005 set_commit_trans_len(commit, journal->j_len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004006
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07004007 /* special check in case all buffers in the journal were marked for not logging */
Eric Sesterhenn14a61442006-10-03 23:36:38 +02004008 BUG_ON(journal->j_len == 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004009
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07004010 /* we're about to dirty all the log blocks, mark the description block
4011 * dirty now too. Don't mark the commit block dirty until all the
4012 * others are on disk
4013 */
4014 mark_buffer_dirty(d_bh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004015
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07004016 /* first data block is j_start + 1, so add one to cur_write_start wherever you use it */
4017 cur_write_start = journal->j_start;
4018 cn = journal->j_first;
4019 jindex = 1; /* start at one so we don't get the desc again */
4020 while (cn) {
4021 clear_buffer_journal_new(cn->bh);
4022 /* copy all the real blocks into log area. dirty log blocks */
4023 if (buffer_journaled(cn->bh)) {
4024 struct buffer_head *tmp_bh;
4025 char *addr;
4026 struct page *page;
4027 tmp_bh =
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04004028 journal_getblk(sb,
4029 SB_ONDISK_JOURNAL_1st_BLOCK(sb) +
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07004030 ((cur_write_start +
4031 jindex) %
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04004032 SB_ONDISK_JOURNAL_SIZE(sb)));
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07004033 set_buffer_uptodate(tmp_bh);
4034 page = cn->bh->b_page;
4035 addr = kmap(page);
4036 memcpy(tmp_bh->b_data,
4037 addr + offset_in_page(cn->bh->b_data),
4038 cn->bh->b_size);
4039 kunmap(page);
4040 mark_buffer_dirty(tmp_bh);
4041 jindex++;
4042 set_buffer_journal_dirty(cn->bh);
4043 clear_buffer_journaled(cn->bh);
4044 } else {
4045 /* JDirty cleared sometime during transaction. don't log this one */
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04004046 reiserfs_warning(sb, "journal-2048",
Jeff Mahoney45b03d52009-03-30 14:02:21 -04004047 "BAD, buffer in journal hash, "
4048 "but not JDirty!");
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07004049 brelse(cn->bh);
4050 }
4051 next = cn->next;
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04004052 free_cnode(sb, cn);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07004053 cn = next;
Jeff Mahoney278f6672013-08-08 17:34:46 -04004054 reiserfs_cond_resched(sb);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07004055 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004056
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07004057 /* we are done with both the c_bh and d_bh, but
4058 ** c_bh must be written after all other commit blocks,
4059 ** so we dirty/relse c_bh in flush_commit_list, with commit_left <= 1.
4060 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07004061
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04004062 journal->j_current_jl = alloc_journal_list(sb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004063
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07004064 /* now it is safe to insert this transaction on the main list */
4065 list_add_tail(&jl->j_list, &journal->j_journal_list);
4066 list_add_tail(&jl->j_working_list, &journal->j_working_list);
4067 journal->j_num_work_lists++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004068
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07004069 /* reset journal values for the next transaction */
4070 old_start = journal->j_start;
4071 journal->j_start =
4072 (journal->j_start + journal->j_len +
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04004073 2) % SB_ONDISK_JOURNAL_SIZE(sb);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07004074 atomic_set(&(journal->j_wcount), 0);
4075 journal->j_bcount = 0;
4076 journal->j_last = NULL;
4077 journal->j_first = NULL;
4078 journal->j_len = 0;
4079 journal->j_trans_start_time = 0;
Alexander Zarochentseva44c94a2006-03-25 03:06:59 -08004080 /* check for trans_id overflow */
4081 if (++journal->j_trans_id == 0)
4082 journal->j_trans_id = 10;
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07004083 journal->j_current_jl->j_trans_id = journal->j_trans_id;
4084 journal->j_must_wait = 0;
4085 journal->j_len_alloc = 0;
4086 journal->j_next_full_flush = 0;
4087 journal->j_next_async_flush = 0;
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04004088 init_journal_hash(sb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004089
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07004090 // make sure reiserfs_add_jh sees the new current_jl before we
4091 // write out the tails
4092 smp_mb();
Linus Torvalds1da177e2005-04-16 15:20:36 -07004093
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07004094 /* tail conversion targets have to hit the disk before we end the
4095 * transaction. Otherwise a later transaction might repack the tail
4096 * before this transaction commits, leaving the data block unflushed and
4097 * clean, if we crash before the later transaction commits, the data block
4098 * is lost.
4099 */
4100 if (!list_empty(&jl->j_tail_bh_list)) {
Jeff Mahoney278f6672013-08-08 17:34:46 -04004101 depth = reiserfs_write_unlock_nested(sb);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07004102 write_ordered_buffers(&journal->j_dirty_buffers_lock,
4103 journal, jl, &jl->j_tail_bh_list);
Jeff Mahoney278f6672013-08-08 17:34:46 -04004104 reiserfs_write_lock_nested(sb, depth);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07004105 }
Eric Sesterhenn14a61442006-10-03 23:36:38 +02004106 BUG_ON(!list_empty(&jl->j_tail_bh_list));
Jeff Mahoney90415de2008-07-25 01:46:40 -07004107 mutex_unlock(&jl->j_commit_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004108
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07004109 /* honor the flush wishes from the caller, simple commits can
4110 ** be done outside the journal lock, they are done below
4111 **
4112 ** if we don't flush the commit list right now, we put it into
4113 ** the work queue so the people waiting on the async progress work
4114 ** queue don't wait for this proc to flush journal lists and such.
4115 */
4116 if (flush) {
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04004117 flush_commit_list(sb, jl, 1);
4118 flush_journal_list(sb, jl, 1);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07004119 } else if (!(jl->j_state & LIST_COMMIT_PENDING))
Jeff Mahoney797d9012014-04-23 10:00:34 -04004120 queue_delayed_work(REISERFS_SB(sb)->commit_wq,
4121 &journal->j_work, HZ / 10);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004122
Jeff Mahoney0222e652009-03-30 14:02:44 -04004123 /* if the next transaction has any chance of wrapping, flush
4124 ** transactions that might get overwritten. If any journal lists are very
4125 ** old flush them as well.
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07004126 */
4127 first_jl:
4128 list_for_each_safe(entry, safe, &journal->j_journal_list) {
4129 temp_jl = JOURNAL_LIST_ENTRY(entry);
4130 if (journal->j_start <= temp_jl->j_start) {
4131 if ((journal->j_start + journal->j_trans_max + 1) >=
4132 temp_jl->j_start) {
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04004133 flush_used_journal_lists(sb, temp_jl);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07004134 goto first_jl;
4135 } else if ((journal->j_start +
4136 journal->j_trans_max + 1) <
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04004137 SB_ONDISK_JOURNAL_SIZE(sb)) {
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07004138 /* if we don't cross into the next transaction and we don't
4139 * wrap, there is no way we can overlap any later transactions
4140 * break now
4141 */
4142 break;
4143 }
4144 } else if ((journal->j_start +
4145 journal->j_trans_max + 1) >
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04004146 SB_ONDISK_JOURNAL_SIZE(sb)) {
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07004147 if (((journal->j_start + journal->j_trans_max + 1) %
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04004148 SB_ONDISK_JOURNAL_SIZE(sb)) >=
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07004149 temp_jl->j_start) {
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04004150 flush_used_journal_lists(sb, temp_jl);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07004151 goto first_jl;
4152 } else {
4153 /* we don't overlap anything from out start to the end of the
4154 * log, and our wrapped portion doesn't overlap anything at
4155 * the start of the log. We can break
4156 */
4157 break;
4158 }
4159 }
4160 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004161
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07004162 journal->j_current_jl->j_list_bitmap =
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04004163 get_list_bitmap(sb, journal->j_current_jl);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004164
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07004165 if (!(journal->j_current_jl->j_list_bitmap)) {
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04004166 reiserfs_panic(sb, "journal-1996",
Jeff Mahoneyc3a9c212009-03-30 14:02:25 -04004167 "could not get a list bitmap");
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07004168 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004169
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07004170 atomic_set(&(journal->j_jlock), 0);
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04004171 unlock_journal(sb);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07004172 /* wake up any body waiting to join. */
4173 clear_bit(J_WRITERS_QUEUED, &journal->j_state);
4174 wake_up(&(journal->j_join_wait));
Linus Torvalds1da177e2005-04-16 15:20:36 -07004175
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07004176 if (!flush && wait_on_commit &&
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04004177 journal_list_still_alive(sb, commit_trans_id)) {
4178 flush_commit_list(sb, jl, 1);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07004179 }
4180 out:
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04004181 reiserfs_check_lock_depth(sb, "journal end2");
Linus Torvalds1da177e2005-04-16 15:20:36 -07004182
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07004183 memset(th, 0, sizeof(*th));
4184 /* Re-set th->t_super, so we can properly keep track of how many
4185 * persistent transactions there are. We need to do this so if this
4186 * call is part of a failed restart_transaction, we can free it later */
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04004187 th->t_super = sb;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004188
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07004189 return journal->j_errno;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004190}
4191
Jeff Mahoney32e8b102009-03-30 14:02:26 -04004192/* Send the file system read only and refuse new transactions */
4193void reiserfs_abort_journal(struct super_block *sb, int errno)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004194{
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07004195 struct reiserfs_journal *journal = SB_JOURNAL(sb);
4196 if (test_bit(J_ABORTED, &journal->j_state))
4197 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004198
Jeff Mahoney32e8b102009-03-30 14:02:26 -04004199 if (!journal->j_errno)
4200 journal->j_errno = errno;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004201
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07004202 sb->s_flags |= MS_RDONLY;
4203 set_bit(J_ABORTED, &journal->j_state);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004204
4205#ifdef CONFIG_REISERFS_CHECK
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07004206 dump_stack();
Linus Torvalds1da177e2005-04-16 15:20:36 -07004207#endif
4208}