blob: 19fbc810e8e74f951a33e3f6611ca7ec2ee2f6e1 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2** Write ahead logging implementation copyright Chris Mason 2000
3**
Jeff Mahoney0222e652009-03-30 14:02:44 -04004** The background commits make this code very interelated, and
Linus Torvalds1da177e2005-04-16 15:20:36 -07005** overly complex. I need to rethink things a bit....The major players:
6**
Jeff Mahoney0222e652009-03-30 14:02:44 -04007** journal_begin -- call with the number of blocks you expect to log.
Linus Torvalds1da177e2005-04-16 15:20:36 -07008** If the current transaction is too
Jeff Mahoney0222e652009-03-30 14:02:44 -04009** old, it will block until the current transaction is
Linus Torvalds1da177e2005-04-16 15:20:36 -070010** finished, and then start a new one.
Jeff Mahoney0222e652009-03-30 14:02:44 -040011** Usually, your transaction will get joined in with
Linus Torvalds1da177e2005-04-16 15:20:36 -070012** previous ones for speed.
13**
Jeff Mahoney0222e652009-03-30 14:02:44 -040014** journal_join -- same as journal_begin, but won't block on the current
Linus Torvalds1da177e2005-04-16 15:20:36 -070015** transaction regardless of age. Don't ever call
Jeff Mahoney0222e652009-03-30 14:02:44 -040016** this. Ever. There are only two places it should be
Linus Torvalds1da177e2005-04-16 15:20:36 -070017** called from, and they are both inside this file.
18**
Jeff Mahoney0222e652009-03-30 14:02:44 -040019** journal_mark_dirty -- adds blocks into this transaction. clears any flags
Linus Torvalds1da177e2005-04-16 15:20:36 -070020** that might make them get sent to disk
Jeff Mahoney0222e652009-03-30 14:02:44 -040021** and then marks them BH_JDirty. Puts the buffer head
22** into the current transaction hash.
Linus Torvalds1da177e2005-04-16 15:20:36 -070023**
24** journal_end -- if the current transaction is batchable, it does nothing
25** otherwise, it could do an async/synchronous commit, or
Jeff Mahoney0222e652009-03-30 14:02:44 -040026** a full flush of all log and real blocks in the
Linus Torvalds1da177e2005-04-16 15:20:36 -070027** transaction.
28**
Jeff Mahoney0222e652009-03-30 14:02:44 -040029** flush_old_commits -- if the current transaction is too old, it is ended and
30** commit blocks are sent to disk. Forces commit blocks
31** to disk for all backgrounded commits that have been
Linus Torvalds1da177e2005-04-16 15:20:36 -070032** around too long.
Jeff Mahoney0222e652009-03-30 14:02:44 -040033** -- Note, if you call this as an immediate flush from
Linus Torvalds1da177e2005-04-16 15:20:36 -070034** from within kupdate, it will ignore the immediate flag
35*/
36
Linus Torvalds1da177e2005-04-16 15:20:36 -070037#include <linux/time.h>
Matthew Wilcox6188e102008-04-18 22:21:05 -040038#include <linux/semaphore.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070039#include <linux/vmalloc.h>
40#include <linux/reiserfs_fs.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070041#include <linux/kernel.h>
42#include <linux/errno.h>
43#include <linux/fcntl.h>
44#include <linux/stat.h>
45#include <linux/string.h>
46#include <linux/smp_lock.h>
47#include <linux/buffer_head.h>
48#include <linux/workqueue.h>
49#include <linux/writeback.h>
50#include <linux/blkdev.h>
Andrew Morton3fcfab12006-10-19 23:28:16 -070051#include <linux/backing-dev.h>
Jeff Mahoney90415de2008-07-25 01:46:40 -070052#include <linux/uaccess.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090053#include <linux/slab.h>
Jeff Mahoney90415de2008-07-25 01:46:40 -070054
55#include <asm/system.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070056
Linus Torvalds1da177e2005-04-16 15:20:36 -070057/* gets a struct reiserfs_journal_list * from a list head */
58#define JOURNAL_LIST_ENTRY(h) (list_entry((h), struct reiserfs_journal_list, \
59 j_list))
60#define JOURNAL_WORK_ENTRY(h) (list_entry((h), struct reiserfs_journal_list, \
61 j_working_list))
62
63/* the number of mounted filesystems. This is used to decide when to
64** start and kill the commit workqueue
65*/
66static int reiserfs_mounted_fs_count;
67
68static struct workqueue_struct *commit_wq;
69
Linus Torvaldsbd4c6252005-07-12 20:21:28 -070070#define JOURNAL_TRANS_HALF 1018 /* must be correct to keep the desc and commit
71 structs at 4k */
72#define BUFNR 64 /*read ahead */
Linus Torvalds1da177e2005-04-16 15:20:36 -070073
74/* cnode stat bits. Move these into reiserfs_fs.h */
75
76#define BLOCK_FREED 2 /* this block was freed, and can't be written. */
Linus Torvaldsbd4c6252005-07-12 20:21:28 -070077#define BLOCK_FREED_HOLDER 3 /* this block was freed during this transaction, and can't be written */
Linus Torvalds1da177e2005-04-16 15:20:36 -070078
79#define BLOCK_NEEDS_FLUSH 4 /* used in flush_journal_list */
80#define BLOCK_DIRTIED 5
81
Linus Torvalds1da177e2005-04-16 15:20:36 -070082/* journal list state bits */
83#define LIST_TOUCHED 1
84#define LIST_DIRTY 2
Linus Torvaldsbd4c6252005-07-12 20:21:28 -070085#define LIST_COMMIT_PENDING 4 /* someone will commit this list */
Linus Torvalds1da177e2005-04-16 15:20:36 -070086
87/* flags for do_journal_end */
88#define FLUSH_ALL 1 /* flush commit and real blocks */
89#define COMMIT_NOW 2 /* end and commit this transaction */
Linus Torvaldsbd4c6252005-07-12 20:21:28 -070090#define WAIT 4 /* wait for the log blocks to hit the disk */
Linus Torvalds1da177e2005-04-16 15:20:36 -070091
Linus Torvaldsbd4c6252005-07-12 20:21:28 -070092static int do_journal_end(struct reiserfs_transaction_handle *,
93 struct super_block *, unsigned long nblocks,
94 int flags);
95static int flush_journal_list(struct super_block *s,
96 struct reiserfs_journal_list *jl, int flushall);
97static int flush_commit_list(struct super_block *s,
98 struct reiserfs_journal_list *jl, int flushall);
99static int can_dirty(struct reiserfs_journal_cnode *cn);
100static int journal_join(struct reiserfs_transaction_handle *th,
Jeff Mahoneya9dd3642009-03-30 14:02:45 -0400101 struct super_block *sb, unsigned long nblocks);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700102static int release_journal_dev(struct super_block *super,
103 struct reiserfs_journal *journal);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700104static int dirty_one_transaction(struct super_block *s,
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700105 struct reiserfs_journal_list *jl);
David Howellsc4028952006-11-22 14:57:56 +0000106static void flush_async_commits(struct work_struct *work);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700107static void queue_log_writer(struct super_block *s);
108
109/* values for join in do_journal_begin_r */
110enum {
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700111 JBEGIN_REG = 0, /* regular journal begin */
112 JBEGIN_JOIN = 1, /* join the running transaction if at all possible */
113 JBEGIN_ABORT = 2, /* called from cleanup code, ignores aborted flag */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700114};
115
116static int do_journal_begin_r(struct reiserfs_transaction_handle *th,
Jeff Mahoneya9dd3642009-03-30 14:02:45 -0400117 struct super_block *sb,
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700118 unsigned long nblocks, int join);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700119
Jeff Mahoneya9dd3642009-03-30 14:02:45 -0400120static void init_journal_hash(struct super_block *sb)
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700121{
Jeff Mahoneya9dd3642009-03-30 14:02:45 -0400122 struct reiserfs_journal *journal = SB_JOURNAL(sb);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700123 memset(journal->j_hash_table, 0,
124 JOURNAL_HASH_SIZE * sizeof(struct reiserfs_journal_cnode *));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700125}
126
127/*
128** clears BH_Dirty and sticks the buffer on the clean list. Called because I can't allow refile_buffer to
129** make schedule happen after I've freed a block. Look at remove_from_transaction and journal_mark_freed for
130** more details.
131*/
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700132static int reiserfs_clean_and_file_buffer(struct buffer_head *bh)
133{
134 if (bh) {
135 clear_buffer_dirty(bh);
136 clear_buffer_journal_test(bh);
137 }
138 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700139}
140
141static void disable_barrier(struct super_block *s)
142{
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700143 REISERFS_SB(s)->s_mount_opt &= ~(1 << REISERFS_BARRIER_FLUSH);
144 printk("reiserfs: disabling flush barriers on %s\n",
145 reiserfs_bdevname(s));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700146}
147
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700148static struct reiserfs_bitmap_node *allocate_bitmap_node(struct super_block
Jeff Mahoneya9dd3642009-03-30 14:02:45 -0400149 *sb)
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700150{
151 struct reiserfs_bitmap_node *bn;
152 static int id;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700153
Pekka Enbergd739b422006-02-01 03:06:43 -0800154 bn = kmalloc(sizeof(struct reiserfs_bitmap_node), GFP_NOFS);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700155 if (!bn) {
156 return NULL;
157 }
Jeff Mahoneya9dd3642009-03-30 14:02:45 -0400158 bn->data = kzalloc(sb->s_blocksize, GFP_NOFS);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700159 if (!bn->data) {
Pekka Enbergd739b422006-02-01 03:06:43 -0800160 kfree(bn);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700161 return NULL;
162 }
163 bn->id = id++;
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700164 INIT_LIST_HEAD(&bn->list);
165 return bn;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700166}
167
Jeff Mahoneya9dd3642009-03-30 14:02:45 -0400168static struct reiserfs_bitmap_node *get_bitmap_node(struct super_block *sb)
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700169{
Jeff Mahoneya9dd3642009-03-30 14:02:45 -0400170 struct reiserfs_journal *journal = SB_JOURNAL(sb);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700171 struct reiserfs_bitmap_node *bn = NULL;
172 struct list_head *entry = journal->j_bitmap_nodes.next;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700173
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700174 journal->j_used_bitmap_nodes++;
175 repeat:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700176
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700177 if (entry != &journal->j_bitmap_nodes) {
178 bn = list_entry(entry, struct reiserfs_bitmap_node, list);
179 list_del(entry);
Jeff Mahoneya9dd3642009-03-30 14:02:45 -0400180 memset(bn->data, 0, sb->s_blocksize);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700181 journal->j_free_bitmap_nodes--;
182 return bn;
183 }
Jeff Mahoneya9dd3642009-03-30 14:02:45 -0400184 bn = allocate_bitmap_node(sb);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700185 if (!bn) {
186 yield();
187 goto repeat;
188 }
189 return bn;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700190}
Jeff Mahoneya9dd3642009-03-30 14:02:45 -0400191static inline void free_bitmap_node(struct super_block *sb,
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700192 struct reiserfs_bitmap_node *bn)
193{
Jeff Mahoneya9dd3642009-03-30 14:02:45 -0400194 struct reiserfs_journal *journal = SB_JOURNAL(sb);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700195 journal->j_used_bitmap_nodes--;
196 if (journal->j_free_bitmap_nodes > REISERFS_MAX_BITMAP_NODES) {
Pekka Enbergd739b422006-02-01 03:06:43 -0800197 kfree(bn->data);
198 kfree(bn);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700199 } else {
200 list_add(&bn->list, &journal->j_bitmap_nodes);
201 journal->j_free_bitmap_nodes++;
202 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700203}
204
Jeff Mahoneya9dd3642009-03-30 14:02:45 -0400205static void allocate_bitmap_nodes(struct super_block *sb)
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700206{
207 int i;
Jeff Mahoneya9dd3642009-03-30 14:02:45 -0400208 struct reiserfs_journal *journal = SB_JOURNAL(sb);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700209 struct reiserfs_bitmap_node *bn = NULL;
210 for (i = 0; i < REISERFS_MIN_BITMAP_NODES; i++) {
Jeff Mahoneya9dd3642009-03-30 14:02:45 -0400211 bn = allocate_bitmap_node(sb);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700212 if (bn) {
213 list_add(&bn->list, &journal->j_bitmap_nodes);
214 journal->j_free_bitmap_nodes++;
215 } else {
Jeff Mahoney0222e652009-03-30 14:02:44 -0400216 break; /* this is ok, we'll try again when more are needed */
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700217 }
218 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700219}
220
Jeff Mahoneya9dd3642009-03-30 14:02:45 -0400221static int set_bit_in_list_bitmap(struct super_block *sb,
Jeff Mahoney3ee16672007-10-18 23:39:25 -0700222 b_blocknr_t block,
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700223 struct reiserfs_list_bitmap *jb)
224{
Jeff Mahoneya9dd3642009-03-30 14:02:45 -0400225 unsigned int bmap_nr = block / (sb->s_blocksize << 3);
226 unsigned int bit_nr = block % (sb->s_blocksize << 3);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700227
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700228 if (!jb->bitmaps[bmap_nr]) {
Jeff Mahoneya9dd3642009-03-30 14:02:45 -0400229 jb->bitmaps[bmap_nr] = get_bitmap_node(sb);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700230 }
231 set_bit(bit_nr, (unsigned long *)jb->bitmaps[bmap_nr]->data);
232 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700233}
234
Jeff Mahoneya9dd3642009-03-30 14:02:45 -0400235static void cleanup_bitmap_list(struct super_block *sb,
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700236 struct reiserfs_list_bitmap *jb)
237{
238 int i;
239 if (jb->bitmaps == NULL)
240 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700241
Jeff Mahoneya9dd3642009-03-30 14:02:45 -0400242 for (i = 0; i < reiserfs_bmap_count(sb); i++) {
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700243 if (jb->bitmaps[i]) {
Jeff Mahoneya9dd3642009-03-30 14:02:45 -0400244 free_bitmap_node(sb, jb->bitmaps[i]);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700245 jb->bitmaps[i] = NULL;
246 }
247 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700248}
249
250/*
251** only call this on FS unmount.
252*/
Jeff Mahoneya9dd3642009-03-30 14:02:45 -0400253static int free_list_bitmaps(struct super_block *sb,
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700254 struct reiserfs_list_bitmap *jb_array)
255{
256 int i;
257 struct reiserfs_list_bitmap *jb;
258 for (i = 0; i < JOURNAL_NUM_BITMAPS; i++) {
259 jb = jb_array + i;
260 jb->journal_list = NULL;
Jeff Mahoneya9dd3642009-03-30 14:02:45 -0400261 cleanup_bitmap_list(sb, jb);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700262 vfree(jb->bitmaps);
263 jb->bitmaps = NULL;
264 }
265 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700266}
267
Jeff Mahoneya9dd3642009-03-30 14:02:45 -0400268static int free_bitmap_nodes(struct super_block *sb)
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700269{
Jeff Mahoneya9dd3642009-03-30 14:02:45 -0400270 struct reiserfs_journal *journal = SB_JOURNAL(sb);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700271 struct list_head *next = journal->j_bitmap_nodes.next;
272 struct reiserfs_bitmap_node *bn;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700273
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700274 while (next != &journal->j_bitmap_nodes) {
275 bn = list_entry(next, struct reiserfs_bitmap_node, list);
276 list_del(next);
Pekka Enbergd739b422006-02-01 03:06:43 -0800277 kfree(bn->data);
278 kfree(bn);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700279 next = journal->j_bitmap_nodes.next;
280 journal->j_free_bitmap_nodes--;
281 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700282
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700283 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700284}
285
286/*
Jeff Mahoney0222e652009-03-30 14:02:44 -0400287** get memory for JOURNAL_NUM_BITMAPS worth of bitmaps.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700288** jb_array is the array to be filled in.
289*/
Jeff Mahoneya9dd3642009-03-30 14:02:45 -0400290int reiserfs_allocate_list_bitmaps(struct super_block *sb,
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700291 struct reiserfs_list_bitmap *jb_array,
Jeff Mahoney3ee16672007-10-18 23:39:25 -0700292 unsigned int bmap_nr)
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700293{
294 int i;
295 int failed = 0;
296 struct reiserfs_list_bitmap *jb;
297 int mem = bmap_nr * sizeof(struct reiserfs_bitmap_node *);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700298
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700299 for (i = 0; i < JOURNAL_NUM_BITMAPS; i++) {
300 jb = jb_array + i;
301 jb->journal_list = NULL;
302 jb->bitmaps = vmalloc(mem);
303 if (!jb->bitmaps) {
Jeff Mahoneya9dd3642009-03-30 14:02:45 -0400304 reiserfs_warning(sb, "clm-2000", "unable to "
Jeff Mahoney45b03d52009-03-30 14:02:21 -0400305 "allocate bitmaps for journal lists");
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700306 failed = 1;
307 break;
308 }
309 memset(jb->bitmaps, 0, mem);
310 }
311 if (failed) {
Jeff Mahoneya9dd3642009-03-30 14:02:45 -0400312 free_list_bitmaps(sb, jb_array);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700313 return -1;
314 }
315 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700316}
317
318/*
Jeff Mahoney0222e652009-03-30 14:02:44 -0400319** find an available list bitmap. If you can't find one, flush a commit list
Linus Torvalds1da177e2005-04-16 15:20:36 -0700320** and try again
321*/
Jeff Mahoneya9dd3642009-03-30 14:02:45 -0400322static struct reiserfs_list_bitmap *get_list_bitmap(struct super_block *sb,
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700323 struct reiserfs_journal_list
324 *jl)
325{
326 int i, j;
Jeff Mahoneya9dd3642009-03-30 14:02:45 -0400327 struct reiserfs_journal *journal = SB_JOURNAL(sb);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700328 struct reiserfs_list_bitmap *jb = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700329
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700330 for (j = 0; j < (JOURNAL_NUM_BITMAPS * 3); j++) {
331 i = journal->j_list_bitmap_index;
332 journal->j_list_bitmap_index = (i + 1) % JOURNAL_NUM_BITMAPS;
333 jb = journal->j_list_bitmap + i;
334 if (journal->j_list_bitmap[i].journal_list) {
Jeff Mahoneya9dd3642009-03-30 14:02:45 -0400335 flush_commit_list(sb,
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700336 journal->j_list_bitmap[i].
337 journal_list, 1);
338 if (!journal->j_list_bitmap[i].journal_list) {
339 break;
340 }
341 } else {
342 break;
343 }
344 }
345 if (jb->journal_list) { /* double check to make sure if flushed correctly */
346 return NULL;
347 }
348 jb->journal_list = jl;
349 return jb;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700350}
351
Jeff Mahoney0222e652009-03-30 14:02:44 -0400352/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700353** allocates a new chunk of X nodes, and links them all together as a list.
354** Uses the cnode->next and cnode->prev pointers
355** returns NULL on failure
356*/
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700357static struct reiserfs_journal_cnode *allocate_cnodes(int num_cnodes)
358{
359 struct reiserfs_journal_cnode *head;
360 int i;
361 if (num_cnodes <= 0) {
362 return NULL;
363 }
364 head = vmalloc(num_cnodes * sizeof(struct reiserfs_journal_cnode));
365 if (!head) {
366 return NULL;
367 }
368 memset(head, 0, num_cnodes * sizeof(struct reiserfs_journal_cnode));
369 head[0].prev = NULL;
370 head[0].next = head + 1;
371 for (i = 1; i < num_cnodes; i++) {
372 head[i].prev = head + (i - 1);
373 head[i].next = head + (i + 1); /* if last one, overwrite it after the if */
374 }
375 head[num_cnodes - 1].next = NULL;
376 return head;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700377}
378
379/*
Jeff Mahoney0222e652009-03-30 14:02:44 -0400380** pulls a cnode off the free list, or returns NULL on failure
Linus Torvalds1da177e2005-04-16 15:20:36 -0700381*/
Jeff Mahoneya9dd3642009-03-30 14:02:45 -0400382static struct reiserfs_journal_cnode *get_cnode(struct super_block *sb)
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700383{
384 struct reiserfs_journal_cnode *cn;
Jeff Mahoneya9dd3642009-03-30 14:02:45 -0400385 struct reiserfs_journal *journal = SB_JOURNAL(sb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700386
Jeff Mahoneya9dd3642009-03-30 14:02:45 -0400387 reiserfs_check_lock_depth(sb, "get_cnode");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700388
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700389 if (journal->j_cnode_free <= 0) {
390 return NULL;
391 }
392 journal->j_cnode_used++;
393 journal->j_cnode_free--;
394 cn = journal->j_cnode_free_list;
395 if (!cn) {
396 return cn;
397 }
398 if (cn->next) {
399 cn->next->prev = NULL;
400 }
401 journal->j_cnode_free_list = cn->next;
402 memset(cn, 0, sizeof(struct reiserfs_journal_cnode));
403 return cn;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700404}
405
406/*
Jeff Mahoney0222e652009-03-30 14:02:44 -0400407** returns a cnode to the free list
Linus Torvalds1da177e2005-04-16 15:20:36 -0700408*/
Jeff Mahoneya9dd3642009-03-30 14:02:45 -0400409static void free_cnode(struct super_block *sb,
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700410 struct reiserfs_journal_cnode *cn)
411{
Jeff Mahoneya9dd3642009-03-30 14:02:45 -0400412 struct reiserfs_journal *journal = SB_JOURNAL(sb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700413
Jeff Mahoneya9dd3642009-03-30 14:02:45 -0400414 reiserfs_check_lock_depth(sb, "free_cnode");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700415
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700416 journal->j_cnode_used--;
417 journal->j_cnode_free++;
418 /* memset(cn, 0, sizeof(struct reiserfs_journal_cnode)) ; */
419 cn->next = journal->j_cnode_free_list;
420 if (journal->j_cnode_free_list) {
421 journal->j_cnode_free_list->prev = cn;
422 }
423 cn->prev = NULL; /* not needed with the memset, but I might kill the memset, and forget to do this */
424 journal->j_cnode_free_list = cn;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700425}
426
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700427static void clear_prepared_bits(struct buffer_head *bh)
428{
429 clear_buffer_journal_prepared(bh);
430 clear_buffer_journal_restore_dirty(bh);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700431}
432
Linus Torvalds1da177e2005-04-16 15:20:36 -0700433/* return a cnode with same dev, block number and size in table, or null if not found */
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700434static inline struct reiserfs_journal_cnode *get_journal_hash_dev(struct
435 super_block
436 *sb,
437 struct
438 reiserfs_journal_cnode
439 **table,
440 long bl)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700441{
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700442 struct reiserfs_journal_cnode *cn;
443 cn = journal_hash(table, sb, bl);
444 while (cn) {
445 if (cn->blocknr == bl && cn->sb == sb)
446 return cn;
447 cn = cn->hnext;
448 }
449 return (struct reiserfs_journal_cnode *)0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700450}
451
452/*
453** this actually means 'can this block be reallocated yet?'. If you set search_all, a block can only be allocated
454** if it is not in the current transaction, was not freed by the current transaction, and has no chance of ever
455** being overwritten by a replay after crashing.
456**
457** If you don't set search_all, a block can only be allocated if it is not in the current transaction. Since deleting
458** a block removes it from the current transaction, this case should never happen. If you don't set search_all, make
459** sure you never write the block without logging it.
460**
461** next_zero_bit is a suggestion about the next block to try for find_forward.
462** when bl is rejected because it is set in a journal list bitmap, we search
463** for the next zero bit in the bitmap that rejected bl. Then, we return that
464** through next_zero_bit for find_forward to try.
465**
466** Just because we return something in next_zero_bit does not mean we won't
467** reject it on the next call to reiserfs_in_journal
468**
469*/
Jeff Mahoneya9dd3642009-03-30 14:02:45 -0400470int reiserfs_in_journal(struct super_block *sb,
Jeff Mahoney3ee16672007-10-18 23:39:25 -0700471 unsigned int bmap_nr, int bit_nr, int search_all,
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700472 b_blocknr_t * next_zero_bit)
473{
Jeff Mahoneya9dd3642009-03-30 14:02:45 -0400474 struct reiserfs_journal *journal = SB_JOURNAL(sb);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700475 struct reiserfs_journal_cnode *cn;
476 struct reiserfs_list_bitmap *jb;
477 int i;
478 unsigned long bl;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700479
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700480 *next_zero_bit = 0; /* always start this at zero. */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700481
Jeff Mahoneya9dd3642009-03-30 14:02:45 -0400482 PROC_INFO_INC(sb, journal.in_journal);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700483 /* If we aren't doing a search_all, this is a metablock, and it will be logged before use.
484 ** if we crash before the transaction that freed it commits, this transaction won't
485 ** have committed either, and the block will never be written
486 */
487 if (search_all) {
488 for (i = 0; i < JOURNAL_NUM_BITMAPS; i++) {
Jeff Mahoneya9dd3642009-03-30 14:02:45 -0400489 PROC_INFO_INC(sb, journal.in_journal_bitmap);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700490 jb = journal->j_list_bitmap + i;
491 if (jb->journal_list && jb->bitmaps[bmap_nr] &&
492 test_bit(bit_nr,
493 (unsigned long *)jb->bitmaps[bmap_nr]->
494 data)) {
495 *next_zero_bit =
496 find_next_zero_bit((unsigned long *)
497 (jb->bitmaps[bmap_nr]->
498 data),
Jeff Mahoneya9dd3642009-03-30 14:02:45 -0400499 sb->s_blocksize << 3,
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700500 bit_nr + 1);
501 return 1;
502 }
503 }
504 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700505
Jeff Mahoneya9dd3642009-03-30 14:02:45 -0400506 bl = bmap_nr * (sb->s_blocksize << 3) + bit_nr;
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700507 /* is it in any old transactions? */
508 if (search_all
509 && (cn =
Jeff Mahoneya9dd3642009-03-30 14:02:45 -0400510 get_journal_hash_dev(sb, journal->j_list_hash_table, bl))) {
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700511 return 1;
512 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700513
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700514 /* is it in the current transaction. This should never happen */
Jeff Mahoneya9dd3642009-03-30 14:02:45 -0400515 if ((cn = get_journal_hash_dev(sb, journal->j_hash_table, bl))) {
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700516 BUG();
517 return 1;
518 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700519
Jeff Mahoneya9dd3642009-03-30 14:02:45 -0400520 PROC_INFO_INC(sb, journal.in_journal_reusable);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700521 /* safe for reuse */
522 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700523}
524
525/* insert cn into table
526*/
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700527static inline void insert_journal_hash(struct reiserfs_journal_cnode **table,
528 struct reiserfs_journal_cnode *cn)
529{
530 struct reiserfs_journal_cnode *cn_orig;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700531
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700532 cn_orig = journal_hash(table, cn->sb, cn->blocknr);
533 cn->hnext = cn_orig;
534 cn->hprev = NULL;
535 if (cn_orig) {
536 cn_orig->hprev = cn;
537 }
538 journal_hash(table, cn->sb, cn->blocknr) = cn;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700539}
540
541/* lock the current transaction */
Jeff Mahoneya9dd3642009-03-30 14:02:45 -0400542static inline void lock_journal(struct super_block *sb)
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700543{
Jeff Mahoneya9dd3642009-03-30 14:02:45 -0400544 PROC_INFO_INC(sb, journal.lock_journal);
Frederic Weisbecker8ebc4232009-04-07 04:19:49 +0200545
546 reiserfs_mutex_lock_safe(&SB_JOURNAL(sb)->j_mutex, sb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700547}
548
549/* unlock the current transaction */
Jeff Mahoneya9dd3642009-03-30 14:02:45 -0400550static inline void unlock_journal(struct super_block *sb)
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700551{
Jeff Mahoneya9dd3642009-03-30 14:02:45 -0400552 mutex_unlock(&SB_JOURNAL(sb)->j_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700553}
554
555static inline void get_journal_list(struct reiserfs_journal_list *jl)
556{
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700557 jl->j_refcount++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700558}
559
560static inline void put_journal_list(struct super_block *s,
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700561 struct reiserfs_journal_list *jl)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700562{
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700563 if (jl->j_refcount < 1) {
Jeff Mahoneyc3a9c212009-03-30 14:02:25 -0400564 reiserfs_panic(s, "journal-2", "trans id %u, refcount at %d",
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700565 jl->j_trans_id, jl->j_refcount);
566 }
567 if (--jl->j_refcount == 0)
Pekka Enbergd739b422006-02-01 03:06:43 -0800568 kfree(jl);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700569}
570
571/*
572** this used to be much more involved, and I'm keeping it just in case things get ugly again.
573** it gets called by flush_commit_list, and cleans up any data stored about blocks freed during a
574** transaction.
575*/
Jeff Mahoneya9dd3642009-03-30 14:02:45 -0400576static void cleanup_freed_for_journal_list(struct super_block *sb,
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700577 struct reiserfs_journal_list *jl)
578{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700579
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700580 struct reiserfs_list_bitmap *jb = jl->j_list_bitmap;
581 if (jb) {
Jeff Mahoneya9dd3642009-03-30 14:02:45 -0400582 cleanup_bitmap_list(sb, jb);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700583 }
584 jl->j_list_bitmap->journal_list = NULL;
585 jl->j_list_bitmap = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700586}
587
588static int journal_list_still_alive(struct super_block *s,
Jeff Mahoney600ed412009-03-30 14:02:17 -0400589 unsigned int trans_id)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700590{
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700591 struct reiserfs_journal *journal = SB_JOURNAL(s);
592 struct list_head *entry = &journal->j_journal_list;
593 struct reiserfs_journal_list *jl;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700594
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700595 if (!list_empty(entry)) {
596 jl = JOURNAL_LIST_ENTRY(entry->next);
597 if (jl->j_trans_id <= trans_id) {
598 return 1;
599 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700600 }
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700601 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700602}
603
Chris Mason398c95b2007-10-16 23:29:44 -0700604/*
605 * If page->mapping was null, we failed to truncate this page for
606 * some reason. Most likely because it was truncated after being
607 * logged via data=journal.
608 *
609 * This does a check to see if the buffer belongs to one of these
610 * lost pages before doing the final put_bh. If page->mapping was
611 * null, it tries to free buffers on the page, which should make the
612 * final page_cache_release drop the page from the lru.
613 */
614static void release_buffer_page(struct buffer_head *bh)
615{
616 struct page *page = bh->b_page;
Nick Piggin529ae9a2008-08-02 12:01:03 +0200617 if (!page->mapping && trylock_page(page)) {
Chris Mason398c95b2007-10-16 23:29:44 -0700618 page_cache_get(page);
619 put_bh(bh);
620 if (!page->mapping)
621 try_to_free_buffers(page);
622 unlock_page(page);
623 page_cache_release(page);
624 } else {
625 put_bh(bh);
626 }
627}
628
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700629static void reiserfs_end_buffer_io_sync(struct buffer_head *bh, int uptodate)
630{
631 char b[BDEVNAME_SIZE];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700632
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700633 if (buffer_journaled(bh)) {
Jeff Mahoney45b03d52009-03-30 14:02:21 -0400634 reiserfs_warning(NULL, "clm-2084",
635 "pinned buffer %lu:%s sent to disk",
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700636 bh->b_blocknr, bdevname(bh->b_bdev, b));
637 }
638 if (uptodate)
639 set_buffer_uptodate(bh);
640 else
641 clear_buffer_uptodate(bh);
Chris Mason398c95b2007-10-16 23:29:44 -0700642
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700643 unlock_buffer(bh);
Chris Mason398c95b2007-10-16 23:29:44 -0700644 release_buffer_page(bh);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700645}
646
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700647static void reiserfs_end_ordered_io(struct buffer_head *bh, int uptodate)
648{
649 if (uptodate)
650 set_buffer_uptodate(bh);
651 else
652 clear_buffer_uptodate(bh);
653 unlock_buffer(bh);
654 put_bh(bh);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700655}
656
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700657static void submit_logged_buffer(struct buffer_head *bh)
658{
659 get_bh(bh);
660 bh->b_end_io = reiserfs_end_buffer_io_sync;
661 clear_buffer_journal_new(bh);
662 clear_buffer_dirty(bh);
663 if (!test_clear_buffer_journal_test(bh))
664 BUG();
665 if (!buffer_uptodate(bh))
666 BUG();
667 submit_bh(WRITE, bh);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700668}
669
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700670static void submit_ordered_buffer(struct buffer_head *bh)
671{
672 get_bh(bh);
673 bh->b_end_io = reiserfs_end_ordered_io;
674 clear_buffer_dirty(bh);
675 if (!buffer_uptodate(bh))
676 BUG();
677 submit_bh(WRITE, bh);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700678}
679
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700680static int submit_barrier_buffer(struct buffer_head *bh)
681{
682 get_bh(bh);
683 bh->b_end_io = reiserfs_end_ordered_io;
684 clear_buffer_dirty(bh);
685 if (!buffer_uptodate(bh))
686 BUG();
687 return submit_bh(WRITE_BARRIER, bh);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700688}
689
690static void check_barrier_completion(struct super_block *s,
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700691 struct buffer_head *bh)
692{
693 if (buffer_eopnotsupp(bh)) {
694 clear_buffer_eopnotsupp(bh);
695 disable_barrier(s);
696 set_buffer_uptodate(bh);
697 set_buffer_dirty(bh);
Frederic Weisbecker8ebc4232009-04-07 04:19:49 +0200698 reiserfs_write_unlock(s);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700699 sync_dirty_buffer(bh);
Frederic Weisbecker8ebc4232009-04-07 04:19:49 +0200700 reiserfs_write_lock(s);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700701 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700702}
703
704#define CHUNK_SIZE 32
705struct buffer_chunk {
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700706 struct buffer_head *bh[CHUNK_SIZE];
707 int nr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700708};
709
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700710static void write_chunk(struct buffer_chunk *chunk)
711{
712 int i;
713 get_fs_excl();
714 for (i = 0; i < chunk->nr; i++) {
715 submit_logged_buffer(chunk->bh[i]);
716 }
717 chunk->nr = 0;
718 put_fs_excl();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700719}
720
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700721static void write_ordered_chunk(struct buffer_chunk *chunk)
722{
723 int i;
724 get_fs_excl();
725 for (i = 0; i < chunk->nr; i++) {
726 submit_ordered_buffer(chunk->bh[i]);
727 }
728 chunk->nr = 0;
729 put_fs_excl();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700730}
731
732static int add_to_chunk(struct buffer_chunk *chunk, struct buffer_head *bh,
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700733 spinlock_t * lock, void (fn) (struct buffer_chunk *))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700734{
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700735 int ret = 0;
Eric Sesterhenn14a61442006-10-03 23:36:38 +0200736 BUG_ON(chunk->nr >= CHUNK_SIZE);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700737 chunk->bh[chunk->nr++] = bh;
738 if (chunk->nr >= CHUNK_SIZE) {
739 ret = 1;
740 if (lock)
741 spin_unlock(lock);
742 fn(chunk);
743 if (lock)
744 spin_lock(lock);
745 }
746 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700747}
748
Linus Torvalds1da177e2005-04-16 15:20:36 -0700749static atomic_t nr_reiserfs_jh = ATOMIC_INIT(0);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700750static struct reiserfs_jh *alloc_jh(void)
751{
752 struct reiserfs_jh *jh;
753 while (1) {
754 jh = kmalloc(sizeof(*jh), GFP_NOFS);
755 if (jh) {
756 atomic_inc(&nr_reiserfs_jh);
757 return jh;
758 }
759 yield();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700760 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700761}
762
763/*
764 * we want to free the jh when the buffer has been written
765 * and waited on
766 */
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700767void reiserfs_free_jh(struct buffer_head *bh)
768{
769 struct reiserfs_jh *jh;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700770
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700771 jh = bh->b_private;
772 if (jh) {
773 bh->b_private = NULL;
774 jh->bh = NULL;
775 list_del_init(&jh->list);
776 kfree(jh);
777 if (atomic_read(&nr_reiserfs_jh) <= 0)
778 BUG();
779 atomic_dec(&nr_reiserfs_jh);
780 put_bh(bh);
781 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700782}
783
784static inline int __add_jh(struct reiserfs_journal *j, struct buffer_head *bh,
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700785 int tail)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700786{
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700787 struct reiserfs_jh *jh;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700788
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700789 if (bh->b_private) {
790 spin_lock(&j->j_dirty_buffers_lock);
791 if (!bh->b_private) {
792 spin_unlock(&j->j_dirty_buffers_lock);
793 goto no_jh;
794 }
795 jh = bh->b_private;
796 list_del_init(&jh->list);
797 } else {
798 no_jh:
799 get_bh(bh);
800 jh = alloc_jh();
801 spin_lock(&j->j_dirty_buffers_lock);
802 /* buffer must be locked for __add_jh, should be able to have
803 * two adds at the same time
804 */
Eric Sesterhenn14a61442006-10-03 23:36:38 +0200805 BUG_ON(bh->b_private);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700806 jh->bh = bh;
807 bh->b_private = jh;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700808 }
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700809 jh->jl = j->j_current_jl;
810 if (tail)
811 list_add_tail(&jh->list, &jh->jl->j_tail_bh_list);
812 else {
813 list_add_tail(&jh->list, &jh->jl->j_bh_list);
814 }
815 spin_unlock(&j->j_dirty_buffers_lock);
816 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700817}
818
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700819int reiserfs_add_tail_list(struct inode *inode, struct buffer_head *bh)
820{
821 return __add_jh(SB_JOURNAL(inode->i_sb), bh, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700822}
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700823int reiserfs_add_ordered_list(struct inode *inode, struct buffer_head *bh)
824{
825 return __add_jh(SB_JOURNAL(inode->i_sb), bh, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700826}
827
828#define JH_ENTRY(l) list_entry((l), struct reiserfs_jh, list)
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700829static int write_ordered_buffers(spinlock_t * lock,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700830 struct reiserfs_journal *j,
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700831 struct reiserfs_journal_list *jl,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700832 struct list_head *list)
833{
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700834 struct buffer_head *bh;
835 struct reiserfs_jh *jh;
836 int ret = j->j_errno;
837 struct buffer_chunk chunk;
838 struct list_head tmp;
839 INIT_LIST_HEAD(&tmp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700840
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700841 chunk.nr = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700842 spin_lock(lock);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700843 while (!list_empty(list)) {
844 jh = JH_ENTRY(list->next);
845 bh = jh->bh;
846 get_bh(bh);
Nick Pigginca5de402008-08-02 12:02:13 +0200847 if (!trylock_buffer(bh)) {
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700848 if (!buffer_dirty(bh)) {
Akinobu Mitaf1166292006-06-26 00:24:46 -0700849 list_move(&jh->list, &tmp);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700850 goto loop_next;
851 }
852 spin_unlock(lock);
853 if (chunk.nr)
854 write_ordered_chunk(&chunk);
855 wait_on_buffer(bh);
856 cond_resched();
857 spin_lock(lock);
858 goto loop_next;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700859 }
Chris Mason3d4492f2006-02-01 03:06:49 -0800860 /* in theory, dirty non-uptodate buffers should never get here,
861 * but the upper layer io error paths still have a few quirks.
862 * Handle them here as gracefully as we can
863 */
864 if (!buffer_uptodate(bh) && buffer_dirty(bh)) {
865 clear_buffer_dirty(bh);
866 ret = -EIO;
867 }
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700868 if (buffer_dirty(bh)) {
Akinobu Mitaf1166292006-06-26 00:24:46 -0700869 list_move(&jh->list, &tmp);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700870 add_to_chunk(&chunk, bh, lock, write_ordered_chunk);
871 } else {
872 reiserfs_free_jh(bh);
873 unlock_buffer(bh);
874 }
875 loop_next:
876 put_bh(bh);
877 cond_resched_lock(lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700878 }
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700879 if (chunk.nr) {
880 spin_unlock(lock);
881 write_ordered_chunk(&chunk);
882 spin_lock(lock);
883 }
884 while (!list_empty(&tmp)) {
885 jh = JH_ENTRY(tmp.prev);
886 bh = jh->bh;
887 get_bh(bh);
888 reiserfs_free_jh(bh);
889
890 if (buffer_locked(bh)) {
891 spin_unlock(lock);
892 wait_on_buffer(bh);
893 spin_lock(lock);
894 }
895 if (!buffer_uptodate(bh)) {
896 ret = -EIO;
897 }
Chris Masond62b1b82006-02-01 03:06:47 -0800898 /* ugly interaction with invalidatepage here.
899 * reiserfs_invalidate_page will pin any buffer that has a valid
900 * journal head from an older transaction. If someone else sets
901 * our buffer dirty after we write it in the first loop, and
902 * then someone truncates the page away, nobody will ever write
903 * the buffer. We're safe if we write the page one last time
904 * after freeing the journal header.
905 */
906 if (buffer_dirty(bh) && unlikely(bh->b_page->mapping == NULL)) {
907 spin_unlock(lock);
908 ll_rw_block(WRITE, 1, &bh);
909 spin_lock(lock);
910 }
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700911 put_bh(bh);
912 cond_resched_lock(lock);
913 }
914 spin_unlock(lock);
915 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700916}
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700917
918static int flush_older_commits(struct super_block *s,
919 struct reiserfs_journal_list *jl)
920{
921 struct reiserfs_journal *journal = SB_JOURNAL(s);
922 struct reiserfs_journal_list *other_jl;
923 struct reiserfs_journal_list *first_jl;
924 struct list_head *entry;
Jeff Mahoney600ed412009-03-30 14:02:17 -0400925 unsigned int trans_id = jl->j_trans_id;
926 unsigned int other_trans_id;
927 unsigned int first_trans_id;
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700928
929 find_first:
930 /*
931 * first we walk backwards to find the oldest uncommitted transation
932 */
933 first_jl = jl;
934 entry = jl->j_list.prev;
935 while (1) {
936 other_jl = JOURNAL_LIST_ENTRY(entry);
937 if (entry == &journal->j_journal_list ||
938 atomic_read(&other_jl->j_older_commits_done))
939 break;
940
941 first_jl = other_jl;
942 entry = other_jl->j_list.prev;
943 }
944
945 /* if we didn't find any older uncommitted transactions, return now */
946 if (first_jl == jl) {
947 return 0;
948 }
949
950 first_trans_id = first_jl->j_trans_id;
951
952 entry = &first_jl->j_list;
953 while (1) {
954 other_jl = JOURNAL_LIST_ENTRY(entry);
955 other_trans_id = other_jl->j_trans_id;
956
957 if (other_trans_id < trans_id) {
958 if (atomic_read(&other_jl->j_commit_left) != 0) {
959 flush_commit_list(s, other_jl, 0);
960
961 /* list we were called with is gone, return */
962 if (!journal_list_still_alive(s, trans_id))
963 return 1;
964
965 /* the one we just flushed is gone, this means all
966 * older lists are also gone, so first_jl is no longer
967 * valid either. Go back to the beginning.
968 */
969 if (!journal_list_still_alive
970 (s, other_trans_id)) {
971 goto find_first;
972 }
973 }
974 entry = entry->next;
975 if (entry == &journal->j_journal_list)
976 return 0;
977 } else {
978 return 0;
979 }
980 }
981 return 0;
982}
Adrian Bunkdeba0f42007-10-16 23:26:03 -0700983
984static int reiserfs_async_progress_wait(struct super_block *s)
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700985{
986 DEFINE_WAIT(wait);
987 struct reiserfs_journal *j = SB_JOURNAL(s);
Frederic Weisbecker8ebc4232009-04-07 04:19:49 +0200988
989 if (atomic_read(&j->j_async_throttle)) {
990 reiserfs_write_unlock(s);
Jens Axboe8aa7e842009-07-09 14:52:32 +0200991 congestion_wait(BLK_RW_ASYNC, HZ / 10);
Frederic Weisbecker8ebc4232009-04-07 04:19:49 +0200992 reiserfs_write_lock(s);
993 }
994
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700995 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700996}
997
998/*
999** if this journal list still has commit blocks unflushed, send them to disk.
1000**
1001** log areas must be flushed in order (transaction 2 can't commit before transaction 1)
1002** Before the commit block can by written, every other log block must be safely on disk
1003**
1004*/
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001005static int flush_commit_list(struct super_block *s,
1006 struct reiserfs_journal_list *jl, int flushall)
1007{
1008 int i;
Jeff Mahoney3ee16672007-10-18 23:39:25 -07001009 b_blocknr_t bn;
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001010 struct buffer_head *tbh = NULL;
Jeff Mahoney600ed412009-03-30 14:02:17 -04001011 unsigned int trans_id = jl->j_trans_id;
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001012 struct reiserfs_journal *journal = SB_JOURNAL(s);
1013 int barrier = 0;
1014 int retval = 0;
Chris Masone0e851c2006-02-01 03:06:49 -08001015 int write_len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001016
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001017 reiserfs_check_lock_depth(s, "flush_commit_list");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001018
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001019 if (atomic_read(&jl->j_older_commits_done)) {
1020 return 0;
1021 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001022
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001023 get_fs_excl();
Jens Axboe22e2c502005-06-27 10:55:12 +02001024
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001025 /* before we can put our commit blocks on disk, we have to make sure everyone older than
1026 ** us is on disk too
1027 */
1028 BUG_ON(jl->j_len <= 0);
1029 BUG_ON(trans_id == journal->j_trans_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001030
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001031 get_journal_list(jl);
1032 if (flushall) {
1033 if (flush_older_commits(s, jl) == 1) {
1034 /* list disappeared during flush_older_commits. return */
1035 goto put_jl;
1036 }
1037 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001038
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001039 /* make sure nobody is trying to flush this one at the same time */
Frederic Weisbecker8ebc4232009-04-07 04:19:49 +02001040 reiserfs_mutex_lock_safe(&jl->j_commit_mutex, s);
1041
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001042 if (!journal_list_still_alive(s, trans_id)) {
Jeff Mahoney90415de2008-07-25 01:46:40 -07001043 mutex_unlock(&jl->j_commit_mutex);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001044 goto put_jl;
1045 }
1046 BUG_ON(jl->j_trans_id == 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001047
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001048 /* this commit is done, exit */
1049 if (atomic_read(&(jl->j_commit_left)) <= 0) {
1050 if (flushall) {
1051 atomic_set(&(jl->j_older_commits_done), 1);
1052 }
Jeff Mahoney90415de2008-07-25 01:46:40 -07001053 mutex_unlock(&jl->j_commit_mutex);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001054 goto put_jl;
1055 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001056
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001057 if (!list_empty(&jl->j_bh_list)) {
Chris Mason3d4492f2006-02-01 03:06:49 -08001058 int ret;
Frederic Weisbecker8ebc4232009-04-07 04:19:49 +02001059
1060 /*
1061 * We might sleep in numerous places inside
1062 * write_ordered_buffers. Relax the write lock.
1063 */
1064 reiserfs_write_unlock(s);
Chris Mason3d4492f2006-02-01 03:06:49 -08001065 ret = write_ordered_buffers(&journal->j_dirty_buffers_lock,
1066 journal, jl, &jl->j_bh_list);
1067 if (ret < 0 && retval == 0)
1068 retval = ret;
Frederic Weisbecker8ebc4232009-04-07 04:19:49 +02001069 reiserfs_write_lock(s);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001070 }
1071 BUG_ON(!list_empty(&jl->j_bh_list));
1072 /*
1073 * for the description block and all the log blocks, submit any buffers
Chris Masone0e851c2006-02-01 03:06:49 -08001074 * that haven't already reached the disk. Try to write at least 256
1075 * log blocks. later on, we will only wait on blocks that correspond
1076 * to this transaction, but while we're unplugging we might as well
1077 * get a chunk of data on there.
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001078 */
1079 atomic_inc(&journal->j_async_throttle);
Chris Masone0e851c2006-02-01 03:06:49 -08001080 write_len = jl->j_len + 1;
1081 if (write_len < 256)
1082 write_len = 256;
1083 for (i = 0 ; i < write_len ; i++) {
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001084 bn = SB_ONDISK_JOURNAL_1st_BLOCK(s) + (jl->j_start + i) %
1085 SB_ONDISK_JOURNAL_SIZE(s);
1086 tbh = journal_find_get_block(s, bn);
Chris Masone0e851c2006-02-01 03:06:49 -08001087 if (tbh) {
Frederic Weisbecker6e3647a2009-05-01 02:27:39 +02001088 if (buffer_dirty(tbh)) {
1089 reiserfs_write_unlock(s);
1090 ll_rw_block(WRITE, 1, &tbh);
1091 reiserfs_write_lock(s);
1092 }
Chris Masone0e851c2006-02-01 03:06:49 -08001093 put_bh(tbh) ;
1094 }
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001095 }
1096 atomic_dec(&journal->j_async_throttle);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001097
Jeff Mahoney5d5e81562005-12-14 14:38:36 -05001098 /* We're skipping the commit if there's an error */
1099 if (retval || reiserfs_is_journal_aborted(journal))
1100 barrier = 0;
1101
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001102 /* wait on everything written so far before writing the commit
1103 * if we are in barrier mode, send the commit down now
1104 */
1105 barrier = reiserfs_barrier_flush(s);
1106 if (barrier) {
1107 int ret;
1108 lock_buffer(jl->j_commit_bh);
1109 ret = submit_barrier_buffer(jl->j_commit_bh);
1110 if (ret == -EOPNOTSUPP) {
1111 set_buffer_uptodate(jl->j_commit_bh);
1112 disable_barrier(s);
1113 barrier = 0;
1114 }
1115 }
1116 for (i = 0; i < (jl->j_len + 1); i++) {
1117 bn = SB_ONDISK_JOURNAL_1st_BLOCK(s) +
1118 (jl->j_start + i) % SB_ONDISK_JOURNAL_SIZE(s);
1119 tbh = journal_find_get_block(s, bn);
Frederic Weisbecker8ebc4232009-04-07 04:19:49 +02001120
1121 reiserfs_write_unlock(s);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001122 wait_on_buffer(tbh);
Frederic Weisbecker8ebc4232009-04-07 04:19:49 +02001123 reiserfs_write_lock(s);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001124 // since we're using ll_rw_blk above, it might have skipped over
1125 // a locked buffer. Double check here
1126 //
Frederic Weisbecker8ebc4232009-04-07 04:19:49 +02001127 /* redundant, sync_dirty_buffer() checks */
1128 if (buffer_dirty(tbh)) {
1129 reiserfs_write_unlock(s);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001130 sync_dirty_buffer(tbh);
Frederic Weisbecker8ebc4232009-04-07 04:19:49 +02001131 reiserfs_write_lock(s);
1132 }
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001133 if (unlikely(!buffer_uptodate(tbh))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001134#ifdef CONFIG_REISERFS_CHECK
Jeff Mahoney45b03d52009-03-30 14:02:21 -04001135 reiserfs_warning(s, "journal-601",
1136 "buffer write failed");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001137#endif
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001138 retval = -EIO;
1139 }
1140 put_bh(tbh); /* once for journal_find_get_block */
1141 put_bh(tbh); /* once due to original getblk in do_journal_end */
1142 atomic_dec(&(jl->j_commit_left));
1143 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001144
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001145 BUG_ON(atomic_read(&(jl->j_commit_left)) != 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001146
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001147 if (!barrier) {
Jeff Mahoney5d5e81562005-12-14 14:38:36 -05001148 /* If there was a write error in the journal - we can't commit
1149 * this transaction - it will be invalid and, if successful,
Robert P. J. Daybeb7dd82007-05-09 07:14:03 +02001150 * will just end up propagating the write error out to
Jeff Mahoney5d5e81562005-12-14 14:38:36 -05001151 * the file system. */
1152 if (likely(!retval && !reiserfs_is_journal_aborted (journal))) {
1153 if (buffer_dirty(jl->j_commit_bh))
1154 BUG();
1155 mark_buffer_dirty(jl->j_commit_bh) ;
Frederic Weisbecker8ebc4232009-04-07 04:19:49 +02001156 reiserfs_write_unlock(s);
Jeff Mahoney5d5e81562005-12-14 14:38:36 -05001157 sync_dirty_buffer(jl->j_commit_bh) ;
Frederic Weisbecker8ebc4232009-04-07 04:19:49 +02001158 reiserfs_write_lock(s);
Jeff Mahoney5d5e81562005-12-14 14:38:36 -05001159 }
Frederic Weisbecker8ebc4232009-04-07 04:19:49 +02001160 } else {
1161 reiserfs_write_unlock(s);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001162 wait_on_buffer(jl->j_commit_bh);
Frederic Weisbecker8ebc4232009-04-07 04:19:49 +02001163 reiserfs_write_lock(s);
1164 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001165
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001166 check_barrier_completion(s, jl->j_commit_bh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001167
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001168 /* If there was a write error in the journal - we can't commit this
1169 * transaction - it will be invalid and, if successful, will just end
Robert P. J. Daybeb7dd82007-05-09 07:14:03 +02001170 * up propagating the write error out to the filesystem. */
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001171 if (unlikely(!buffer_uptodate(jl->j_commit_bh))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001172#ifdef CONFIG_REISERFS_CHECK
Jeff Mahoney45b03d52009-03-30 14:02:21 -04001173 reiserfs_warning(s, "journal-615", "buffer write failed");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001174#endif
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001175 retval = -EIO;
1176 }
1177 bforget(jl->j_commit_bh);
1178 if (journal->j_last_commit_id != 0 &&
1179 (jl->j_trans_id - journal->j_last_commit_id) != 1) {
Jeff Mahoney45b03d52009-03-30 14:02:21 -04001180 reiserfs_warning(s, "clm-2200", "last commit %lu, current %lu",
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001181 journal->j_last_commit_id, jl->j_trans_id);
1182 }
1183 journal->j_last_commit_id = jl->j_trans_id;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001184
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001185 /* now, every commit block is on the disk. It is safe to allow blocks freed during this transaction to be reallocated */
1186 cleanup_freed_for_journal_list(s, jl);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001187
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001188 retval = retval ? retval : journal->j_errno;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001189
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001190 /* mark the metadata dirty */
1191 if (!retval)
1192 dirty_one_transaction(s, jl);
1193 atomic_dec(&(jl->j_commit_left));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001194
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001195 if (flushall) {
1196 atomic_set(&(jl->j_older_commits_done), 1);
1197 }
Jeff Mahoney90415de2008-07-25 01:46:40 -07001198 mutex_unlock(&jl->j_commit_mutex);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001199 put_jl:
1200 put_journal_list(s, jl);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001201
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001202 if (retval)
1203 reiserfs_abort(s, retval, "Journal write error in %s",
Harvey Harrisonfbe54982008-04-28 02:16:22 -07001204 __func__);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001205 put_fs_excl();
1206 return retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001207}
1208
1209/*
Jeff Mahoney0222e652009-03-30 14:02:44 -04001210** flush_journal_list frequently needs to find a newer transaction for a given block. This does that, or
1211** returns NULL if it can't find anything
Linus Torvalds1da177e2005-04-16 15:20:36 -07001212*/
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001213static struct reiserfs_journal_list *find_newer_jl_for_cn(struct
1214 reiserfs_journal_cnode
1215 *cn)
1216{
1217 struct super_block *sb = cn->sb;
1218 b_blocknr_t blocknr = cn->blocknr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001219
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001220 cn = cn->hprev;
1221 while (cn) {
1222 if (cn->sb == sb && cn->blocknr == blocknr && cn->jlist) {
1223 return cn->jlist;
1224 }
1225 cn = cn->hprev;
1226 }
1227 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001228}
1229
Chris Masona3172022006-09-29 01:59:56 -07001230static int newer_jl_done(struct reiserfs_journal_cnode *cn)
1231{
1232 struct super_block *sb = cn->sb;
1233 b_blocknr_t blocknr = cn->blocknr;
1234
1235 cn = cn->hprev;
1236 while (cn) {
1237 if (cn->sb == sb && cn->blocknr == blocknr && cn->jlist &&
1238 atomic_read(&cn->jlist->j_commit_left) != 0)
1239 return 0;
1240 cn = cn->hprev;
1241 }
1242 return 1;
1243}
1244
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001245static void remove_journal_hash(struct super_block *,
1246 struct reiserfs_journal_cnode **,
1247 struct reiserfs_journal_list *, unsigned long,
1248 int);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001249
1250/*
1251** once all the real blocks have been flushed, it is safe to remove them from the
1252** journal list for this transaction. Aside from freeing the cnode, this also allows the
1253** block to be reallocated for data blocks if it had been deleted.
1254*/
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04001255static void remove_all_from_journal_list(struct super_block *sb,
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001256 struct reiserfs_journal_list *jl,
1257 int debug)
1258{
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04001259 struct reiserfs_journal *journal = SB_JOURNAL(sb);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001260 struct reiserfs_journal_cnode *cn, *last;
1261 cn = jl->j_realblock;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001262
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001263 /* which is better, to lock once around the whole loop, or
1264 ** to lock for each call to remove_journal_hash?
1265 */
1266 while (cn) {
1267 if (cn->blocknr != 0) {
1268 if (debug) {
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04001269 reiserfs_warning(sb, "reiserfs-2201",
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001270 "block %u, bh is %d, state %ld",
1271 cn->blocknr, cn->bh ? 1 : 0,
1272 cn->state);
1273 }
1274 cn->state = 0;
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04001275 remove_journal_hash(sb, journal->j_list_hash_table,
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001276 jl, cn->blocknr, 1);
1277 }
1278 last = cn;
1279 cn = cn->next;
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04001280 free_cnode(sb, last);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001281 }
1282 jl->j_realblock = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001283}
1284
1285/*
1286** if this timestamp is greater than the timestamp we wrote last to the header block, write it to the header block.
1287** once this is done, I can safely say the log area for this transaction won't ever be replayed, and I can start
1288** releasing blocks in this transaction for reuse as data blocks.
1289** called by flush_journal_list, before it calls remove_all_from_journal_list
1290**
1291*/
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04001292static int _update_journal_header_block(struct super_block *sb,
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001293 unsigned long offset,
Jeff Mahoney600ed412009-03-30 14:02:17 -04001294 unsigned int trans_id)
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001295{
1296 struct reiserfs_journal_header *jh;
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04001297 struct reiserfs_journal *journal = SB_JOURNAL(sb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001298
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001299 if (reiserfs_is_journal_aborted(journal))
1300 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001301
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001302 if (trans_id >= journal->j_last_flush_trans_id) {
1303 if (buffer_locked((journal->j_header_bh))) {
Frederic Weisbecker8ebc4232009-04-07 04:19:49 +02001304 reiserfs_write_unlock(sb);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001305 wait_on_buffer((journal->j_header_bh));
Frederic Weisbecker8ebc4232009-04-07 04:19:49 +02001306 reiserfs_write_lock(sb);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001307 if (unlikely(!buffer_uptodate(journal->j_header_bh))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001308#ifdef CONFIG_REISERFS_CHECK
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04001309 reiserfs_warning(sb, "journal-699",
Jeff Mahoney45b03d52009-03-30 14:02:21 -04001310 "buffer write failed");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001311#endif
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001312 return -EIO;
1313 }
1314 }
1315 journal->j_last_flush_trans_id = trans_id;
1316 journal->j_first_unflushed_offset = offset;
1317 jh = (struct reiserfs_journal_header *)(journal->j_header_bh->
1318 b_data);
1319 jh->j_last_flush_trans_id = cpu_to_le32(trans_id);
1320 jh->j_first_unflushed_offset = cpu_to_le32(offset);
1321 jh->j_mount_id = cpu_to_le32(journal->j_mount_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001322
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04001323 if (reiserfs_barrier_flush(sb)) {
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001324 int ret;
1325 lock_buffer(journal->j_header_bh);
1326 ret = submit_barrier_buffer(journal->j_header_bh);
1327 if (ret == -EOPNOTSUPP) {
1328 set_buffer_uptodate(journal->j_header_bh);
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04001329 disable_barrier(sb);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001330 goto sync;
1331 }
Frederic Weisbecker8ebc4232009-04-07 04:19:49 +02001332 reiserfs_write_unlock(sb);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001333 wait_on_buffer(journal->j_header_bh);
Frederic Weisbecker8ebc4232009-04-07 04:19:49 +02001334 reiserfs_write_lock(sb);
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04001335 check_barrier_completion(sb, journal->j_header_bh);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001336 } else {
1337 sync:
1338 set_buffer_dirty(journal->j_header_bh);
Frederic Weisbecker8ebc4232009-04-07 04:19:49 +02001339 reiserfs_write_unlock(sb);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001340 sync_dirty_buffer(journal->j_header_bh);
Frederic Weisbecker8ebc4232009-04-07 04:19:49 +02001341 reiserfs_write_lock(sb);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001342 }
1343 if (!buffer_uptodate(journal->j_header_bh)) {
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04001344 reiserfs_warning(sb, "journal-837",
Jeff Mahoney45b03d52009-03-30 14:02:21 -04001345 "IO error during journal replay");
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001346 return -EIO;
1347 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001348 }
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001349 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001350}
1351
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04001352static int update_journal_header_block(struct super_block *sb,
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001353 unsigned long offset,
Jeff Mahoney600ed412009-03-30 14:02:17 -04001354 unsigned int trans_id)
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001355{
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04001356 return _update_journal_header_block(sb, offset, trans_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001357}
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001358
Jeff Mahoney0222e652009-03-30 14:02:44 -04001359/*
1360** flush any and all journal lists older than you are
Linus Torvalds1da177e2005-04-16 15:20:36 -07001361** can only be called from flush_journal_list
1362*/
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04001363static int flush_older_journal_lists(struct super_block *sb,
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001364 struct reiserfs_journal_list *jl)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001365{
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001366 struct list_head *entry;
1367 struct reiserfs_journal_list *other_jl;
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04001368 struct reiserfs_journal *journal = SB_JOURNAL(sb);
Jeff Mahoney600ed412009-03-30 14:02:17 -04001369 unsigned int trans_id = jl->j_trans_id;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001370
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001371 /* we know we are the only ones flushing things, no extra race
1372 * protection is required.
1373 */
1374 restart:
1375 entry = journal->j_journal_list.next;
1376 /* Did we wrap? */
1377 if (entry == &journal->j_journal_list)
1378 return 0;
1379 other_jl = JOURNAL_LIST_ENTRY(entry);
1380 if (other_jl->j_trans_id < trans_id) {
1381 BUG_ON(other_jl->j_refcount <= 0);
1382 /* do not flush all */
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04001383 flush_journal_list(sb, other_jl, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001384
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001385 /* other_jl is now deleted from the list */
1386 goto restart;
1387 }
1388 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001389}
1390
1391static void del_from_work_list(struct super_block *s,
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001392 struct reiserfs_journal_list *jl)
1393{
1394 struct reiserfs_journal *journal = SB_JOURNAL(s);
1395 if (!list_empty(&jl->j_working_list)) {
1396 list_del_init(&jl->j_working_list);
1397 journal->j_num_work_lists--;
1398 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001399}
1400
1401/* flush a journal list, both commit and real blocks
1402**
1403** always set flushall to 1, unless you are calling from inside
1404** flush_journal_list
1405**
Jeff Mahoney0222e652009-03-30 14:02:44 -04001406** IMPORTANT. This can only be called while there are no journal writers,
1407** and the journal is locked. That means it can only be called from
Linus Torvalds1da177e2005-04-16 15:20:36 -07001408** do_journal_end, or by journal_release
1409*/
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001410static int flush_journal_list(struct super_block *s,
1411 struct reiserfs_journal_list *jl, int flushall)
1412{
1413 struct reiserfs_journal_list *pjl;
1414 struct reiserfs_journal_cnode *cn, *last;
1415 int count;
1416 int was_jwait = 0;
1417 int was_dirty = 0;
1418 struct buffer_head *saved_bh;
1419 unsigned long j_len_saved = jl->j_len;
1420 struct reiserfs_journal *journal = SB_JOURNAL(s);
1421 int err = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001422
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001423 BUG_ON(j_len_saved <= 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001424
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001425 if (atomic_read(&journal->j_wcount) != 0) {
Jeff Mahoney45b03d52009-03-30 14:02:21 -04001426 reiserfs_warning(s, "clm-2048", "called with wcount %d",
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001427 atomic_read(&journal->j_wcount));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001428 }
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001429 BUG_ON(jl->j_trans_id == 0);
1430
1431 /* if flushall == 0, the lock is already held */
1432 if (flushall) {
Frederic Weisbecker8ebc4232009-04-07 04:19:49 +02001433 reiserfs_mutex_lock_safe(&journal->j_flush_mutex, s);
Jeff Mahoneyafe70252008-07-25 01:46:39 -07001434 } else if (mutex_trylock(&journal->j_flush_mutex)) {
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001435 BUG();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001436 }
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001437
1438 count = 0;
1439 if (j_len_saved > journal->j_trans_max) {
Jeff Mahoneyc3a9c212009-03-30 14:02:25 -04001440 reiserfs_panic(s, "journal-715", "length is %lu, trans id %lu",
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001441 j_len_saved, jl->j_trans_id);
1442 return 0;
1443 }
1444
1445 get_fs_excl();
1446
1447 /* if all the work is already done, get out of here */
1448 if (atomic_read(&(jl->j_nonzerolen)) <= 0 &&
1449 atomic_read(&(jl->j_commit_left)) <= 0) {
1450 goto flush_older_and_return;
1451 }
1452
Jeff Mahoney0222e652009-03-30 14:02:44 -04001453 /* start by putting the commit list on disk. This will also flush
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001454 ** the commit lists of any olders transactions
1455 */
1456 flush_commit_list(s, jl, 1);
1457
1458 if (!(jl->j_state & LIST_DIRTY)
1459 && !reiserfs_is_journal_aborted(journal))
1460 BUG();
1461
1462 /* are we done now? */
1463 if (atomic_read(&(jl->j_nonzerolen)) <= 0 &&
1464 atomic_read(&(jl->j_commit_left)) <= 0) {
1465 goto flush_older_and_return;
1466 }
1467
Jeff Mahoney0222e652009-03-30 14:02:44 -04001468 /* loop through each cnode, see if we need to write it,
1469 ** or wait on a more recent transaction, or just ignore it
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001470 */
1471 if (atomic_read(&(journal->j_wcount)) != 0) {
Jeff Mahoneyc3a9c212009-03-30 14:02:25 -04001472 reiserfs_panic(s, "journal-844", "journal list is flushing, "
1473 "wcount is not 0");
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001474 }
1475 cn = jl->j_realblock;
1476 while (cn) {
1477 was_jwait = 0;
1478 was_dirty = 0;
1479 saved_bh = NULL;
1480 /* blocknr of 0 is no longer in the hash, ignore it */
1481 if (cn->blocknr == 0) {
1482 goto free_cnode;
1483 }
1484
1485 /* This transaction failed commit. Don't write out to the disk */
1486 if (!(jl->j_state & LIST_DIRTY))
1487 goto free_cnode;
1488
1489 pjl = find_newer_jl_for_cn(cn);
1490 /* the order is important here. We check pjl to make sure we
1491 ** don't clear BH_JDirty_wait if we aren't the one writing this
1492 ** block to disk
1493 */
1494 if (!pjl && cn->bh) {
1495 saved_bh = cn->bh;
1496
Jeff Mahoney0222e652009-03-30 14:02:44 -04001497 /* we do this to make sure nobody releases the buffer while
1498 ** we are working with it
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001499 */
1500 get_bh(saved_bh);
1501
1502 if (buffer_journal_dirty(saved_bh)) {
1503 BUG_ON(!can_dirty(cn));
1504 was_jwait = 1;
1505 was_dirty = 1;
1506 } else if (can_dirty(cn)) {
1507 /* everything with !pjl && jwait should be writable */
1508 BUG();
1509 }
1510 }
1511
1512 /* if someone has this block in a newer transaction, just make
Matt LaPlante0779bf22006-11-30 05:24:39 +01001513 ** sure they are committed, and don't try writing it to disk
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001514 */
1515 if (pjl) {
1516 if (atomic_read(&pjl->j_commit_left))
1517 flush_commit_list(s, pjl, 1);
1518 goto free_cnode;
1519 }
1520
Jeff Mahoney0222e652009-03-30 14:02:44 -04001521 /* bh == NULL when the block got to disk on its own, OR,
1522 ** the block got freed in a future transaction
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001523 */
1524 if (saved_bh == NULL) {
1525 goto free_cnode;
1526 }
1527
1528 /* this should never happen. kupdate_one_transaction has this list
1529 ** locked while it works, so we should never see a buffer here that
1530 ** is not marked JDirty_wait
1531 */
1532 if ((!was_jwait) && !buffer_locked(saved_bh)) {
Jeff Mahoney45b03d52009-03-30 14:02:21 -04001533 reiserfs_warning(s, "journal-813",
1534 "BAD! buffer %llu %cdirty %cjwait, "
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001535 "not in a newer tranasction",
1536 (unsigned long long)saved_bh->
1537 b_blocknr, was_dirty ? ' ' : '!',
1538 was_jwait ? ' ' : '!');
1539 }
1540 if (was_dirty) {
1541 /* we inc again because saved_bh gets decremented at free_cnode */
1542 get_bh(saved_bh);
1543 set_bit(BLOCK_NEEDS_FLUSH, &cn->state);
1544 lock_buffer(saved_bh);
1545 BUG_ON(cn->blocknr != saved_bh->b_blocknr);
1546 if (buffer_dirty(saved_bh))
1547 submit_logged_buffer(saved_bh);
1548 else
1549 unlock_buffer(saved_bh);
1550 count++;
1551 } else {
Jeff Mahoney45b03d52009-03-30 14:02:21 -04001552 reiserfs_warning(s, "clm-2082",
1553 "Unable to flush buffer %llu in %s",
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001554 (unsigned long long)saved_bh->
Harvey Harrisonfbe54982008-04-28 02:16:22 -07001555 b_blocknr, __func__);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001556 }
1557 free_cnode:
1558 last = cn;
1559 cn = cn->next;
1560 if (saved_bh) {
1561 /* we incremented this to keep others from taking the buffer head away */
1562 put_bh(saved_bh);
1563 if (atomic_read(&(saved_bh->b_count)) < 0) {
Jeff Mahoney45b03d52009-03-30 14:02:21 -04001564 reiserfs_warning(s, "journal-945",
1565 "saved_bh->b_count < 0");
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001566 }
1567 }
1568 }
1569 if (count > 0) {
1570 cn = jl->j_realblock;
1571 while (cn) {
1572 if (test_bit(BLOCK_NEEDS_FLUSH, &cn->state)) {
1573 if (!cn->bh) {
Jeff Mahoneyc3a9c212009-03-30 14:02:25 -04001574 reiserfs_panic(s, "journal-1011",
1575 "cn->bh is NULL");
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001576 }
Frederic Weisbecker8ebc4232009-04-07 04:19:49 +02001577
1578 reiserfs_write_unlock(s);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001579 wait_on_buffer(cn->bh);
Frederic Weisbecker8ebc4232009-04-07 04:19:49 +02001580 reiserfs_write_lock(s);
1581
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001582 if (!cn->bh) {
Jeff Mahoneyc3a9c212009-03-30 14:02:25 -04001583 reiserfs_panic(s, "journal-1012",
1584 "cn->bh is NULL");
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001585 }
1586 if (unlikely(!buffer_uptodate(cn->bh))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001587#ifdef CONFIG_REISERFS_CHECK
Jeff Mahoney45b03d52009-03-30 14:02:21 -04001588 reiserfs_warning(s, "journal-949",
1589 "buffer write failed");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001590#endif
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001591 err = -EIO;
1592 }
1593 /* note, we must clear the JDirty_wait bit after the up to date
1594 ** check, otherwise we race against our flushpage routine
1595 */
1596 BUG_ON(!test_clear_buffer_journal_dirty
1597 (cn->bh));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001598
Chris Mason398c95b2007-10-16 23:29:44 -07001599 /* drop one ref for us */
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001600 put_bh(cn->bh);
Chris Mason398c95b2007-10-16 23:29:44 -07001601 /* drop one ref for journal_mark_dirty */
1602 release_buffer_page(cn->bh);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001603 }
1604 cn = cn->next;
1605 }
1606 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001607
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001608 if (err)
1609 reiserfs_abort(s, -EIO,
1610 "Write error while pushing transaction to disk in %s",
Harvey Harrisonfbe54982008-04-28 02:16:22 -07001611 __func__);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001612 flush_older_and_return:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001613
Jeff Mahoney0222e652009-03-30 14:02:44 -04001614 /* before we can update the journal header block, we _must_ flush all
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001615 ** real blocks from all older transactions to disk. This is because
1616 ** once the header block is updated, this transaction will not be
1617 ** replayed after a crash
1618 */
1619 if (flushall) {
1620 flush_older_journal_lists(s, jl);
1621 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001622
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001623 err = journal->j_errno;
Jeff Mahoney0222e652009-03-30 14:02:44 -04001624 /* before we can remove everything from the hash tables for this
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001625 ** transaction, we must make sure it can never be replayed
1626 **
1627 ** since we are only called from do_journal_end, we know for sure there
1628 ** are no allocations going on while we are flushing journal lists. So,
1629 ** we only need to update the journal header block for the last list
1630 ** being flushed
1631 */
1632 if (!err && flushall) {
1633 err =
1634 update_journal_header_block(s,
1635 (jl->j_start + jl->j_len +
1636 2) % SB_ONDISK_JOURNAL_SIZE(s),
1637 jl->j_trans_id);
1638 if (err)
1639 reiserfs_abort(s, -EIO,
1640 "Write error while updating journal header in %s",
Harvey Harrisonfbe54982008-04-28 02:16:22 -07001641 __func__);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001642 }
1643 remove_all_from_journal_list(s, jl, 0);
1644 list_del_init(&jl->j_list);
1645 journal->j_num_lists--;
1646 del_from_work_list(s, jl);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001647
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001648 if (journal->j_last_flush_id != 0 &&
1649 (jl->j_trans_id - journal->j_last_flush_id) != 1) {
Jeff Mahoney45b03d52009-03-30 14:02:21 -04001650 reiserfs_warning(s, "clm-2201", "last flush %lu, current %lu",
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001651 journal->j_last_flush_id, jl->j_trans_id);
1652 }
1653 journal->j_last_flush_id = jl->j_trans_id;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001654
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001655 /* not strictly required since we are freeing the list, but it should
1656 * help find code using dead lists later on
1657 */
1658 jl->j_len = 0;
1659 atomic_set(&(jl->j_nonzerolen), 0);
1660 jl->j_start = 0;
1661 jl->j_realblock = NULL;
1662 jl->j_commit_bh = NULL;
1663 jl->j_trans_id = 0;
1664 jl->j_state = 0;
1665 put_journal_list(s, jl);
1666 if (flushall)
Jeff Mahoneyafe70252008-07-25 01:46:39 -07001667 mutex_unlock(&journal->j_flush_mutex);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001668 put_fs_excl();
1669 return err;
1670}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001671
Chris Masona3172022006-09-29 01:59:56 -07001672static int test_transaction(struct super_block *s,
1673 struct reiserfs_journal_list *jl)
1674{
1675 struct reiserfs_journal_cnode *cn;
1676
1677 if (jl->j_len == 0 || atomic_read(&jl->j_nonzerolen) == 0)
1678 return 1;
1679
1680 cn = jl->j_realblock;
1681 while (cn) {
1682 /* if the blocknr == 0, this has been cleared from the hash,
1683 ** skip it
1684 */
1685 if (cn->blocknr == 0) {
1686 goto next;
1687 }
1688 if (cn->bh && !newer_jl_done(cn))
1689 return 0;
1690 next:
1691 cn = cn->next;
1692 cond_resched();
1693 }
1694 return 0;
1695}
1696
Linus Torvalds1da177e2005-04-16 15:20:36 -07001697static int write_one_transaction(struct super_block *s,
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001698 struct reiserfs_journal_list *jl,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001699 struct buffer_chunk *chunk)
1700{
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001701 struct reiserfs_journal_cnode *cn;
1702 int ret = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001703
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001704 jl->j_state |= LIST_TOUCHED;
1705 del_from_work_list(s, jl);
1706 if (jl->j_len == 0 || atomic_read(&jl->j_nonzerolen) == 0) {
1707 return 0;
1708 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001709
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001710 cn = jl->j_realblock;
1711 while (cn) {
1712 /* if the blocknr == 0, this has been cleared from the hash,
1713 ** skip it
1714 */
1715 if (cn->blocknr == 0) {
1716 goto next;
1717 }
1718 if (cn->bh && can_dirty(cn) && buffer_dirty(cn->bh)) {
1719 struct buffer_head *tmp_bh;
1720 /* we can race against journal_mark_freed when we try
1721 * to lock_buffer(cn->bh), so we have to inc the buffer
1722 * count, and recheck things after locking
1723 */
1724 tmp_bh = cn->bh;
1725 get_bh(tmp_bh);
1726 lock_buffer(tmp_bh);
1727 if (cn->bh && can_dirty(cn) && buffer_dirty(tmp_bh)) {
1728 if (!buffer_journal_dirty(tmp_bh) ||
1729 buffer_journal_prepared(tmp_bh))
1730 BUG();
1731 add_to_chunk(chunk, tmp_bh, NULL, write_chunk);
1732 ret++;
1733 } else {
1734 /* note, cn->bh might be null now */
1735 unlock_buffer(tmp_bh);
1736 }
1737 put_bh(tmp_bh);
1738 }
1739 next:
1740 cn = cn->next;
1741 cond_resched();
1742 }
1743 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001744}
1745
1746/* used by flush_commit_list */
1747static int dirty_one_transaction(struct super_block *s,
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001748 struct reiserfs_journal_list *jl)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001749{
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001750 struct reiserfs_journal_cnode *cn;
1751 struct reiserfs_journal_list *pjl;
1752 int ret = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001753
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001754 jl->j_state |= LIST_DIRTY;
1755 cn = jl->j_realblock;
1756 while (cn) {
1757 /* look for a more recent transaction that logged this
1758 ** buffer. Only the most recent transaction with a buffer in
1759 ** it is allowed to send that buffer to disk
1760 */
1761 pjl = find_newer_jl_for_cn(cn);
1762 if (!pjl && cn->blocknr && cn->bh
1763 && buffer_journal_dirty(cn->bh)) {
1764 BUG_ON(!can_dirty(cn));
1765 /* if the buffer is prepared, it will either be logged
1766 * or restored. If restored, we need to make sure
1767 * it actually gets marked dirty
1768 */
1769 clear_buffer_journal_new(cn->bh);
1770 if (buffer_journal_prepared(cn->bh)) {
1771 set_buffer_journal_restore_dirty(cn->bh);
1772 } else {
1773 set_buffer_journal_test(cn->bh);
1774 mark_buffer_dirty(cn->bh);
1775 }
1776 }
1777 cn = cn->next;
1778 }
1779 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001780}
1781
1782static int kupdate_transactions(struct super_block *s,
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001783 struct reiserfs_journal_list *jl,
1784 struct reiserfs_journal_list **next_jl,
Jeff Mahoney600ed412009-03-30 14:02:17 -04001785 unsigned int *next_trans_id,
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001786 int num_blocks, int num_trans)
1787{
1788 int ret = 0;
1789 int written = 0;
1790 int transactions_flushed = 0;
Jeff Mahoney600ed412009-03-30 14:02:17 -04001791 unsigned int orig_trans_id = jl->j_trans_id;
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001792 struct buffer_chunk chunk;
1793 struct list_head *entry;
1794 struct reiserfs_journal *journal = SB_JOURNAL(s);
1795 chunk.nr = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001796
Frederic Weisbeckera412f9e2009-04-14 00:10:35 +02001797 reiserfs_mutex_lock_safe(&journal->j_flush_mutex, s);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001798 if (!journal_list_still_alive(s, orig_trans_id)) {
1799 goto done;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001800 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001801
Jeff Mahoneyafe70252008-07-25 01:46:39 -07001802 /* we've got j_flush_mutex held, nobody is going to delete any
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001803 * of these lists out from underneath us
1804 */
1805 while ((num_trans && transactions_flushed < num_trans) ||
1806 (!num_trans && written < num_blocks)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001807
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001808 if (jl->j_len == 0 || (jl->j_state & LIST_TOUCHED) ||
1809 atomic_read(&jl->j_commit_left)
1810 || !(jl->j_state & LIST_DIRTY)) {
1811 del_from_work_list(s, jl);
1812 break;
1813 }
1814 ret = write_one_transaction(s, jl, &chunk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001815
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001816 if (ret < 0)
1817 goto done;
1818 transactions_flushed++;
1819 written += ret;
1820 entry = jl->j_list.next;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001821
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001822 /* did we wrap? */
1823 if (entry == &journal->j_journal_list) {
1824 break;
1825 }
1826 jl = JOURNAL_LIST_ENTRY(entry);
1827
1828 /* don't bother with older transactions */
1829 if (jl->j_trans_id <= orig_trans_id)
1830 break;
1831 }
1832 if (chunk.nr) {
1833 write_chunk(&chunk);
1834 }
1835
1836 done:
Jeff Mahoneyafe70252008-07-25 01:46:39 -07001837 mutex_unlock(&journal->j_flush_mutex);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001838 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001839}
1840
1841/* for o_sync and fsync heavy applications, they tend to use
1842** all the journa list slots with tiny transactions. These
1843** trigger lots and lots of calls to update the header block, which
1844** adds seeks and slows things down.
1845**
1846** This function tries to clear out a large chunk of the journal lists
1847** at once, which makes everything faster since only the newest journal
1848** list updates the header block
1849*/
1850static int flush_used_journal_lists(struct super_block *s,
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001851 struct reiserfs_journal_list *jl)
1852{
1853 unsigned long len = 0;
1854 unsigned long cur_len;
1855 int ret;
1856 int i;
1857 int limit = 256;
1858 struct reiserfs_journal_list *tjl;
1859 struct reiserfs_journal_list *flush_jl;
Jeff Mahoney600ed412009-03-30 14:02:17 -04001860 unsigned int trans_id;
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001861 struct reiserfs_journal *journal = SB_JOURNAL(s);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001862
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001863 flush_jl = tjl = jl;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001864
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001865 /* in data logging mode, try harder to flush a lot of blocks */
1866 if (reiserfs_data_log(s))
1867 limit = 1024;
1868 /* flush for 256 transactions or limit blocks, whichever comes first */
1869 for (i = 0; i < 256 && len < limit; i++) {
1870 if (atomic_read(&tjl->j_commit_left) ||
1871 tjl->j_trans_id < jl->j_trans_id) {
1872 break;
1873 }
1874 cur_len = atomic_read(&tjl->j_nonzerolen);
1875 if (cur_len > 0) {
1876 tjl->j_state &= ~LIST_TOUCHED;
1877 }
1878 len += cur_len;
1879 flush_jl = tjl;
1880 if (tjl->j_list.next == &journal->j_journal_list)
1881 break;
1882 tjl = JOURNAL_LIST_ENTRY(tjl->j_list.next);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001883 }
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001884 /* try to find a group of blocks we can flush across all the
1885 ** transactions, but only bother if we've actually spanned
1886 ** across multiple lists
1887 */
1888 if (flush_jl != jl) {
1889 ret = kupdate_transactions(s, jl, &tjl, &trans_id, len, i);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001890 }
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001891 flush_journal_list(s, flush_jl, 1);
1892 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001893}
1894
1895/*
1896** removes any nodes in table with name block and dev as bh.
1897** only touchs the hnext and hprev pointers.
1898*/
1899void remove_journal_hash(struct super_block *sb,
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001900 struct reiserfs_journal_cnode **table,
1901 struct reiserfs_journal_list *jl,
1902 unsigned long block, int remove_freed)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001903{
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001904 struct reiserfs_journal_cnode *cur;
1905 struct reiserfs_journal_cnode **head;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001906
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001907 head = &(journal_hash(table, sb, block));
1908 if (!head) {
1909 return;
1910 }
1911 cur = *head;
1912 while (cur) {
1913 if (cur->blocknr == block && cur->sb == sb
1914 && (jl == NULL || jl == cur->jlist)
1915 && (!test_bit(BLOCK_FREED, &cur->state) || remove_freed)) {
1916 if (cur->hnext) {
1917 cur->hnext->hprev = cur->hprev;
1918 }
1919 if (cur->hprev) {
1920 cur->hprev->hnext = cur->hnext;
1921 } else {
1922 *head = cur->hnext;
1923 }
1924 cur->blocknr = 0;
1925 cur->sb = NULL;
1926 cur->state = 0;
1927 if (cur->bh && cur->jlist) /* anybody who clears the cur->bh will also dec the nonzerolen */
1928 atomic_dec(&(cur->jlist->j_nonzerolen));
1929 cur->bh = NULL;
1930 cur->jlist = NULL;
1931 }
1932 cur = cur->hnext;
1933 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001934}
1935
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04001936static void free_journal_ram(struct super_block *sb)
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001937{
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04001938 struct reiserfs_journal *journal = SB_JOURNAL(sb);
Pekka Enbergd739b422006-02-01 03:06:43 -08001939 kfree(journal->j_current_jl);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001940 journal->j_num_lists--;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001941
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001942 vfree(journal->j_cnode_free_orig);
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04001943 free_list_bitmaps(sb, journal->j_list_bitmap);
1944 free_bitmap_nodes(sb); /* must be after free_list_bitmaps */
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001945 if (journal->j_header_bh) {
1946 brelse(journal->j_header_bh);
1947 }
1948 /* j_header_bh is on the journal dev, make sure not to release the journal
1949 * dev until we brelse j_header_bh
1950 */
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04001951 release_journal_dev(sb, journal);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001952 vfree(journal);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001953}
1954
1955/*
1956** call on unmount. Only set error to 1 if you haven't made your way out
1957** of read_super() yet. Any other caller must keep error at 0.
1958*/
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001959static int do_journal_release(struct reiserfs_transaction_handle *th,
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04001960 struct super_block *sb, int error)
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001961{
1962 struct reiserfs_transaction_handle myth;
1963 int flushed = 0;
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04001964 struct reiserfs_journal *journal = SB_JOURNAL(sb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001965
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001966 /* we only want to flush out transactions if we were called with error == 0
1967 */
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04001968 if (!error && !(sb->s_flags & MS_RDONLY)) {
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001969 /* end the current trans */
1970 BUG_ON(!th->t_trans_id);
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04001971 do_journal_end(th, sb, 10, FLUSH_ALL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001972
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001973 /* make sure something gets logged to force our way into the flush code */
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04001974 if (!journal_join(&myth, sb, 1)) {
1975 reiserfs_prepare_for_journal(sb,
1976 SB_BUFFER_WITH_SB(sb),
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001977 1);
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04001978 journal_mark_dirty(&myth, sb,
1979 SB_BUFFER_WITH_SB(sb));
1980 do_journal_end(&myth, sb, 1, FLUSH_ALL);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001981 flushed = 1;
1982 }
1983 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001984
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001985 /* this also catches errors during the do_journal_end above */
1986 if (!error && reiserfs_is_journal_aborted(journal)) {
1987 memset(&myth, 0, sizeof(myth));
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04001988 if (!journal_join_abort(&myth, sb, 1)) {
1989 reiserfs_prepare_for_journal(sb,
1990 SB_BUFFER_WITH_SB(sb),
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001991 1);
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04001992 journal_mark_dirty(&myth, sb,
1993 SB_BUFFER_WITH_SB(sb));
1994 do_journal_end(&myth, sb, 1, FLUSH_ALL);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001995 }
1996 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001997
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001998 reiserfs_mounted_fs_count--;
1999 /* wait for all commits to finish */
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04002000 cancel_delayed_work(&SB_JOURNAL(sb)->j_work);
Frederic Weisbecker8ebc4232009-04-07 04:19:49 +02002001
2002 /*
2003 * We must release the write lock here because
2004 * the workqueue job (flush_async_commit) needs this lock
2005 */
2006 reiserfs_write_unlock(sb);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002007 flush_workqueue(commit_wq);
Frederic Weisbecker8ebc4232009-04-07 04:19:49 +02002008
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002009 if (!reiserfs_mounted_fs_count) {
2010 destroy_workqueue(commit_wq);
2011 commit_wq = NULL;
2012 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002013
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04002014 free_journal_ram(sb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002015
Frederic Weisbecker05236762009-12-30 05:56:08 +01002016 reiserfs_write_lock(sb);
2017
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002018 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002019}
2020
2021/*
2022** call on unmount. flush all journal trans, release all alloc'd ram
2023*/
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002024int journal_release(struct reiserfs_transaction_handle *th,
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04002025 struct super_block *sb)
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002026{
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04002027 return do_journal_release(th, sb, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002028}
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002029
Linus Torvalds1da177e2005-04-16 15:20:36 -07002030/*
2031** only call from an error condition inside reiserfs_read_super!
2032*/
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002033int journal_release_error(struct reiserfs_transaction_handle *th,
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04002034 struct super_block *sb)
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002035{
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04002036 return do_journal_release(th, sb, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002037}
2038
2039/* compares description block with commit block. returns 1 if they differ, 0 if they are the same */
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04002040static int journal_compare_desc_commit(struct super_block *sb,
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002041 struct reiserfs_journal_desc *desc,
2042 struct reiserfs_journal_commit *commit)
2043{
2044 if (get_commit_trans_id(commit) != get_desc_trans_id(desc) ||
2045 get_commit_trans_len(commit) != get_desc_trans_len(desc) ||
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04002046 get_commit_trans_len(commit) > SB_JOURNAL(sb)->j_trans_max ||
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002047 get_commit_trans_len(commit) <= 0) {
2048 return 1;
2049 }
2050 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002051}
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002052
Jeff Mahoney0222e652009-03-30 14:02:44 -04002053/* returns 0 if it did not find a description block
Linus Torvalds1da177e2005-04-16 15:20:36 -07002054** returns -1 if it found a corrupt commit block
Jeff Mahoney0222e652009-03-30 14:02:44 -04002055** returns 1 if both desc and commit were valid
Linus Torvalds1da177e2005-04-16 15:20:36 -07002056*/
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04002057static int journal_transaction_is_valid(struct super_block *sb,
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002058 struct buffer_head *d_bh,
Jeff Mahoney600ed412009-03-30 14:02:17 -04002059 unsigned int *oldest_invalid_trans_id,
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002060 unsigned long *newest_mount_id)
2061{
2062 struct reiserfs_journal_desc *desc;
2063 struct reiserfs_journal_commit *commit;
2064 struct buffer_head *c_bh;
2065 unsigned long offset;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002066
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002067 if (!d_bh)
2068 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002069
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002070 desc = (struct reiserfs_journal_desc *)d_bh->b_data;
2071 if (get_desc_trans_len(desc) > 0
2072 && !memcmp(get_journal_desc_magic(d_bh), JOURNAL_DESC_MAGIC, 8)) {
2073 if (oldest_invalid_trans_id && *oldest_invalid_trans_id
2074 && get_desc_trans_id(desc) > *oldest_invalid_trans_id) {
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04002075 reiserfs_debug(sb, REISERFS_DEBUG_CODE,
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002076 "journal-986: transaction "
2077 "is valid returning because trans_id %d is greater than "
2078 "oldest_invalid %lu",
2079 get_desc_trans_id(desc),
2080 *oldest_invalid_trans_id);
2081 return 0;
2082 }
2083 if (newest_mount_id
2084 && *newest_mount_id > get_desc_mount_id(desc)) {
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04002085 reiserfs_debug(sb, REISERFS_DEBUG_CODE,
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002086 "journal-1087: transaction "
2087 "is valid returning because mount_id %d is less than "
2088 "newest_mount_id %lu",
2089 get_desc_mount_id(desc),
2090 *newest_mount_id);
2091 return -1;
2092 }
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04002093 if (get_desc_trans_len(desc) > SB_JOURNAL(sb)->j_trans_max) {
2094 reiserfs_warning(sb, "journal-2018",
Jeff Mahoney45b03d52009-03-30 14:02:21 -04002095 "Bad transaction length %d "
2096 "encountered, ignoring transaction",
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002097 get_desc_trans_len(desc));
2098 return -1;
2099 }
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04002100 offset = d_bh->b_blocknr - SB_ONDISK_JOURNAL_1st_BLOCK(sb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002101
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002102 /* ok, we have a journal description block, lets see if the transaction was valid */
2103 c_bh =
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04002104 journal_bread(sb,
2105 SB_ONDISK_JOURNAL_1st_BLOCK(sb) +
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002106 ((offset + get_desc_trans_len(desc) +
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04002107 1) % SB_ONDISK_JOURNAL_SIZE(sb)));
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002108 if (!c_bh)
2109 return 0;
2110 commit = (struct reiserfs_journal_commit *)c_bh->b_data;
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04002111 if (journal_compare_desc_commit(sb, desc, commit)) {
2112 reiserfs_debug(sb, REISERFS_DEBUG_CODE,
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002113 "journal_transaction_is_valid, commit offset %ld had bad "
2114 "time %d or length %d",
2115 c_bh->b_blocknr -
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04002116 SB_ONDISK_JOURNAL_1st_BLOCK(sb),
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002117 get_commit_trans_id(commit),
2118 get_commit_trans_len(commit));
2119 brelse(c_bh);
2120 if (oldest_invalid_trans_id) {
2121 *oldest_invalid_trans_id =
2122 get_desc_trans_id(desc);
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04002123 reiserfs_debug(sb, REISERFS_DEBUG_CODE,
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002124 "journal-1004: "
2125 "transaction_is_valid setting oldest invalid trans_id "
2126 "to %d",
2127 get_desc_trans_id(desc));
2128 }
2129 return -1;
2130 }
2131 brelse(c_bh);
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04002132 reiserfs_debug(sb, REISERFS_DEBUG_CODE,
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002133 "journal-1006: found valid "
2134 "transaction start offset %llu, len %d id %d",
2135 d_bh->b_blocknr -
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04002136 SB_ONDISK_JOURNAL_1st_BLOCK(sb),
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002137 get_desc_trans_len(desc),
2138 get_desc_trans_id(desc));
2139 return 1;
2140 } else {
2141 return 0;
2142 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002143}
2144
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002145static void brelse_array(struct buffer_head **heads, int num)
2146{
2147 int i;
2148 for (i = 0; i < num; i++) {
2149 brelse(heads[i]);
2150 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002151}
2152
2153/*
2154** given the start, and values for the oldest acceptable transactions,
2155** this either reads in a replays a transaction, or returns because the transaction
2156** is invalid, or too old.
2157*/
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04002158static int journal_read_transaction(struct super_block *sb,
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002159 unsigned long cur_dblock,
2160 unsigned long oldest_start,
Jeff Mahoney600ed412009-03-30 14:02:17 -04002161 unsigned int oldest_trans_id,
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002162 unsigned long newest_mount_id)
2163{
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04002164 struct reiserfs_journal *journal = SB_JOURNAL(sb);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002165 struct reiserfs_journal_desc *desc;
2166 struct reiserfs_journal_commit *commit;
Jeff Mahoney600ed412009-03-30 14:02:17 -04002167 unsigned int trans_id = 0;
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002168 struct buffer_head *c_bh;
2169 struct buffer_head *d_bh;
2170 struct buffer_head **log_blocks = NULL;
2171 struct buffer_head **real_blocks = NULL;
Jeff Mahoney600ed412009-03-30 14:02:17 -04002172 unsigned int trans_offset;
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002173 int i;
2174 int trans_half;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002175
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04002176 d_bh = journal_bread(sb, cur_dblock);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002177 if (!d_bh)
2178 return 1;
2179 desc = (struct reiserfs_journal_desc *)d_bh->b_data;
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04002180 trans_offset = d_bh->b_blocknr - SB_ONDISK_JOURNAL_1st_BLOCK(sb);
2181 reiserfs_debug(sb, REISERFS_DEBUG_CODE, "journal-1037: "
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002182 "journal_read_transaction, offset %llu, len %d mount_id %d",
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04002183 d_bh->b_blocknr - SB_ONDISK_JOURNAL_1st_BLOCK(sb),
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002184 get_desc_trans_len(desc), get_desc_mount_id(desc));
2185 if (get_desc_trans_id(desc) < oldest_trans_id) {
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04002186 reiserfs_debug(sb, REISERFS_DEBUG_CODE, "journal-1039: "
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002187 "journal_read_trans skipping because %lu is too old",
2188 cur_dblock -
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04002189 SB_ONDISK_JOURNAL_1st_BLOCK(sb));
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002190 brelse(d_bh);
2191 return 1;
2192 }
2193 if (get_desc_mount_id(desc) != newest_mount_id) {
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04002194 reiserfs_debug(sb, REISERFS_DEBUG_CODE, "journal-1146: "
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002195 "journal_read_trans skipping because %d is != "
2196 "newest_mount_id %lu", get_desc_mount_id(desc),
2197 newest_mount_id);
2198 brelse(d_bh);
2199 return 1;
2200 }
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04002201 c_bh = journal_bread(sb, SB_ONDISK_JOURNAL_1st_BLOCK(sb) +
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002202 ((trans_offset + get_desc_trans_len(desc) + 1) %
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04002203 SB_ONDISK_JOURNAL_SIZE(sb)));
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002204 if (!c_bh) {
2205 brelse(d_bh);
2206 return 1;
2207 }
2208 commit = (struct reiserfs_journal_commit *)c_bh->b_data;
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04002209 if (journal_compare_desc_commit(sb, desc, commit)) {
2210 reiserfs_debug(sb, REISERFS_DEBUG_CODE,
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002211 "journal_read_transaction, "
2212 "commit offset %llu had bad time %d or length %d",
2213 c_bh->b_blocknr -
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04002214 SB_ONDISK_JOURNAL_1st_BLOCK(sb),
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002215 get_commit_trans_id(commit),
2216 get_commit_trans_len(commit));
2217 brelse(c_bh);
2218 brelse(d_bh);
2219 return 1;
2220 }
Jeff Mahoney3f8b5ee2010-03-23 13:35:39 -07002221
2222 if (bdev_read_only(sb->s_bdev)) {
2223 reiserfs_warning(sb, "clm-2076",
2224 "device is readonly, unable to replay log");
2225 brelse(c_bh);
2226 brelse(d_bh);
2227 return -EROFS;
2228 }
2229
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002230 trans_id = get_desc_trans_id(desc);
2231 /* now we know we've got a good transaction, and it was inside the valid time ranges */
Pekka Enbergd739b422006-02-01 03:06:43 -08002232 log_blocks = kmalloc(get_desc_trans_len(desc) *
2233 sizeof(struct buffer_head *), GFP_NOFS);
2234 real_blocks = kmalloc(get_desc_trans_len(desc) *
2235 sizeof(struct buffer_head *), GFP_NOFS);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002236 if (!log_blocks || !real_blocks) {
2237 brelse(c_bh);
2238 brelse(d_bh);
Pekka Enbergd739b422006-02-01 03:06:43 -08002239 kfree(log_blocks);
2240 kfree(real_blocks);
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04002241 reiserfs_warning(sb, "journal-1169",
Jeff Mahoney45b03d52009-03-30 14:02:21 -04002242 "kmalloc failed, unable to mount FS");
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002243 return -1;
2244 }
2245 /* get all the buffer heads */
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04002246 trans_half = journal_trans_half(sb->s_blocksize);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002247 for (i = 0; i < get_desc_trans_len(desc); i++) {
2248 log_blocks[i] =
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04002249 journal_getblk(sb,
2250 SB_ONDISK_JOURNAL_1st_BLOCK(sb) +
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002251 (trans_offset + 1 +
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04002252 i) % SB_ONDISK_JOURNAL_SIZE(sb));
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002253 if (i < trans_half) {
2254 real_blocks[i] =
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04002255 sb_getblk(sb,
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002256 le32_to_cpu(desc->j_realblock[i]));
2257 } else {
2258 real_blocks[i] =
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04002259 sb_getblk(sb,
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002260 le32_to_cpu(commit->
2261 j_realblock[i - trans_half]));
2262 }
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04002263 if (real_blocks[i]->b_blocknr > SB_BLOCK_COUNT(sb)) {
2264 reiserfs_warning(sb, "journal-1207",
Jeff Mahoney45b03d52009-03-30 14:02:21 -04002265 "REPLAY FAILURE fsck required! "
2266 "Block to replay is outside of "
2267 "filesystem");
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002268 goto abort_replay;
2269 }
2270 /* make sure we don't try to replay onto log or reserved area */
2271 if (is_block_in_log_or_reserved_area
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04002272 (sb, real_blocks[i]->b_blocknr)) {
2273 reiserfs_warning(sb, "journal-1204",
Jeff Mahoney45b03d52009-03-30 14:02:21 -04002274 "REPLAY FAILURE fsck required! "
2275 "Trying to replay onto a log block");
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002276 abort_replay:
2277 brelse_array(log_blocks, i);
2278 brelse_array(real_blocks, i);
2279 brelse(c_bh);
2280 brelse(d_bh);
Pekka Enbergd739b422006-02-01 03:06:43 -08002281 kfree(log_blocks);
2282 kfree(real_blocks);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002283 return -1;
2284 }
2285 }
2286 /* read in the log blocks, memcpy to the corresponding real block */
2287 ll_rw_block(READ, get_desc_trans_len(desc), log_blocks);
2288 for (i = 0; i < get_desc_trans_len(desc); i++) {
Frederic Weisbecker8ebc4232009-04-07 04:19:49 +02002289
2290 reiserfs_write_unlock(sb);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002291 wait_on_buffer(log_blocks[i]);
Frederic Weisbecker8ebc4232009-04-07 04:19:49 +02002292 reiserfs_write_lock(sb);
2293
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002294 if (!buffer_uptodate(log_blocks[i])) {
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04002295 reiserfs_warning(sb, "journal-1212",
Jeff Mahoney45b03d52009-03-30 14:02:21 -04002296 "REPLAY FAILURE fsck required! "
2297 "buffer write failed");
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002298 brelse_array(log_blocks + i,
2299 get_desc_trans_len(desc) - i);
2300 brelse_array(real_blocks, get_desc_trans_len(desc));
2301 brelse(c_bh);
2302 brelse(d_bh);
Pekka Enbergd739b422006-02-01 03:06:43 -08002303 kfree(log_blocks);
2304 kfree(real_blocks);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002305 return -1;
2306 }
2307 memcpy(real_blocks[i]->b_data, log_blocks[i]->b_data,
2308 real_blocks[i]->b_size);
2309 set_buffer_uptodate(real_blocks[i]);
2310 brelse(log_blocks[i]);
2311 }
2312 /* flush out the real blocks */
2313 for (i = 0; i < get_desc_trans_len(desc); i++) {
2314 set_buffer_dirty(real_blocks[i]);
Jan Kara53778ff2005-09-06 15:19:14 -07002315 ll_rw_block(SWRITE, 1, real_blocks + i);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002316 }
2317 for (i = 0; i < get_desc_trans_len(desc); i++) {
2318 wait_on_buffer(real_blocks[i]);
2319 if (!buffer_uptodate(real_blocks[i])) {
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04002320 reiserfs_warning(sb, "journal-1226",
Jeff Mahoney45b03d52009-03-30 14:02:21 -04002321 "REPLAY FAILURE, fsck required! "
2322 "buffer write failed");
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002323 brelse_array(real_blocks + i,
2324 get_desc_trans_len(desc) - i);
2325 brelse(c_bh);
2326 brelse(d_bh);
Pekka Enbergd739b422006-02-01 03:06:43 -08002327 kfree(log_blocks);
2328 kfree(real_blocks);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002329 return -1;
2330 }
2331 brelse(real_blocks[i]);
2332 }
2333 cur_dblock =
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04002334 SB_ONDISK_JOURNAL_1st_BLOCK(sb) +
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002335 ((trans_offset + get_desc_trans_len(desc) +
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04002336 2) % SB_ONDISK_JOURNAL_SIZE(sb));
2337 reiserfs_debug(sb, REISERFS_DEBUG_CODE,
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002338 "journal-1095: setting journal " "start to offset %ld",
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04002339 cur_dblock - SB_ONDISK_JOURNAL_1st_BLOCK(sb));
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002340
2341 /* init starting values for the first transaction, in case this is the last transaction to be replayed. */
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04002342 journal->j_start = cur_dblock - SB_ONDISK_JOURNAL_1st_BLOCK(sb);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002343 journal->j_last_flush_trans_id = trans_id;
2344 journal->j_trans_id = trans_id + 1;
Alexander Zarochentseva44c94a2006-03-25 03:06:59 -08002345 /* check for trans_id overflow */
2346 if (journal->j_trans_id == 0)
2347 journal->j_trans_id = 10;
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002348 brelse(c_bh);
2349 brelse(d_bh);
Pekka Enbergd739b422006-02-01 03:06:43 -08002350 kfree(log_blocks);
2351 kfree(real_blocks);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002352 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002353}
2354
2355/* This function reads blocks starting from block and to max_block of bufsize
2356 size (but no more than BUFNR blocks at a time). This proved to improve
2357 mounting speed on self-rebuilding raid5 arrays at least.
2358 Right now it is only used from journal code. But later we might use it
2359 from other places.
2360 Note: Do not use journal_getblk/sb_getblk functions here! */
Jeff Mahoney3ee16672007-10-18 23:39:25 -07002361static struct buffer_head *reiserfs_breada(struct block_device *dev,
2362 b_blocknr_t block, int bufsize,
2363 b_blocknr_t max_block)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002364{
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002365 struct buffer_head *bhlist[BUFNR];
Linus Torvalds1da177e2005-04-16 15:20:36 -07002366 unsigned int blocks = BUFNR;
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002367 struct buffer_head *bh;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002368 int i, j;
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002369
2370 bh = __getblk(dev, block, bufsize);
2371 if (buffer_uptodate(bh))
2372 return (bh);
2373
Linus Torvalds1da177e2005-04-16 15:20:36 -07002374 if (block + BUFNR > max_block) {
2375 blocks = max_block - block;
2376 }
2377 bhlist[0] = bh;
2378 j = 1;
2379 for (i = 1; i < blocks; i++) {
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002380 bh = __getblk(dev, block + i, bufsize);
2381 if (buffer_uptodate(bh)) {
2382 brelse(bh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002383 break;
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002384 } else
2385 bhlist[j++] = bh;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002386 }
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002387 ll_rw_block(READ, j, bhlist);
2388 for (i = 1; i < j; i++)
2389 brelse(bhlist[i]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002390 bh = bhlist[0];
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002391 wait_on_buffer(bh);
2392 if (buffer_uptodate(bh))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002393 return bh;
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002394 brelse(bh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002395 return NULL;
2396}
2397
2398/*
2399** read and replay the log
2400** on a clean unmount, the journal header's next unflushed pointer will be to an invalid
2401** transaction. This tests that before finding all the transactions in the log, which makes normal mount times fast.
2402**
2403** After a crash, this starts with the next unflushed transaction, and replays until it finds one too old, or invalid.
2404**
2405** On exit, it sets things up so the first transaction will work correctly.
2406*/
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04002407static int journal_read(struct super_block *sb)
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002408{
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04002409 struct reiserfs_journal *journal = SB_JOURNAL(sb);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002410 struct reiserfs_journal_desc *desc;
Jeff Mahoney600ed412009-03-30 14:02:17 -04002411 unsigned int oldest_trans_id = 0;
2412 unsigned int oldest_invalid_trans_id = 0;
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002413 time_t start;
2414 unsigned long oldest_start = 0;
2415 unsigned long cur_dblock = 0;
2416 unsigned long newest_mount_id = 9;
2417 struct buffer_head *d_bh;
2418 struct reiserfs_journal_header *jh;
2419 int valid_journal_header = 0;
2420 int replay_count = 0;
2421 int continue_replay = 1;
2422 int ret;
2423 char b[BDEVNAME_SIZE];
Linus Torvalds1da177e2005-04-16 15:20:36 -07002424
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04002425 cur_dblock = SB_ONDISK_JOURNAL_1st_BLOCK(sb);
2426 reiserfs_info(sb, "checking transaction log (%s)\n",
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002427 bdevname(journal->j_dev_bd, b));
2428 start = get_seconds();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002429
Jeff Mahoney0222e652009-03-30 14:02:44 -04002430 /* step 1, read in the journal header block. Check the transaction it says
2431 ** is the first unflushed, and if that transaction is not valid,
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002432 ** replay is done
2433 */
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04002434 journal->j_header_bh = journal_bread(sb,
2435 SB_ONDISK_JOURNAL_1st_BLOCK(sb)
2436 + SB_ONDISK_JOURNAL_SIZE(sb));
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002437 if (!journal->j_header_bh) {
2438 return 1;
2439 }
2440 jh = (struct reiserfs_journal_header *)(journal->j_header_bh->b_data);
Vladimir V. Savelievc499ec22006-03-02 02:54:39 -08002441 if (le32_to_cpu(jh->j_first_unflushed_offset) <
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04002442 SB_ONDISK_JOURNAL_SIZE(sb)
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002443 && le32_to_cpu(jh->j_last_flush_trans_id) > 0) {
2444 oldest_start =
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04002445 SB_ONDISK_JOURNAL_1st_BLOCK(sb) +
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002446 le32_to_cpu(jh->j_first_unflushed_offset);
2447 oldest_trans_id = le32_to_cpu(jh->j_last_flush_trans_id) + 1;
2448 newest_mount_id = le32_to_cpu(jh->j_mount_id);
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04002449 reiserfs_debug(sb, REISERFS_DEBUG_CODE,
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002450 "journal-1153: found in "
2451 "header: first_unflushed_offset %d, last_flushed_trans_id "
2452 "%lu", le32_to_cpu(jh->j_first_unflushed_offset),
2453 le32_to_cpu(jh->j_last_flush_trans_id));
2454 valid_journal_header = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002455
Jeff Mahoney0222e652009-03-30 14:02:44 -04002456 /* now, we try to read the first unflushed offset. If it is not valid,
2457 ** there is nothing more we can do, and it makes no sense to read
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002458 ** through the whole log.
2459 */
2460 d_bh =
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04002461 journal_bread(sb,
2462 SB_ONDISK_JOURNAL_1st_BLOCK(sb) +
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002463 le32_to_cpu(jh->j_first_unflushed_offset));
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04002464 ret = journal_transaction_is_valid(sb, d_bh, NULL, NULL);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002465 if (!ret) {
2466 continue_replay = 0;
2467 }
2468 brelse(d_bh);
2469 goto start_log_replay;
2470 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002471
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002472 /* ok, there are transactions that need to be replayed. start with the first log block, find
2473 ** all the valid transactions, and pick out the oldest.
2474 */
2475 while (continue_replay
2476 && cur_dblock <
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04002477 (SB_ONDISK_JOURNAL_1st_BLOCK(sb) +
2478 SB_ONDISK_JOURNAL_SIZE(sb))) {
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002479 /* Note that it is required for blocksize of primary fs device and journal
2480 device to be the same */
2481 d_bh =
2482 reiserfs_breada(journal->j_dev_bd, cur_dblock,
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04002483 sb->s_blocksize,
2484 SB_ONDISK_JOURNAL_1st_BLOCK(sb) +
2485 SB_ONDISK_JOURNAL_SIZE(sb));
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002486 ret =
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04002487 journal_transaction_is_valid(sb, d_bh,
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002488 &oldest_invalid_trans_id,
2489 &newest_mount_id);
2490 if (ret == 1) {
2491 desc = (struct reiserfs_journal_desc *)d_bh->b_data;
2492 if (oldest_start == 0) { /* init all oldest_ values */
2493 oldest_trans_id = get_desc_trans_id(desc);
2494 oldest_start = d_bh->b_blocknr;
2495 newest_mount_id = get_desc_mount_id(desc);
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04002496 reiserfs_debug(sb, REISERFS_DEBUG_CODE,
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002497 "journal-1179: Setting "
2498 "oldest_start to offset %llu, trans_id %lu",
2499 oldest_start -
2500 SB_ONDISK_JOURNAL_1st_BLOCK
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04002501 (sb), oldest_trans_id);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002502 } else if (oldest_trans_id > get_desc_trans_id(desc)) {
2503 /* one we just read was older */
2504 oldest_trans_id = get_desc_trans_id(desc);
2505 oldest_start = d_bh->b_blocknr;
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04002506 reiserfs_debug(sb, REISERFS_DEBUG_CODE,
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002507 "journal-1180: Resetting "
2508 "oldest_start to offset %lu, trans_id %lu",
2509 oldest_start -
2510 SB_ONDISK_JOURNAL_1st_BLOCK
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04002511 (sb), oldest_trans_id);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002512 }
2513 if (newest_mount_id < get_desc_mount_id(desc)) {
2514 newest_mount_id = get_desc_mount_id(desc);
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04002515 reiserfs_debug(sb, REISERFS_DEBUG_CODE,
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002516 "journal-1299: Setting "
2517 "newest_mount_id to %d",
2518 get_desc_mount_id(desc));
2519 }
2520 cur_dblock += get_desc_trans_len(desc) + 2;
2521 } else {
2522 cur_dblock++;
2523 }
2524 brelse(d_bh);
2525 }
2526
2527 start_log_replay:
2528 cur_dblock = oldest_start;
2529 if (oldest_trans_id) {
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04002530 reiserfs_debug(sb, REISERFS_DEBUG_CODE,
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002531 "journal-1206: Starting replay "
2532 "from offset %llu, trans_id %lu",
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04002533 cur_dblock - SB_ONDISK_JOURNAL_1st_BLOCK(sb),
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002534 oldest_trans_id);
2535
2536 }
2537 replay_count = 0;
2538 while (continue_replay && oldest_trans_id > 0) {
2539 ret =
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04002540 journal_read_transaction(sb, cur_dblock, oldest_start,
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002541 oldest_trans_id, newest_mount_id);
2542 if (ret < 0) {
2543 return ret;
2544 } else if (ret != 0) {
2545 break;
2546 }
2547 cur_dblock =
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04002548 SB_ONDISK_JOURNAL_1st_BLOCK(sb) + journal->j_start;
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002549 replay_count++;
2550 if (cur_dblock == oldest_start)
2551 break;
2552 }
2553
2554 if (oldest_trans_id == 0) {
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04002555 reiserfs_debug(sb, REISERFS_DEBUG_CODE,
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002556 "journal-1225: No valid " "transactions found");
2557 }
2558 /* j_start does not get set correctly if we don't replay any transactions.
2559 ** if we had a valid journal_header, set j_start to the first unflushed transaction value,
2560 ** copy the trans_id from the header
2561 */
2562 if (valid_journal_header && replay_count == 0) {
2563 journal->j_start = le32_to_cpu(jh->j_first_unflushed_offset);
2564 journal->j_trans_id =
2565 le32_to_cpu(jh->j_last_flush_trans_id) + 1;
Alexander Zarochentseva44c94a2006-03-25 03:06:59 -08002566 /* check for trans_id overflow */
2567 if (journal->j_trans_id == 0)
2568 journal->j_trans_id = 10;
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002569 journal->j_last_flush_trans_id =
2570 le32_to_cpu(jh->j_last_flush_trans_id);
2571 journal->j_mount_id = le32_to_cpu(jh->j_mount_id) + 1;
2572 } else {
2573 journal->j_mount_id = newest_mount_id + 1;
2574 }
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04002575 reiserfs_debug(sb, REISERFS_DEBUG_CODE, "journal-1299: Setting "
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002576 "newest_mount_id to %lu", journal->j_mount_id);
2577 journal->j_first_unflushed_offset = journal->j_start;
2578 if (replay_count > 0) {
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04002579 reiserfs_info(sb,
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002580 "replayed %d transactions in %lu seconds\n",
2581 replay_count, get_seconds() - start);
2582 }
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04002583 if (!bdev_read_only(sb->s_bdev) &&
2584 _update_journal_header_block(sb, journal->j_start,
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002585 journal->j_last_flush_trans_id)) {
2586 /* replay failed, caller must call free_journal_ram and abort
2587 ** the mount
2588 */
2589 return -1;
2590 }
2591 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002592}
2593
2594static struct reiserfs_journal_list *alloc_journal_list(struct super_block *s)
2595{
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002596 struct reiserfs_journal_list *jl;
Pekka Enberg8c777cc2006-02-01 03:06:43 -08002597 jl = kzalloc(sizeof(struct reiserfs_journal_list),
2598 GFP_NOFS | __GFP_NOFAIL);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002599 INIT_LIST_HEAD(&jl->j_list);
2600 INIT_LIST_HEAD(&jl->j_working_list);
2601 INIT_LIST_HEAD(&jl->j_tail_bh_list);
2602 INIT_LIST_HEAD(&jl->j_bh_list);
Jeff Mahoney90415de2008-07-25 01:46:40 -07002603 mutex_init(&jl->j_commit_mutex);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002604 SB_JOURNAL(s)->j_num_lists++;
2605 get_journal_list(jl);
2606 return jl;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002607}
2608
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04002609static void journal_list_init(struct super_block *sb)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002610{
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04002611 SB_JOURNAL(sb)->j_current_jl = alloc_journal_list(sb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002612}
2613
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002614static int release_journal_dev(struct super_block *super,
2615 struct reiserfs_journal *journal)
2616{
2617 int result;
2618
2619 result = 0;
2620
Christoph Hellwig86098fa2008-04-30 00:54:46 -07002621 if (journal->j_dev_bd != NULL) {
2622 if (journal->j_dev_bd->bd_dev != super->s_dev)
2623 bd_release(journal->j_dev_bd);
Al Viroe5eb8ca2007-10-08 13:24:05 -04002624 result = blkdev_put(journal->j_dev_bd, journal->j_dev_mode);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002625 journal->j_dev_bd = NULL;
2626 }
2627
2628 if (result != 0) {
Jeff Mahoney45b03d52009-03-30 14:02:21 -04002629 reiserfs_warning(super, "sh-457",
2630 "Cannot release journal device: %i", result);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002631 }
2632 return result;
2633}
2634
2635static int journal_init_dev(struct super_block *super,
2636 struct reiserfs_journal *journal,
2637 const char *jdev_name)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002638{
2639 int result;
2640 dev_t jdev;
Al Viroaeb5d722008-09-02 15:28:45 -04002641 fmode_t blkdev_mode = FMODE_READ | FMODE_WRITE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002642 char b[BDEVNAME_SIZE];
2643
2644 result = 0;
2645
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002646 journal->j_dev_bd = NULL;
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002647 jdev = SB_ONDISK_JOURNAL_DEVICE(super) ?
2648 new_decode_dev(SB_ONDISK_JOURNAL_DEVICE(super)) : super->s_dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002649
2650 if (bdev_read_only(super->s_bdev))
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002651 blkdev_mode = FMODE_READ;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002652
2653 /* there is no "jdev" option and journal is on separate device */
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002654 if ((!jdev_name || !jdev_name[0])) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002655 journal->j_dev_bd = open_by_devnum(jdev, blkdev_mode);
Al Viroe5eb8ca2007-10-08 13:24:05 -04002656 journal->j_dev_mode = blkdev_mode;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002657 if (IS_ERR(journal->j_dev_bd)) {
2658 result = PTR_ERR(journal->j_dev_bd);
2659 journal->j_dev_bd = NULL;
Jeff Mahoney45b03d52009-03-30 14:02:21 -04002660 reiserfs_warning(super, "sh-458",
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002661 "cannot init journal device '%s': %i",
2662 __bdevname(jdev, b), result);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002663 return result;
Christoph Hellwig86098fa2008-04-30 00:54:46 -07002664 } else if (jdev != super->s_dev) {
2665 result = bd_claim(journal->j_dev_bd, journal);
2666 if (result) {
Al Viro9a1c3542008-02-22 20:40:24 -05002667 blkdev_put(journal->j_dev_bd, blkdev_mode);
Christoph Hellwig86098fa2008-04-30 00:54:46 -07002668 return result;
2669 }
2670
Linus Torvalds1da177e2005-04-16 15:20:36 -07002671 set_blocksize(journal->j_dev_bd, super->s_blocksize);
Christoph Hellwig86098fa2008-04-30 00:54:46 -07002672 }
2673
Linus Torvalds1da177e2005-04-16 15:20:36 -07002674 return 0;
2675 }
2676
Al Viroe5eb8ca2007-10-08 13:24:05 -04002677 journal->j_dev_mode = blkdev_mode;
Al Viro30c40d22008-02-22 19:50:45 -05002678 journal->j_dev_bd = open_bdev_exclusive(jdev_name,
Al Viroe5eb8ca2007-10-08 13:24:05 -04002679 blkdev_mode, journal);
Christoph Hellwig86098fa2008-04-30 00:54:46 -07002680 if (IS_ERR(journal->j_dev_bd)) {
2681 result = PTR_ERR(journal->j_dev_bd);
2682 journal->j_dev_bd = NULL;
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002683 reiserfs_warning(super,
2684 "journal_init_dev: Cannot open '%s': %i",
2685 jdev_name, result);
Christoph Hellwig86098fa2008-04-30 00:54:46 -07002686 return result;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002687 }
Christoph Hellwig86098fa2008-04-30 00:54:46 -07002688
2689 set_blocksize(journal->j_dev_bd, super->s_blocksize);
2690 reiserfs_info(super,
2691 "journal_init_dev: journal device: %s\n",
2692 bdevname(journal->j_dev_bd, b));
2693 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002694}
2695
Edward Shishkincf3d0b82007-10-16 23:30:30 -07002696/**
2697 * When creating/tuning a file system user can assign some
2698 * journal params within boundaries which depend on the ratio
2699 * blocksize/standard_blocksize.
2700 *
2701 * For blocks >= standard_blocksize transaction size should
2702 * be not less then JOURNAL_TRANS_MIN_DEFAULT, and not more
2703 * then JOURNAL_TRANS_MAX_DEFAULT.
2704 *
2705 * For blocks < standard_blocksize these boundaries should be
2706 * decreased proportionally.
2707 */
2708#define REISERFS_STANDARD_BLKSIZE (4096)
2709
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04002710static int check_advise_trans_params(struct super_block *sb,
Edward Shishkincf3d0b82007-10-16 23:30:30 -07002711 struct reiserfs_journal *journal)
2712{
2713 if (journal->j_trans_max) {
2714 /* Non-default journal params.
2715 Do sanity check for them. */
2716 int ratio = 1;
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04002717 if (sb->s_blocksize < REISERFS_STANDARD_BLKSIZE)
2718 ratio = REISERFS_STANDARD_BLKSIZE / sb->s_blocksize;
Edward Shishkincf3d0b82007-10-16 23:30:30 -07002719
2720 if (journal->j_trans_max > JOURNAL_TRANS_MAX_DEFAULT / ratio ||
2721 journal->j_trans_max < JOURNAL_TRANS_MIN_DEFAULT / ratio ||
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04002722 SB_ONDISK_JOURNAL_SIZE(sb) / journal->j_trans_max <
Edward Shishkincf3d0b82007-10-16 23:30:30 -07002723 JOURNAL_MIN_RATIO) {
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04002724 reiserfs_warning(sb, "sh-462",
Jeff Mahoney45b03d52009-03-30 14:02:21 -04002725 "bad transaction max size (%u). "
2726 "FSCK?", journal->j_trans_max);
Edward Shishkincf3d0b82007-10-16 23:30:30 -07002727 return 1;
2728 }
2729 if (journal->j_max_batch != (journal->j_trans_max) *
2730 JOURNAL_MAX_BATCH_DEFAULT/JOURNAL_TRANS_MAX_DEFAULT) {
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04002731 reiserfs_warning(sb, "sh-463",
Jeff Mahoney45b03d52009-03-30 14:02:21 -04002732 "bad transaction max batch (%u). "
2733 "FSCK?", journal->j_max_batch);
Edward Shishkincf3d0b82007-10-16 23:30:30 -07002734 return 1;
2735 }
2736 } else {
2737 /* Default journal params.
2738 The file system was created by old version
2739 of mkreiserfs, so some fields contain zeros,
2740 and we need to advise proper values for them */
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04002741 if (sb->s_blocksize != REISERFS_STANDARD_BLKSIZE) {
2742 reiserfs_warning(sb, "sh-464", "bad blocksize (%u)",
2743 sb->s_blocksize);
Jeff Mahoney45b03d52009-03-30 14:02:21 -04002744 return 1;
2745 }
Edward Shishkincf3d0b82007-10-16 23:30:30 -07002746 journal->j_trans_max = JOURNAL_TRANS_MAX_DEFAULT;
2747 journal->j_max_batch = JOURNAL_MAX_BATCH_DEFAULT;
2748 journal->j_max_commit_age = JOURNAL_MAX_COMMIT_AGE;
2749 }
2750 return 0;
2751}
2752
Linus Torvalds1da177e2005-04-16 15:20:36 -07002753/*
2754** must be called once on fs mount. calls journal_read for you
2755*/
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04002756int journal_init(struct super_block *sb, const char *j_dev_name,
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002757 int old_format, unsigned int commit_max_age)
2758{
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04002759 int num_cnodes = SB_ONDISK_JOURNAL_SIZE(sb) * 2;
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002760 struct buffer_head *bhjh;
2761 struct reiserfs_super_block *rs;
2762 struct reiserfs_journal_header *jh;
2763 struct reiserfs_journal *journal;
2764 struct reiserfs_journal_list *jl;
2765 char b[BDEVNAME_SIZE];
Frederic Weisbecker98ea3f52009-12-29 21:51:15 +01002766 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002767
Frederic Weisbecker98ea3f52009-12-29 21:51:15 +01002768 /*
2769 * Unlock here to avoid various RECLAIM-FS-ON <-> IN-RECLAIM-FS
2770 * dependency inversion warnings.
2771 */
2772 reiserfs_write_unlock(sb);
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04002773 journal = SB_JOURNAL(sb) = vmalloc(sizeof(struct reiserfs_journal));
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002774 if (!journal) {
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04002775 reiserfs_warning(sb, "journal-1256",
Jeff Mahoney45b03d52009-03-30 14:02:21 -04002776 "unable to get memory for journal structure");
Frederic Weisbecker98ea3f52009-12-29 21:51:15 +01002777 reiserfs_write_lock(sb);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002778 return 1;
2779 }
2780 memset(journal, 0, sizeof(struct reiserfs_journal));
2781 INIT_LIST_HEAD(&journal->j_bitmap_nodes);
2782 INIT_LIST_HEAD(&journal->j_prealloc_list);
2783 INIT_LIST_HEAD(&journal->j_working_list);
2784 INIT_LIST_HEAD(&journal->j_journal_list);
2785 journal->j_persistent_trans = 0;
Frederic Weisbecker98ea3f52009-12-29 21:51:15 +01002786 ret = reiserfs_allocate_list_bitmaps(sb, journal->j_list_bitmap,
2787 reiserfs_bmap_count(sb));
2788 reiserfs_write_lock(sb);
2789 if (ret)
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002790 goto free_and_return;
Frederic Weisbecker98ea3f52009-12-29 21:51:15 +01002791
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04002792 allocate_bitmap_nodes(sb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002793
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002794 /* reserved for journal area support */
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04002795 SB_JOURNAL_1st_RESERVED_BLOCK(sb) = (old_format ?
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002796 REISERFS_OLD_DISK_OFFSET_IN_BYTES
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04002797 / sb->s_blocksize +
2798 reiserfs_bmap_count(sb) +
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002799 1 :
2800 REISERFS_DISK_OFFSET_IN_BYTES /
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04002801 sb->s_blocksize + 2);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002802
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002803 /* Sanity check to see is the standard journal fitting withing first bitmap
2804 (actual for small blocksizes) */
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04002805 if (!SB_ONDISK_JOURNAL_DEVICE(sb) &&
2806 (SB_JOURNAL_1st_RESERVED_BLOCK(sb) +
2807 SB_ONDISK_JOURNAL_SIZE(sb) > sb->s_blocksize * 8)) {
2808 reiserfs_warning(sb, "journal-1393",
Jeff Mahoney45b03d52009-03-30 14:02:21 -04002809 "journal does not fit for area addressed "
2810 "by first of bitmap blocks. It starts at "
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002811 "%u and its size is %u. Block size %ld",
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04002812 SB_JOURNAL_1st_RESERVED_BLOCK(sb),
2813 SB_ONDISK_JOURNAL_SIZE(sb),
2814 sb->s_blocksize);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002815 goto free_and_return;
2816 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002817
Frederic Weisbecker193be0e2009-09-17 05:31:37 +02002818 /*
2819 * We need to unlock here to avoid creating the following
2820 * dependency:
2821 * reiserfs_lock -> sysfs_mutex
2822 * Because the reiserfs mmap path creates the following dependency:
2823 * mm->mmap -> reiserfs_lock, hence we have
2824 * mm->mmap -> reiserfs_lock ->sysfs_mutex
2825 * This would ends up in a circular dependency with sysfs readdir path
2826 * which does sysfs_mutex -> mm->mmap_sem
2827 * This is fine because the reiserfs lock is useless in mount path,
2828 * at least until we call journal_begin. We keep it for paranoid
2829 * reasons.
2830 */
2831 reiserfs_write_unlock(sb);
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04002832 if (journal_init_dev(sb, journal, j_dev_name) != 0) {
Frederic Weisbecker193be0e2009-09-17 05:31:37 +02002833 reiserfs_write_lock(sb);
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04002834 reiserfs_warning(sb, "sh-462",
Jeff Mahoney45b03d52009-03-30 14:02:21 -04002835 "unable to initialize jornal device");
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002836 goto free_and_return;
2837 }
Frederic Weisbecker193be0e2009-09-17 05:31:37 +02002838 reiserfs_write_lock(sb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002839
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04002840 rs = SB_DISK_SUPER_BLOCK(sb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002841
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002842 /* read journal header */
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04002843 bhjh = journal_bread(sb,
2844 SB_ONDISK_JOURNAL_1st_BLOCK(sb) +
2845 SB_ONDISK_JOURNAL_SIZE(sb));
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002846 if (!bhjh) {
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04002847 reiserfs_warning(sb, "sh-459",
Jeff Mahoney45b03d52009-03-30 14:02:21 -04002848 "unable to read journal header");
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002849 goto free_and_return;
2850 }
2851 jh = (struct reiserfs_journal_header *)(bhjh->b_data);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002852
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002853 /* make sure that journal matches to the super block */
2854 if (is_reiserfs_jr(rs)
2855 && (le32_to_cpu(jh->jh_journal.jp_journal_magic) !=
2856 sb_jp_journal_magic(rs))) {
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04002857 reiserfs_warning(sb, "sh-460",
Jeff Mahoney45b03d52009-03-30 14:02:21 -04002858 "journal header magic %x (device %s) does "
2859 "not match to magic found in super block %x",
2860 jh->jh_journal.jp_journal_magic,
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002861 bdevname(journal->j_dev_bd, b),
2862 sb_jp_journal_magic(rs));
2863 brelse(bhjh);
2864 goto free_and_return;
2865 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002866
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002867 journal->j_trans_max = le32_to_cpu(jh->jh_journal.jp_journal_trans_max);
2868 journal->j_max_batch = le32_to_cpu(jh->jh_journal.jp_journal_max_batch);
2869 journal->j_max_commit_age =
2870 le32_to_cpu(jh->jh_journal.jp_journal_max_commit_age);
2871 journal->j_max_trans_age = JOURNAL_MAX_TRANS_AGE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002872
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04002873 if (check_advise_trans_params(sb, journal) != 0)
Edward Shishkincf3d0b82007-10-16 23:30:30 -07002874 goto free_and_return;
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002875 journal->j_default_max_commit_age = journal->j_max_commit_age;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002876
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002877 if (commit_max_age != 0) {
2878 journal->j_max_commit_age = commit_max_age;
2879 journal->j_max_trans_age = commit_max_age;
2880 }
2881
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04002882 reiserfs_info(sb, "journal params: device %s, size %u, "
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002883 "journal first block %u, max trans len %u, max batch %u, "
2884 "max commit age %u, max trans age %u\n",
2885 bdevname(journal->j_dev_bd, b),
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04002886 SB_ONDISK_JOURNAL_SIZE(sb),
2887 SB_ONDISK_JOURNAL_1st_BLOCK(sb),
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002888 journal->j_trans_max,
2889 journal->j_max_batch,
2890 journal->j_max_commit_age, journal->j_max_trans_age);
2891
2892 brelse(bhjh);
2893
2894 journal->j_list_bitmap_index = 0;
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04002895 journal_list_init(sb);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002896
2897 memset(journal->j_list_hash_table, 0,
2898 JOURNAL_HASH_SIZE * sizeof(struct reiserfs_journal_cnode *));
2899
2900 INIT_LIST_HEAD(&journal->j_dirty_buffers);
2901 spin_lock_init(&journal->j_dirty_buffers_lock);
2902
2903 journal->j_start = 0;
2904 journal->j_len = 0;
2905 journal->j_len_alloc = 0;
2906 atomic_set(&(journal->j_wcount), 0);
2907 atomic_set(&(journal->j_async_throttle), 0);
2908 journal->j_bcount = 0;
2909 journal->j_trans_start_time = 0;
2910 journal->j_last = NULL;
2911 journal->j_first = NULL;
2912 init_waitqueue_head(&(journal->j_join_wait));
Jeff Mahoneyf68215c2008-07-25 01:46:38 -07002913 mutex_init(&journal->j_mutex);
Jeff Mahoneyafe70252008-07-25 01:46:39 -07002914 mutex_init(&journal->j_flush_mutex);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002915
2916 journal->j_trans_id = 10;
2917 journal->j_mount_id = 10;
2918 journal->j_state = 0;
2919 atomic_set(&(journal->j_jlock), 0);
Frederic Weisbeckerbbec9192010-01-28 13:43:50 +01002920 reiserfs_write_unlock(sb);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002921 journal->j_cnode_free_list = allocate_cnodes(num_cnodes);
Frederic Weisbeckerbbec9192010-01-28 13:43:50 +01002922 reiserfs_write_lock(sb);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002923 journal->j_cnode_free_orig = journal->j_cnode_free_list;
2924 journal->j_cnode_free = journal->j_cnode_free_list ? num_cnodes : 0;
2925 journal->j_cnode_used = 0;
2926 journal->j_must_wait = 0;
2927
Jeff Mahoney576f6d72005-11-29 19:34:39 -08002928 if (journal->j_cnode_free == 0) {
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04002929 reiserfs_warning(sb, "journal-2004", "Journal cnode memory "
Jeff Mahoney576f6d72005-11-29 19:34:39 -08002930 "allocation failed (%ld bytes). Journal is "
2931 "too large for available memory. Usually "
2932 "this is due to a journal that is too large.",
2933 sizeof (struct reiserfs_journal_cnode) * num_cnodes);
2934 goto free_and_return;
2935 }
2936
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04002937 init_journal_hash(sb);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002938 jl = journal->j_current_jl;
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04002939 jl->j_list_bitmap = get_list_bitmap(sb, jl);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002940 if (!jl->j_list_bitmap) {
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04002941 reiserfs_warning(sb, "journal-2005",
Jeff Mahoney45b03d52009-03-30 14:02:21 -04002942 "get_list_bitmap failed for journal list 0");
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002943 goto free_and_return;
2944 }
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04002945 if (journal_read(sb) < 0) {
2946 reiserfs_warning(sb, "reiserfs-2006",
Jeff Mahoney45b03d52009-03-30 14:02:21 -04002947 "Replay Failure, unable to mount");
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002948 goto free_and_return;
2949 }
2950
2951 reiserfs_mounted_fs_count++;
Frederic Weisbecker48f6ba52009-10-05 16:31:37 +02002952 if (reiserfs_mounted_fs_count <= 1) {
2953 reiserfs_write_unlock(sb);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002954 commit_wq = create_workqueue("reiserfs");
Frederic Weisbecker48f6ba52009-10-05 16:31:37 +02002955 reiserfs_write_lock(sb);
2956 }
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002957
David Howellsc4028952006-11-22 14:57:56 +00002958 INIT_DELAYED_WORK(&journal->j_work, flush_async_commits);
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04002959 journal->j_work_sb = sb;
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002960 return 0;
2961 free_and_return:
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04002962 free_journal_ram(sb);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002963 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002964}
2965
2966/*
2967** test for a polite end of the current transaction. Used by file_write, and should
2968** be used by delete to make sure they don't write more than can fit inside a single
2969** transaction
2970*/
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002971int journal_transaction_should_end(struct reiserfs_transaction_handle *th,
2972 int new_alloc)
2973{
2974 struct reiserfs_journal *journal = SB_JOURNAL(th->t_super);
2975 time_t now = get_seconds();
2976 /* cannot restart while nested */
2977 BUG_ON(!th->t_trans_id);
2978 if (th->t_refcount > 1)
2979 return 0;
2980 if (journal->j_must_wait > 0 ||
2981 (journal->j_len_alloc + new_alloc) >= journal->j_max_batch ||
2982 atomic_read(&(journal->j_jlock)) ||
2983 (now - journal->j_trans_start_time) > journal->j_max_trans_age ||
2984 journal->j_cnode_free < (journal->j_trans_max * 3)) {
2985 return 1;
2986 }
Chris Mason6ae1ea42006-02-01 03:06:50 -08002987 /* protected by the BKL here */
2988 journal->j_len_alloc += new_alloc;
2989 th->t_blocks_allocated += new_alloc ;
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002990 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002991}
2992
Jeff Mahoney0222e652009-03-30 14:02:44 -04002993/* this must be called inside a transaction, and requires the
Linus Torvalds1da177e2005-04-16 15:20:36 -07002994** kernel_lock to be held
2995*/
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002996void reiserfs_block_writes(struct reiserfs_transaction_handle *th)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002997{
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002998 struct reiserfs_journal *journal = SB_JOURNAL(th->t_super);
2999 BUG_ON(!th->t_trans_id);
3000 journal->j_must_wait = 1;
3001 set_bit(J_WRITERS_BLOCKED, &journal->j_state);
3002 return;
3003}
3004
3005/* this must be called without a transaction started, and does not
3006** require BKL
3007*/
3008void reiserfs_allow_writes(struct super_block *s)
3009{
3010 struct reiserfs_journal *journal = SB_JOURNAL(s);
3011 clear_bit(J_WRITERS_BLOCKED, &journal->j_state);
3012 wake_up(&journal->j_join_wait);
3013}
3014
3015/* this must be called without a transaction started, and does not
3016** require BKL
3017*/
3018void reiserfs_wait_on_write_block(struct super_block *s)
3019{
3020 struct reiserfs_journal *journal = SB_JOURNAL(s);
3021 wait_event(journal->j_join_wait,
3022 !test_bit(J_WRITERS_BLOCKED, &journal->j_state));
3023}
3024
3025static void queue_log_writer(struct super_block *s)
3026{
3027 wait_queue_t wait;
3028 struct reiserfs_journal *journal = SB_JOURNAL(s);
3029 set_bit(J_WRITERS_QUEUED, &journal->j_state);
3030
3031 /*
3032 * we don't want to use wait_event here because
3033 * we only want to wait once.
3034 */
3035 init_waitqueue_entry(&wait, current);
3036 add_wait_queue(&journal->j_join_wait, &wait);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003037 set_current_state(TASK_UNINTERRUPTIBLE);
Frederic Weisbecker8ebc4232009-04-07 04:19:49 +02003038 if (test_bit(J_WRITERS_QUEUED, &journal->j_state)) {
3039 reiserfs_write_unlock(s);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003040 schedule();
Frederic Weisbecker8ebc4232009-04-07 04:19:49 +02003041 reiserfs_write_lock(s);
3042 }
Milind Arun Choudhary5ab2f7e2007-05-08 00:30:51 -07003043 __set_current_state(TASK_RUNNING);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003044 remove_wait_queue(&journal->j_join_wait, &wait);
3045}
3046
3047static void wake_queued_writers(struct super_block *s)
3048{
3049 struct reiserfs_journal *journal = SB_JOURNAL(s);
3050 if (test_and_clear_bit(J_WRITERS_QUEUED, &journal->j_state))
3051 wake_up(&journal->j_join_wait);
3052}
3053
Jeff Mahoney600ed412009-03-30 14:02:17 -04003054static void let_transaction_grow(struct super_block *sb, unsigned int trans_id)
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003055{
3056 struct reiserfs_journal *journal = SB_JOURNAL(sb);
3057 unsigned long bcount = journal->j_bcount;
3058 while (1) {
Frederic Weisbecker8ebc4232009-04-07 04:19:49 +02003059 reiserfs_write_unlock(sb);
Nishanth Aravamudan041e0e32005-09-10 00:27:23 -07003060 schedule_timeout_uninterruptible(1);
Frederic Weisbecker8ebc4232009-04-07 04:19:49 +02003061 reiserfs_write_lock(sb);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003062 journal->j_current_jl->j_state |= LIST_COMMIT_PENDING;
3063 while ((atomic_read(&journal->j_wcount) > 0 ||
3064 atomic_read(&journal->j_jlock)) &&
3065 journal->j_trans_id == trans_id) {
3066 queue_log_writer(sb);
3067 }
3068 if (journal->j_trans_id != trans_id)
3069 break;
3070 if (bcount == journal->j_bcount)
3071 break;
3072 bcount = journal->j_bcount;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003073 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003074}
3075
3076/* join == true if you must join an existing transaction.
3077** join == false if you can deal with waiting for others to finish
3078**
3079** this will block until the transaction is joinable. send the number of blocks you
3080** expect to use in nblocks.
3081*/
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003082static int do_journal_begin_r(struct reiserfs_transaction_handle *th,
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04003083 struct super_block *sb, unsigned long nblocks,
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003084 int join)
3085{
3086 time_t now = get_seconds();
Jeff Mahoney600ed412009-03-30 14:02:17 -04003087 unsigned int old_trans_id;
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04003088 struct reiserfs_journal *journal = SB_JOURNAL(sb);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003089 struct reiserfs_transaction_handle myth;
3090 int sched_count = 0;
3091 int retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003092
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04003093 reiserfs_check_lock_depth(sb, "journal_begin");
Eric Sesterhenn14a61442006-10-03 23:36:38 +02003094 BUG_ON(nblocks > journal->j_trans_max);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003095
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04003096 PROC_INFO_INC(sb, journal.journal_being);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003097 /* set here for journal_join */
3098 th->t_refcount = 1;
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04003099 th->t_super = sb;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003100
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003101 relock:
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04003102 lock_journal(sb);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003103 if (join != JBEGIN_ABORT && reiserfs_is_journal_aborted(journal)) {
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04003104 unlock_journal(sb);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003105 retval = journal->j_errno;
3106 goto out_fail;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003107 }
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003108 journal->j_bcount++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003109
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003110 if (test_bit(J_WRITERS_BLOCKED, &journal->j_state)) {
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04003111 unlock_journal(sb);
Frederic Weisbecker8ebc4232009-04-07 04:19:49 +02003112 reiserfs_write_unlock(sb);
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04003113 reiserfs_wait_on_write_block(sb);
Frederic Weisbecker8ebc4232009-04-07 04:19:49 +02003114 reiserfs_write_lock(sb);
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04003115 PROC_INFO_INC(sb, journal.journal_relock_writers);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003116 goto relock;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003117 }
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003118 now = get_seconds();
Linus Torvalds1da177e2005-04-16 15:20:36 -07003119
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003120 /* if there is no room in the journal OR
Jeff Mahoney0222e652009-03-30 14:02:44 -04003121 ** 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 -07003122 ** we don't sleep if there aren't other writers
3123 */
3124
3125 if ((!join && journal->j_must_wait > 0) ||
3126 (!join
3127 && (journal->j_len_alloc + nblocks + 2) >= journal->j_max_batch)
3128 || (!join && atomic_read(&journal->j_wcount) > 0
3129 && journal->j_trans_start_time > 0
3130 && (now - journal->j_trans_start_time) >
3131 journal->j_max_trans_age) || (!join
3132 && atomic_read(&journal->j_jlock))
3133 || (!join && journal->j_cnode_free < (journal->j_trans_max * 3))) {
3134
3135 old_trans_id = journal->j_trans_id;
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04003136 unlock_journal(sb); /* allow others to finish this transaction */
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003137
3138 if (!join && (journal->j_len_alloc + nblocks + 2) >=
3139 journal->j_max_batch &&
3140 ((journal->j_len + nblocks + 2) * 100) <
3141 (journal->j_len_alloc * 75)) {
3142 if (atomic_read(&journal->j_wcount) > 10) {
3143 sched_count++;
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04003144 queue_log_writer(sb);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003145 goto relock;
3146 }
3147 }
3148 /* don't mess with joining the transaction if all we have to do is
3149 * wait for someone else to do a commit
3150 */
3151 if (atomic_read(&journal->j_jlock)) {
3152 while (journal->j_trans_id == old_trans_id &&
3153 atomic_read(&journal->j_jlock)) {
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04003154 queue_log_writer(sb);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003155 }
3156 goto relock;
3157 }
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04003158 retval = journal_join(&myth, sb, 1);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003159 if (retval)
3160 goto out_fail;
3161
3162 /* someone might have ended the transaction while we joined */
3163 if (old_trans_id != journal->j_trans_id) {
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04003164 retval = do_journal_end(&myth, sb, 1, 0);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003165 } else {
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04003166 retval = do_journal_end(&myth, sb, 1, COMMIT_NOW);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003167 }
3168
3169 if (retval)
3170 goto out_fail;
3171
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04003172 PROC_INFO_INC(sb, journal.journal_relock_wcount);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003173 goto relock;
3174 }
3175 /* we are the first writer, set trans_id */
3176 if (journal->j_trans_start_time == 0) {
3177 journal->j_trans_start_time = get_seconds();
3178 }
3179 atomic_inc(&(journal->j_wcount));
3180 journal->j_len_alloc += nblocks;
3181 th->t_blocks_logged = 0;
3182 th->t_blocks_allocated = nblocks;
3183 th->t_trans_id = journal->j_trans_id;
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04003184 unlock_journal(sb);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003185 INIT_LIST_HEAD(&th->t_list);
3186 get_fs_excl();
3187 return 0;
3188
3189 out_fail:
3190 memset(th, 0, sizeof(*th));
3191 /* Re-set th->t_super, so we can properly keep track of how many
3192 * persistent transactions there are. We need to do this so if this
3193 * call is part of a failed restart_transaction, we can free it later */
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04003194 th->t_super = sb;
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003195 return retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003196}
3197
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003198struct reiserfs_transaction_handle *reiserfs_persistent_transaction(struct
3199 super_block
3200 *s,
3201 int nblocks)
3202{
3203 int ret;
3204 struct reiserfs_transaction_handle *th;
3205
3206 /* if we're nesting into an existing transaction. It will be
3207 ** persistent on its own
3208 */
3209 if (reiserfs_transaction_running(s)) {
3210 th = current->journal_info;
3211 th->t_refcount++;
Eric Sesterhenn14a61442006-10-03 23:36:38 +02003212 BUG_ON(th->t_refcount < 2);
3213
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003214 return th;
3215 }
Pekka Enbergd739b422006-02-01 03:06:43 -08003216 th = kmalloc(sizeof(struct reiserfs_transaction_handle), GFP_NOFS);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003217 if (!th)
3218 return NULL;
3219 ret = journal_begin(th, s, nblocks);
3220 if (ret) {
Pekka Enbergd739b422006-02-01 03:06:43 -08003221 kfree(th);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003222 return NULL;
3223 }
3224
3225 SB_JOURNAL(s)->j_persistent_trans++;
3226 return th;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003227}
3228
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003229int reiserfs_end_persistent_transaction(struct reiserfs_transaction_handle *th)
3230{
3231 struct super_block *s = th->t_super;
3232 int ret = 0;
3233 if (th->t_trans_id)
3234 ret = journal_end(th, th->t_super, th->t_blocks_allocated);
3235 else
3236 ret = -EIO;
3237 if (th->t_refcount == 0) {
3238 SB_JOURNAL(s)->j_persistent_trans--;
Pekka Enbergd739b422006-02-01 03:06:43 -08003239 kfree(th);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003240 }
3241 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003242}
3243
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003244static int journal_join(struct reiserfs_transaction_handle *th,
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04003245 struct super_block *sb, unsigned long nblocks)
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003246{
3247 struct reiserfs_transaction_handle *cur_th = current->journal_info;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003248
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003249 /* this keeps do_journal_end from NULLing out the current->journal_info
3250 ** pointer
3251 */
3252 th->t_handle_save = cur_th;
Eric Sesterhenn14a61442006-10-03 23:36:38 +02003253 BUG_ON(cur_th && cur_th->t_refcount > 1);
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04003254 return do_journal_begin_r(th, sb, nblocks, JBEGIN_JOIN);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003255}
3256
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003257int journal_join_abort(struct reiserfs_transaction_handle *th,
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04003258 struct super_block *sb, unsigned long nblocks)
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003259{
3260 struct reiserfs_transaction_handle *cur_th = current->journal_info;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003261
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003262 /* this keeps do_journal_end from NULLing out the current->journal_info
3263 ** pointer
3264 */
3265 th->t_handle_save = cur_th;
Eric Sesterhenn14a61442006-10-03 23:36:38 +02003266 BUG_ON(cur_th && cur_th->t_refcount > 1);
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04003267 return do_journal_begin_r(th, sb, nblocks, JBEGIN_ABORT);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003268}
3269
3270int journal_begin(struct reiserfs_transaction_handle *th,
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04003271 struct super_block *sb, unsigned long nblocks)
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003272{
3273 struct reiserfs_transaction_handle *cur_th = current->journal_info;
3274 int ret;
3275
3276 th->t_handle_save = NULL;
3277 if (cur_th) {
3278 /* we are nesting into the current transaction */
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04003279 if (cur_th->t_super == sb) {
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003280 BUG_ON(!cur_th->t_refcount);
3281 cur_th->t_refcount++;
3282 memcpy(th, cur_th, sizeof(*th));
3283 if (th->t_refcount <= 1)
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04003284 reiserfs_warning(sb, "reiserfs-2005",
Jeff Mahoney45b03d52009-03-30 14:02:21 -04003285 "BAD: refcount <= 1, but "
3286 "journal_info != 0");
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003287 return 0;
3288 } else {
3289 /* we've ended up with a handle from a different filesystem.
3290 ** save it and restore on journal_end. This should never
3291 ** really happen...
3292 */
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04003293 reiserfs_warning(sb, "clm-2100",
Jeff Mahoney45b03d52009-03-30 14:02:21 -04003294 "nesting info a different FS");
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003295 th->t_handle_save = current->journal_info;
3296 current->journal_info = th;
3297 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003298 } else {
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003299 current->journal_info = th;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003300 }
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04003301 ret = do_journal_begin_r(th, sb, nblocks, JBEGIN_REG);
Eric Sesterhenn14a61442006-10-03 23:36:38 +02003302 BUG_ON(current->journal_info != th);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003303
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003304 /* I guess this boils down to being the reciprocal of clm-2100 above.
3305 * If do_journal_begin_r fails, we need to put it back, since journal_end
3306 * won't be called to do it. */
3307 if (ret)
3308 current->journal_info = th->t_handle_save;
3309 else
3310 BUG_ON(!th->t_refcount);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003311
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003312 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003313}
3314
3315/*
3316** puts bh into the current transaction. If it was already there, reorders removes the
3317** old pointers from the hash, and puts new ones in (to make sure replay happen in the right order).
3318**
3319** if it was dirty, cleans and files onto the clean list. I can't let it be dirty again until the
3320** transaction is committed.
Jeff Mahoney0222e652009-03-30 14:02:44 -04003321**
Linus Torvalds1da177e2005-04-16 15:20:36 -07003322** if j_len, is bigger than j_len_alloc, it pushes j_len_alloc to 10 + j_len.
3323*/
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003324int journal_mark_dirty(struct reiserfs_transaction_handle *th,
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04003325 struct super_block *sb, struct buffer_head *bh)
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003326{
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04003327 struct reiserfs_journal *journal = SB_JOURNAL(sb);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003328 struct reiserfs_journal_cnode *cn = NULL;
3329 int count_already_incd = 0;
3330 int prepared = 0;
3331 BUG_ON(!th->t_trans_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003332
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04003333 PROC_INFO_INC(sb, journal.mark_dirty);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003334 if (th->t_trans_id != journal->j_trans_id) {
Jeff Mahoneyc3a9c212009-03-30 14:02:25 -04003335 reiserfs_panic(th->t_super, "journal-1577",
3336 "handle trans id %ld != current trans id %ld",
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003337 th->t_trans_id, journal->j_trans_id);
3338 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003339
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04003340 sb->s_dirt = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003341
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003342 prepared = test_clear_buffer_journal_prepared(bh);
3343 clear_buffer_journal_restore_dirty(bh);
3344 /* already in this transaction, we are done */
3345 if (buffer_journaled(bh)) {
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04003346 PROC_INFO_INC(sb, journal.mark_dirty_already);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003347 return 0;
3348 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003349
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003350 /* this must be turned into a panic instead of a warning. We can't allow
3351 ** a dirty or journal_dirty or locked buffer to be logged, as some changes
3352 ** could get to disk too early. NOT GOOD.
3353 */
3354 if (!prepared || buffer_dirty(bh)) {
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04003355 reiserfs_warning(sb, "journal-1777",
Jeff Mahoney45b03d52009-03-30 14:02:21 -04003356 "buffer %llu bad state "
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003357 "%cPREPARED %cLOCKED %cDIRTY %cJDIRTY_WAIT",
3358 (unsigned long long)bh->b_blocknr,
3359 prepared ? ' ' : '!',
3360 buffer_locked(bh) ? ' ' : '!',
3361 buffer_dirty(bh) ? ' ' : '!',
3362 buffer_journal_dirty(bh) ? ' ' : '!');
3363 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003364
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003365 if (atomic_read(&(journal->j_wcount)) <= 0) {
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04003366 reiserfs_warning(sb, "journal-1409",
Jeff Mahoney45b03d52009-03-30 14:02:21 -04003367 "returning because j_wcount was %d",
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003368 atomic_read(&(journal->j_wcount)));
3369 return 1;
3370 }
Jeff Mahoney0222e652009-03-30 14:02:44 -04003371 /* this error means I've screwed up, and we've overflowed the transaction.
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003372 ** Nothing can be done here, except make the FS readonly or panic.
3373 */
3374 if (journal->j_len >= journal->j_trans_max) {
Jeff Mahoneyc3a9c212009-03-30 14:02:25 -04003375 reiserfs_panic(th->t_super, "journal-1413",
3376 "j_len (%lu) is too big",
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003377 journal->j_len);
3378 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003379
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003380 if (buffer_journal_dirty(bh)) {
3381 count_already_incd = 1;
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04003382 PROC_INFO_INC(sb, journal.mark_dirty_notjournal);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003383 clear_buffer_journal_dirty(bh);
3384 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003385
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003386 if (journal->j_len > journal->j_len_alloc) {
3387 journal->j_len_alloc = journal->j_len + JOURNAL_PER_BALANCE_CNT;
3388 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003389
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003390 set_buffer_journaled(bh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003391
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003392 /* now put this guy on the end */
3393 if (!cn) {
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04003394 cn = get_cnode(sb);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003395 if (!cn) {
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04003396 reiserfs_panic(sb, "journal-4", "get_cnode failed!");
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003397 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003398
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003399 if (th->t_blocks_logged == th->t_blocks_allocated) {
3400 th->t_blocks_allocated += JOURNAL_PER_BALANCE_CNT;
3401 journal->j_len_alloc += JOURNAL_PER_BALANCE_CNT;
3402 }
3403 th->t_blocks_logged++;
3404 journal->j_len++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003405
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003406 cn->bh = bh;
3407 cn->blocknr = bh->b_blocknr;
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04003408 cn->sb = sb;
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003409 cn->jlist = NULL;
3410 insert_journal_hash(journal->j_hash_table, cn);
3411 if (!count_already_incd) {
3412 get_bh(bh);
3413 }
3414 }
3415 cn->next = NULL;
3416 cn->prev = journal->j_last;
3417 cn->bh = bh;
3418 if (journal->j_last) {
3419 journal->j_last->next = cn;
3420 journal->j_last = cn;
3421 } else {
3422 journal->j_first = cn;
3423 journal->j_last = cn;
3424 }
3425 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003426}
3427
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003428int journal_end(struct reiserfs_transaction_handle *th,
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04003429 struct super_block *sb, unsigned long nblocks)
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003430{
3431 if (!current->journal_info && th->t_refcount > 1)
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04003432 reiserfs_warning(sb, "REISER-NESTING",
Jeff Mahoney45b03d52009-03-30 14:02:21 -04003433 "th NULL, refcount %d", th->t_refcount);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003434
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003435 if (!th->t_trans_id) {
3436 WARN_ON(1);
3437 return -EIO;
3438 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003439
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003440 th->t_refcount--;
3441 if (th->t_refcount > 0) {
3442 struct reiserfs_transaction_handle *cur_th =
3443 current->journal_info;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003444
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003445 /* we aren't allowed to close a nested transaction on a different
3446 ** filesystem from the one in the task struct
3447 */
Eric Sesterhenn14a61442006-10-03 23:36:38 +02003448 BUG_ON(cur_th->t_super != th->t_super);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003449
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003450 if (th != cur_th) {
3451 memcpy(current->journal_info, th, sizeof(*th));
3452 th->t_trans_id = 0;
3453 }
3454 return 0;
3455 } else {
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04003456 return do_journal_end(th, sb, nblocks, 0);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003457 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003458}
3459
Jeff Mahoney0222e652009-03-30 14:02:44 -04003460/* removes from the current transaction, relsing and descrementing any counters.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003461** also files the removed buffer directly onto the clean list
3462**
3463** called by journal_mark_freed when a block has been deleted
3464**
3465** returns 1 if it cleaned and relsed the buffer. 0 otherwise
3466*/
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04003467static int remove_from_transaction(struct super_block *sb,
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003468 b_blocknr_t blocknr, int already_cleaned)
3469{
3470 struct buffer_head *bh;
3471 struct reiserfs_journal_cnode *cn;
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04003472 struct reiserfs_journal *journal = SB_JOURNAL(sb);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003473 int ret = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003474
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04003475 cn = get_journal_hash_dev(sb, journal->j_hash_table, blocknr);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003476 if (!cn || !cn->bh) {
3477 return ret;
3478 }
3479 bh = cn->bh;
3480 if (cn->prev) {
3481 cn->prev->next = cn->next;
3482 }
3483 if (cn->next) {
3484 cn->next->prev = cn->prev;
3485 }
3486 if (cn == journal->j_first) {
3487 journal->j_first = cn->next;
3488 }
3489 if (cn == journal->j_last) {
3490 journal->j_last = cn->prev;
3491 }
3492 if (bh)
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04003493 remove_journal_hash(sb, journal->j_hash_table, NULL,
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003494 bh->b_blocknr, 0);
3495 clear_buffer_journaled(bh); /* don't log this one */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003496
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003497 if (!already_cleaned) {
3498 clear_buffer_journal_dirty(bh);
3499 clear_buffer_dirty(bh);
3500 clear_buffer_journal_test(bh);
3501 put_bh(bh);
3502 if (atomic_read(&(bh->b_count)) < 0) {
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04003503 reiserfs_warning(sb, "journal-1752",
Jeff Mahoney45b03d52009-03-30 14:02:21 -04003504 "b_count < 0");
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003505 }
3506 ret = 1;
3507 }
3508 journal->j_len--;
3509 journal->j_len_alloc--;
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04003510 free_cnode(sb, cn);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003511 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003512}
3513
3514/*
3515** for any cnode in a journal list, it can only be dirtied of all the
Matt LaPlante0779bf22006-11-30 05:24:39 +01003516** transactions that include it are committed to disk.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003517** this checks through each transaction, and returns 1 if you are allowed to dirty,
3518** and 0 if you aren't
3519**
3520** it is called by dirty_journal_list, which is called after flush_commit_list has gotten all the log
3521** blocks for a given transaction on disk
3522**
3523*/
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003524static int can_dirty(struct reiserfs_journal_cnode *cn)
3525{
3526 struct super_block *sb = cn->sb;
3527 b_blocknr_t blocknr = cn->blocknr;
3528 struct reiserfs_journal_cnode *cur = cn->hprev;
3529 int can_dirty = 1;
3530
3531 /* first test hprev. These are all newer than cn, so any node here
3532 ** with the same block number and dev means this node can't be sent
3533 ** to disk right now.
3534 */
3535 while (cur && can_dirty) {
3536 if (cur->jlist && cur->bh && cur->blocknr && cur->sb == sb &&
3537 cur->blocknr == blocknr) {
3538 can_dirty = 0;
3539 }
3540 cur = cur->hprev;
3541 }
3542 /* then test hnext. These are all older than cn. As long as they
3543 ** are committed to the log, it is safe to write cn to disk
3544 */
3545 cur = cn->hnext;
3546 while (cur && can_dirty) {
3547 if (cur->jlist && cur->jlist->j_len > 0 &&
3548 atomic_read(&(cur->jlist->j_commit_left)) > 0 && cur->bh &&
3549 cur->blocknr && cur->sb == sb && cur->blocknr == blocknr) {
3550 can_dirty = 0;
3551 }
3552 cur = cur->hnext;
3553 }
3554 return can_dirty;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003555}
3556
3557/* syncs the commit blocks, but does not force the real buffers to disk
Jeff Mahoney0222e652009-03-30 14:02:44 -04003558** will wait until the current transaction is done/committed before returning
Linus Torvalds1da177e2005-04-16 15:20:36 -07003559*/
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003560int journal_end_sync(struct reiserfs_transaction_handle *th,
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04003561 struct super_block *sb, unsigned long nblocks)
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003562{
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04003563 struct reiserfs_journal *journal = SB_JOURNAL(sb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003564
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003565 BUG_ON(!th->t_trans_id);
3566 /* you can sync while nested, very, very bad */
Eric Sesterhenn14a61442006-10-03 23:36:38 +02003567 BUG_ON(th->t_refcount > 1);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003568 if (journal->j_len == 0) {
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04003569 reiserfs_prepare_for_journal(sb, SB_BUFFER_WITH_SB(sb),
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003570 1);
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04003571 journal_mark_dirty(th, sb, SB_BUFFER_WITH_SB(sb));
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003572 }
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04003573 return do_journal_end(th, sb, nblocks, COMMIT_NOW | WAIT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003574}
3575
3576/*
3577** writeback the pending async commits to disk
3578*/
David Howellsc4028952006-11-22 14:57:56 +00003579static void flush_async_commits(struct work_struct *work)
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003580{
David Howellsc4028952006-11-22 14:57:56 +00003581 struct reiserfs_journal *journal =
3582 container_of(work, struct reiserfs_journal, j_work.work);
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04003583 struct super_block *sb = journal->j_work_sb;
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003584 struct reiserfs_journal_list *jl;
3585 struct list_head *entry;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003586
Frederic Weisbecker8ebc4232009-04-07 04:19:49 +02003587 reiserfs_write_lock(sb);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003588 if (!list_empty(&journal->j_journal_list)) {
3589 /* last entry is the youngest, commit it and you get everything */
3590 entry = journal->j_journal_list.prev;
3591 jl = JOURNAL_LIST_ENTRY(entry);
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04003592 flush_commit_list(sb, jl, 1);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003593 }
Frederic Weisbecker8ebc4232009-04-07 04:19:49 +02003594 reiserfs_write_unlock(sb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003595}
3596
3597/*
3598** flushes any old transactions to disk
3599** ends the current transaction if it is too old
3600*/
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04003601int reiserfs_flush_old_commits(struct super_block *sb)
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003602{
3603 time_t now;
3604 struct reiserfs_transaction_handle th;
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04003605 struct reiserfs_journal *journal = SB_JOURNAL(sb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003606
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003607 now = get_seconds();
3608 /* safety check so we don't flush while we are replaying the log during
3609 * mount
3610 */
3611 if (list_empty(&journal->j_journal_list)) {
3612 return 0;
3613 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003614
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003615 /* check the current transaction. If there are no writers, and it is
3616 * too old, finish it, and force the commit blocks to disk
3617 */
3618 if (atomic_read(&journal->j_wcount) <= 0 &&
3619 journal->j_trans_start_time > 0 &&
3620 journal->j_len > 0 &&
3621 (now - journal->j_trans_start_time) > journal->j_max_trans_age) {
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04003622 if (!journal_join(&th, sb, 1)) {
3623 reiserfs_prepare_for_journal(sb,
3624 SB_BUFFER_WITH_SB(sb),
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003625 1);
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04003626 journal_mark_dirty(&th, sb,
3627 SB_BUFFER_WITH_SB(sb));
Linus Torvalds1da177e2005-04-16 15:20:36 -07003628
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003629 /* we're only being called from kreiserfsd, it makes no sense to do
3630 ** an async commit so that kreiserfsd can do it later
3631 */
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04003632 do_journal_end(&th, sb, 1, COMMIT_NOW | WAIT);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003633 }
3634 }
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04003635 return sb->s_dirt;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003636}
3637
3638/*
3639** 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 -04003640**
3641** 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 -07003642** the writers are done. By the time it wakes up, the transaction it was called has already ended, so it just
3643** flushes the commit list and returns 0.
3644**
3645** 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 -04003646**
Linus Torvalds1da177e2005-04-16 15:20:36 -07003647** Note, we can't allow the journal_end to proceed while there are still writers in the log.
3648*/
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003649static int check_journal_end(struct reiserfs_transaction_handle *th,
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04003650 struct super_block *sb, unsigned long nblocks,
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003651 int flags)
3652{
Linus Torvalds1da177e2005-04-16 15:20:36 -07003653
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003654 time_t now;
3655 int flush = flags & FLUSH_ALL;
3656 int commit_now = flags & COMMIT_NOW;
3657 int wait_on_commit = flags & WAIT;
3658 struct reiserfs_journal_list *jl;
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04003659 struct reiserfs_journal *journal = SB_JOURNAL(sb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003660
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003661 BUG_ON(!th->t_trans_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003662
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003663 if (th->t_trans_id != journal->j_trans_id) {
Jeff Mahoneyc3a9c212009-03-30 14:02:25 -04003664 reiserfs_panic(th->t_super, "journal-1577",
3665 "handle trans id %ld != current trans id %ld",
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003666 th->t_trans_id, journal->j_trans_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003667 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003668
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003669 journal->j_len_alloc -= (th->t_blocks_allocated - th->t_blocks_logged);
3670 if (atomic_read(&(journal->j_wcount)) > 0) { /* <= 0 is allowed. unmounting might not call begin */
3671 atomic_dec(&(journal->j_wcount));
3672 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003673
Jeff Mahoney0222e652009-03-30 14:02:44 -04003674 /* 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 -07003675 ** will be dealt with by next transaction that actually writes something, but should be taken
3676 ** care of in this trans
3677 */
Eric Sesterhenn14a61442006-10-03 23:36:38 +02003678 BUG_ON(journal->j_len == 0);
3679
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003680 /* if wcount > 0, and we are called to with flush or commit_now,
3681 ** we wait on j_join_wait. We will wake up when the last writer has
3682 ** finished the transaction, and started it on its way to the disk.
Jeff Mahoney0222e652009-03-30 14:02:44 -04003683 ** Then, we flush the commit or journal list, and just return 0
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003684 ** because the rest of journal end was already done for this transaction.
3685 */
3686 if (atomic_read(&(journal->j_wcount)) > 0) {
3687 if (flush || commit_now) {
3688 unsigned trans_id;
3689
3690 jl = journal->j_current_jl;
3691 trans_id = jl->j_trans_id;
3692 if (wait_on_commit)
3693 jl->j_state |= LIST_COMMIT_PENDING;
3694 atomic_set(&(journal->j_jlock), 1);
3695 if (flush) {
3696 journal->j_next_full_flush = 1;
3697 }
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04003698 unlock_journal(sb);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003699
3700 /* sleep while the current transaction is still j_jlocked */
3701 while (journal->j_trans_id == trans_id) {
3702 if (atomic_read(&journal->j_jlock)) {
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04003703 queue_log_writer(sb);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003704 } else {
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04003705 lock_journal(sb);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003706 if (journal->j_trans_id == trans_id) {
3707 atomic_set(&(journal->j_jlock),
3708 1);
3709 }
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04003710 unlock_journal(sb);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003711 }
3712 }
Eric Sesterhenn14a61442006-10-03 23:36:38 +02003713 BUG_ON(journal->j_trans_id == trans_id);
3714
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003715 if (commit_now
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04003716 && journal_list_still_alive(sb, trans_id)
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003717 && wait_on_commit) {
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04003718 flush_commit_list(sb, jl, 1);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003719 }
3720 return 0;
3721 }
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04003722 unlock_journal(sb);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003723 return 0;
3724 }
3725
3726 /* deal with old transactions where we are the last writers */
3727 now = get_seconds();
3728 if ((now - journal->j_trans_start_time) > journal->j_max_trans_age) {
3729 commit_now = 1;
3730 journal->j_next_async_flush = 1;
3731 }
3732 /* don't batch when someone is waiting on j_join_wait */
3733 /* don't batch when syncing the commit or flushing the whole trans */
3734 if (!(journal->j_must_wait > 0) && !(atomic_read(&(journal->j_jlock)))
3735 && !flush && !commit_now && (journal->j_len < journal->j_max_batch)
3736 && journal->j_len_alloc < journal->j_max_batch
3737 && journal->j_cnode_free > (journal->j_trans_max * 3)) {
3738 journal->j_bcount++;
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04003739 unlock_journal(sb);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003740 return 0;
3741 }
3742
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04003743 if (journal->j_start > SB_ONDISK_JOURNAL_SIZE(sb)) {
3744 reiserfs_panic(sb, "journal-003",
Jeff Mahoneyc3a9c212009-03-30 14:02:25 -04003745 "j_start (%ld) is too high",
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003746 journal->j_start);
3747 }
3748 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003749}
3750
3751/*
3752** Does all the work that makes deleting blocks safe.
3753** 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 -04003754**
Linus Torvalds1da177e2005-04-16 15:20:36 -07003755** otherwise:
3756** set a bit for the block in the journal bitmap. That will prevent it from being allocated for unformatted nodes
3757** before this transaction has finished.
3758**
3759** mark any cnodes for this block as BLOCK_FREED, and clear their bh pointers. That will prevent any old transactions with
3760** this block from trying to flush to the real location. Since we aren't removing the cnode from the journal_list_hash,
3761** the block can't be reallocated yet.
3762**
3763** Then remove it from the current transaction, decrementing any counters and filing it on the clean list.
3764*/
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003765int journal_mark_freed(struct reiserfs_transaction_handle *th,
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04003766 struct super_block *sb, b_blocknr_t blocknr)
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003767{
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04003768 struct reiserfs_journal *journal = SB_JOURNAL(sb);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003769 struct reiserfs_journal_cnode *cn = NULL;
3770 struct buffer_head *bh = NULL;
3771 struct reiserfs_list_bitmap *jb = NULL;
3772 int cleaned = 0;
3773 BUG_ON(!th->t_trans_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003774
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04003775 cn = get_journal_hash_dev(sb, journal->j_hash_table, blocknr);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003776 if (cn && cn->bh) {
3777 bh = cn->bh;
3778 get_bh(bh);
3779 }
3780 /* if it is journal new, we just remove it from this transaction */
3781 if (bh && buffer_journal_new(bh)) {
3782 clear_buffer_journal_new(bh);
3783 clear_prepared_bits(bh);
3784 reiserfs_clean_and_file_buffer(bh);
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04003785 cleaned = remove_from_transaction(sb, blocknr, cleaned);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003786 } else {
3787 /* set the bit for this block in the journal bitmap for this transaction */
3788 jb = journal->j_current_jl->j_list_bitmap;
3789 if (!jb) {
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04003790 reiserfs_panic(sb, "journal-1702",
Jeff Mahoneyc3a9c212009-03-30 14:02:25 -04003791 "journal_list_bitmap is NULL");
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003792 }
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04003793 set_bit_in_list_bitmap(sb, blocknr, jb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003794
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003795 /* Note, the entire while loop is not allowed to schedule. */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003796
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003797 if (bh) {
3798 clear_prepared_bits(bh);
3799 reiserfs_clean_and_file_buffer(bh);
3800 }
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04003801 cleaned = remove_from_transaction(sb, blocknr, cleaned);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003802
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003803 /* find all older transactions with this block, make sure they don't try to write it out */
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04003804 cn = get_journal_hash_dev(sb, journal->j_list_hash_table,
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003805 blocknr);
3806 while (cn) {
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04003807 if (sb == cn->sb && blocknr == cn->blocknr) {
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003808 set_bit(BLOCK_FREED, &cn->state);
3809 if (cn->bh) {
3810 if (!cleaned) {
3811 /* remove_from_transaction will brelse the buffer if it was
3812 ** in the current trans
3813 */
3814 clear_buffer_journal_dirty(cn->
3815 bh);
3816 clear_buffer_dirty(cn->bh);
3817 clear_buffer_journal_test(cn->
3818 bh);
3819 cleaned = 1;
3820 put_bh(cn->bh);
3821 if (atomic_read
3822 (&(cn->bh->b_count)) < 0) {
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04003823 reiserfs_warning(sb,
Jeff Mahoney45b03d52009-03-30 14:02:21 -04003824 "journal-2138",
3825 "cn->bh->b_count < 0");
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003826 }
3827 }
3828 if (cn->jlist) { /* since we are clearing the bh, we MUST dec nonzerolen */
3829 atomic_dec(&
3830 (cn->jlist->
3831 j_nonzerolen));
3832 }
3833 cn->bh = NULL;
3834 }
3835 }
3836 cn = cn->hnext;
3837 }
3838 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003839
Chris Mason398c95b2007-10-16 23:29:44 -07003840 if (bh)
3841 release_buffer_page(bh); /* get_hash grabs the buffer */
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003842 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003843}
3844
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003845void reiserfs_update_inode_transaction(struct inode *inode)
3846{
3847 struct reiserfs_journal *journal = SB_JOURNAL(inode->i_sb);
3848 REISERFS_I(inode)->i_jl = journal->j_current_jl;
3849 REISERFS_I(inode)->i_trans_id = journal->j_trans_id;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003850}
3851
3852/*
3853 * returns -1 on error, 0 if no commits/barriers were done and 1
3854 * if a transaction was actually committed and the barrier was done
3855 */
3856static int __commit_trans_jl(struct inode *inode, unsigned long id,
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003857 struct reiserfs_journal_list *jl)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003858{
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003859 struct reiserfs_transaction_handle th;
3860 struct super_block *sb = inode->i_sb;
3861 struct reiserfs_journal *journal = SB_JOURNAL(sb);
3862 int ret = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003863
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003864 /* is it from the current transaction, or from an unknown transaction? */
3865 if (id == journal->j_trans_id) {
3866 jl = journal->j_current_jl;
3867 /* try to let other writers come in and grow this transaction */
3868 let_transaction_grow(sb, id);
3869 if (journal->j_trans_id != id) {
3870 goto flush_commit_only;
3871 }
3872
3873 ret = journal_begin(&th, sb, 1);
3874 if (ret)
3875 return ret;
3876
3877 /* someone might have ended this transaction while we joined */
3878 if (journal->j_trans_id != id) {
3879 reiserfs_prepare_for_journal(sb, SB_BUFFER_WITH_SB(sb),
3880 1);
3881 journal_mark_dirty(&th, sb, SB_BUFFER_WITH_SB(sb));
3882 ret = journal_end(&th, sb, 1);
3883 goto flush_commit_only;
3884 }
3885
3886 ret = journal_end_sync(&th, sb, 1);
3887 if (!ret)
3888 ret = 1;
3889
3890 } else {
3891 /* this gets tricky, we have to make sure the journal list in
3892 * the inode still exists. We know the list is still around
3893 * if we've got a larger transaction id than the oldest list
3894 */
3895 flush_commit_only:
3896 if (journal_list_still_alive(inode->i_sb, id)) {
3897 /*
3898 * we only set ret to 1 when we know for sure
3899 * the barrier hasn't been started yet on the commit
3900 * block.
3901 */
3902 if (atomic_read(&jl->j_commit_left) > 1)
3903 ret = 1;
3904 flush_commit_list(sb, jl, 1);
3905 if (journal->j_errno)
3906 ret = journal->j_errno;
3907 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003908 }
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003909 /* otherwise the list is gone, and long since committed */
3910 return ret;
3911}
Linus Torvalds1da177e2005-04-16 15:20:36 -07003912
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003913int reiserfs_commit_for_inode(struct inode *inode)
3914{
Jeff Mahoney600ed412009-03-30 14:02:17 -04003915 unsigned int id = REISERFS_I(inode)->i_trans_id;
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003916 struct reiserfs_journal_list *jl = REISERFS_I(inode)->i_jl;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003917
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003918 /* for the whole inode, assume unset id means it was
3919 * changed in the current transaction. More conservative
Linus Torvalds1da177e2005-04-16 15:20:36 -07003920 */
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003921 if (!id || !jl) {
3922 reiserfs_update_inode_transaction(inode);
3923 id = REISERFS_I(inode)->i_trans_id;
3924 /* jl will be updated in __commit_trans_jl */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003925 }
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003926
3927 return __commit_trans_jl(inode, id, jl);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003928}
3929
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04003930void reiserfs_restore_prepared_buffer(struct super_block *sb,
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003931 struct buffer_head *bh)
3932{
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04003933 struct reiserfs_journal *journal = SB_JOURNAL(sb);
3934 PROC_INFO_INC(sb, journal.restore_prepared);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003935 if (!bh) {
3936 return;
3937 }
3938 if (test_clear_buffer_journal_restore_dirty(bh) &&
3939 buffer_journal_dirty(bh)) {
3940 struct reiserfs_journal_cnode *cn;
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04003941 cn = get_journal_hash_dev(sb,
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003942 journal->j_list_hash_table,
3943 bh->b_blocknr);
3944 if (cn && can_dirty(cn)) {
3945 set_buffer_journal_test(bh);
3946 mark_buffer_dirty(bh);
3947 }
3948 }
3949 clear_buffer_journal_prepared(bh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003950}
3951
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003952extern struct tree_balance *cur_tb;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003953/*
3954** before we can change a metadata block, we have to make sure it won't
3955** be written to disk while we are altering it. So, we must:
3956** clean it
3957** wait on it.
Jeff Mahoney0222e652009-03-30 14:02:44 -04003958**
Linus Torvalds1da177e2005-04-16 15:20:36 -07003959*/
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04003960int reiserfs_prepare_for_journal(struct super_block *sb,
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003961 struct buffer_head *bh, int wait)
3962{
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04003963 PROC_INFO_INC(sb, journal.prepare);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003964
Nick Pigginca5de402008-08-02 12:02:13 +02003965 if (!trylock_buffer(bh)) {
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003966 if (!wait)
3967 return 0;
3968 lock_buffer(bh);
3969 }
3970 set_buffer_journal_prepared(bh);
3971 if (test_clear_buffer_dirty(bh) && buffer_journal_dirty(bh)) {
3972 clear_buffer_journal_test(bh);
3973 set_buffer_journal_restore_dirty(bh);
3974 }
3975 unlock_buffer(bh);
3976 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003977}
3978
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003979static void flush_old_journal_lists(struct super_block *s)
3980{
3981 struct reiserfs_journal *journal = SB_JOURNAL(s);
3982 struct reiserfs_journal_list *jl;
3983 struct list_head *entry;
3984 time_t now = get_seconds();
Linus Torvalds1da177e2005-04-16 15:20:36 -07003985
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003986 while (!list_empty(&journal->j_journal_list)) {
3987 entry = journal->j_journal_list.next;
3988 jl = JOURNAL_LIST_ENTRY(entry);
3989 /* this check should always be run, to send old lists to disk */
Chris Masona3172022006-09-29 01:59:56 -07003990 if (jl->j_timestamp < (now - (JOURNAL_MAX_TRANS_AGE * 4)) &&
3991 atomic_read(&jl->j_commit_left) == 0 &&
3992 test_transaction(s, jl)) {
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07003993 flush_used_journal_lists(s, jl);
3994 } else {
3995 break;
3996 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003997 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003998}
3999
Jeff Mahoney0222e652009-03-30 14:02:44 -04004000/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07004001** long and ugly. If flush, will not return until all commit
4002** blocks and all real buffers in the trans are on disk.
4003** If no_async, won't return until all commit blocks are on disk.
4004**
4005** keep reading, there are comments as you go along
4006**
4007** If the journal is aborted, we just clean up. Things like flushing
4008** journal lists, etc just won't happen.
4009*/
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07004010static int do_journal_end(struct reiserfs_transaction_handle *th,
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04004011 struct super_block *sb, unsigned long nblocks,
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07004012 int flags)
4013{
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04004014 struct reiserfs_journal *journal = SB_JOURNAL(sb);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07004015 struct reiserfs_journal_cnode *cn, *next, *jl_cn;
4016 struct reiserfs_journal_cnode *last_cn = NULL;
4017 struct reiserfs_journal_desc *desc;
4018 struct reiserfs_journal_commit *commit;
4019 struct buffer_head *c_bh; /* commit bh */
4020 struct buffer_head *d_bh; /* desc bh */
4021 int cur_write_start = 0; /* start index of current log write */
4022 int old_start;
4023 int i;
Alexander Zarochentseva44c94a2006-03-25 03:06:59 -08004024 int flush;
4025 int wait_on_commit;
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07004026 struct reiserfs_journal_list *jl, *temp_jl;
4027 struct list_head *entry, *safe;
4028 unsigned long jindex;
Jeff Mahoney600ed412009-03-30 14:02:17 -04004029 unsigned int commit_trans_id;
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07004030 int trans_half;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004031
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07004032 BUG_ON(th->t_refcount > 1);
4033 BUG_ON(!th->t_trans_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004034
Alexander Zarochentseva44c94a2006-03-25 03:06:59 -08004035 /* protect flush_older_commits from doing mistakes if the
4036 transaction ID counter gets overflowed. */
Jeff Mahoney600ed412009-03-30 14:02:17 -04004037 if (th->t_trans_id == ~0U)
Alexander Zarochentseva44c94a2006-03-25 03:06:59 -08004038 flags |= FLUSH_ALL | COMMIT_NOW | WAIT;
4039 flush = flags & FLUSH_ALL;
4040 wait_on_commit = flags & WAIT;
4041
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07004042 put_fs_excl();
4043 current->journal_info = th->t_handle_save;
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04004044 reiserfs_check_lock_depth(sb, "journal end");
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07004045 if (journal->j_len == 0) {
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04004046 reiserfs_prepare_for_journal(sb, SB_BUFFER_WITH_SB(sb),
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07004047 1);
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04004048 journal_mark_dirty(th, sb, SB_BUFFER_WITH_SB(sb));
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07004049 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004050
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04004051 lock_journal(sb);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07004052 if (journal->j_next_full_flush) {
4053 flags |= FLUSH_ALL;
4054 flush = 1;
4055 }
4056 if (journal->j_next_async_flush) {
4057 flags |= COMMIT_NOW | WAIT;
4058 wait_on_commit = 1;
4059 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004060
Jeff Mahoney0222e652009-03-30 14:02:44 -04004061 /* check_journal_end locks the journal, and unlocks if it does not return 1
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07004062 ** it tells us if we should continue with the journal_end, or just return
4063 */
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04004064 if (!check_journal_end(th, sb, nblocks, flags)) {
4065 sb->s_dirt = 1;
4066 wake_queued_writers(sb);
4067 reiserfs_async_progress_wait(sb);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07004068 goto out;
4069 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004070
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07004071 /* check_journal_end might set these, check again */
4072 if (journal->j_next_full_flush) {
4073 flush = 1;
4074 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004075
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07004076 /*
4077 ** j must wait means we have to flush the log blocks, and the real blocks for
4078 ** this transaction
4079 */
4080 if (journal->j_must_wait > 0) {
4081 flush = 1;
4082 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004083#ifdef REISERFS_PREALLOCATE
Jan Karaef43bc42006-01-11 12:17:40 -08004084 /* quota ops might need to nest, setup the journal_info pointer for them
4085 * and raise the refcount so that it is > 0. */
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07004086 current->journal_info = th;
Jan Karaef43bc42006-01-11 12:17:40 -08004087 th->t_refcount++;
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07004088 reiserfs_discard_all_prealloc(th); /* it should not involve new blocks into
4089 * the transaction */
Jan Karaef43bc42006-01-11 12:17:40 -08004090 th->t_refcount--;
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07004091 current->journal_info = th->t_handle_save;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004092#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07004093
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07004094 /* setup description block */
4095 d_bh =
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04004096 journal_getblk(sb,
4097 SB_ONDISK_JOURNAL_1st_BLOCK(sb) +
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07004098 journal->j_start);
4099 set_buffer_uptodate(d_bh);
4100 desc = (struct reiserfs_journal_desc *)(d_bh)->b_data;
4101 memset(d_bh->b_data, 0, d_bh->b_size);
4102 memcpy(get_journal_desc_magic(d_bh), JOURNAL_DESC_MAGIC, 8);
4103 set_desc_trans_id(desc, journal->j_trans_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004104
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07004105 /* 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 -04004106 c_bh = journal_getblk(sb, SB_ONDISK_JOURNAL_1st_BLOCK(sb) +
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07004107 ((journal->j_start + journal->j_len +
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04004108 1) % SB_ONDISK_JOURNAL_SIZE(sb)));
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07004109 commit = (struct reiserfs_journal_commit *)c_bh->b_data;
4110 memset(c_bh->b_data, 0, c_bh->b_size);
4111 set_commit_trans_id(commit, journal->j_trans_id);
4112 set_buffer_uptodate(c_bh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004113
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07004114 /* init this journal list */
4115 jl = journal->j_current_jl;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004116
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07004117 /* we lock the commit before doing anything because
4118 * we want to make sure nobody tries to run flush_commit_list until
4119 * the new transaction is fully setup, and we've already flushed the
4120 * ordered bh list
4121 */
Frederic Weisbecker8ebc4232009-04-07 04:19:49 +02004122 reiserfs_mutex_lock_safe(&jl->j_commit_mutex, sb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004123
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07004124 /* save the transaction id in case we need to commit it later */
4125 commit_trans_id = jl->j_trans_id;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004126
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07004127 atomic_set(&jl->j_older_commits_done, 0);
4128 jl->j_trans_id = journal->j_trans_id;
4129 jl->j_timestamp = journal->j_trans_start_time;
4130 jl->j_commit_bh = c_bh;
4131 jl->j_start = journal->j_start;
4132 jl->j_len = journal->j_len;
4133 atomic_set(&jl->j_nonzerolen, journal->j_len);
4134 atomic_set(&jl->j_commit_left, journal->j_len + 2);
4135 jl->j_realblock = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004136
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07004137 /* The ENTIRE FOR LOOP MUST not cause schedule to occur.
4138 ** for each real block, add it to the journal list hash,
4139 ** copy into real block index array in the commit or desc block
4140 */
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04004141 trans_half = journal_trans_half(sb->s_blocksize);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07004142 for (i = 0, cn = journal->j_first; cn; cn = cn->next, i++) {
4143 if (buffer_journaled(cn->bh)) {
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04004144 jl_cn = get_cnode(sb);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07004145 if (!jl_cn) {
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04004146 reiserfs_panic(sb, "journal-1676",
Jeff Mahoneyc3a9c212009-03-30 14:02:25 -04004147 "get_cnode returned NULL");
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07004148 }
4149 if (i == 0) {
4150 jl->j_realblock = jl_cn;
4151 }
4152 jl_cn->prev = last_cn;
4153 jl_cn->next = NULL;
4154 if (last_cn) {
4155 last_cn->next = jl_cn;
4156 }
4157 last_cn = jl_cn;
Jeff Mahoney0222e652009-03-30 14:02:44 -04004158 /* make sure the block we are trying to log is not a block
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07004159 of journal or reserved area */
Linus Torvalds1da177e2005-04-16 15:20:36 -07004160
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07004161 if (is_block_in_log_or_reserved_area
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04004162 (sb, cn->bh->b_blocknr)) {
4163 reiserfs_panic(sb, "journal-2332",
Jeff Mahoneyc3a9c212009-03-30 14:02:25 -04004164 "Trying to log block %lu, "
4165 "which is a log block",
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07004166 cn->bh->b_blocknr);
4167 }
4168 jl_cn->blocknr = cn->bh->b_blocknr;
4169 jl_cn->state = 0;
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04004170 jl_cn->sb = sb;
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07004171 jl_cn->bh = cn->bh;
4172 jl_cn->jlist = jl;
4173 insert_journal_hash(journal->j_list_hash_table, jl_cn);
4174 if (i < trans_half) {
4175 desc->j_realblock[i] =
4176 cpu_to_le32(cn->bh->b_blocknr);
4177 } else {
4178 commit->j_realblock[i - trans_half] =
4179 cpu_to_le32(cn->bh->b_blocknr);
4180 }
4181 } else {
4182 i--;
4183 }
4184 }
4185 set_desc_trans_len(desc, journal->j_len);
4186 set_desc_mount_id(desc, journal->j_mount_id);
4187 set_desc_trans_id(desc, journal->j_trans_id);
4188 set_commit_trans_len(commit, journal->j_len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004189
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07004190 /* special check in case all buffers in the journal were marked for not logging */
Eric Sesterhenn14a61442006-10-03 23:36:38 +02004191 BUG_ON(journal->j_len == 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004192
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07004193 /* we're about to dirty all the log blocks, mark the description block
4194 * dirty now too. Don't mark the commit block dirty until all the
4195 * others are on disk
4196 */
4197 mark_buffer_dirty(d_bh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004198
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07004199 /* first data block is j_start + 1, so add one to cur_write_start wherever you use it */
4200 cur_write_start = journal->j_start;
4201 cn = journal->j_first;
4202 jindex = 1; /* start at one so we don't get the desc again */
4203 while (cn) {
4204 clear_buffer_journal_new(cn->bh);
4205 /* copy all the real blocks into log area. dirty log blocks */
4206 if (buffer_journaled(cn->bh)) {
4207 struct buffer_head *tmp_bh;
4208 char *addr;
4209 struct page *page;
4210 tmp_bh =
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04004211 journal_getblk(sb,
4212 SB_ONDISK_JOURNAL_1st_BLOCK(sb) +
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07004213 ((cur_write_start +
4214 jindex) %
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04004215 SB_ONDISK_JOURNAL_SIZE(sb)));
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07004216 set_buffer_uptodate(tmp_bh);
4217 page = cn->bh->b_page;
4218 addr = kmap(page);
4219 memcpy(tmp_bh->b_data,
4220 addr + offset_in_page(cn->bh->b_data),
4221 cn->bh->b_size);
4222 kunmap(page);
4223 mark_buffer_dirty(tmp_bh);
4224 jindex++;
4225 set_buffer_journal_dirty(cn->bh);
4226 clear_buffer_journaled(cn->bh);
4227 } else {
4228 /* JDirty cleared sometime during transaction. don't log this one */
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04004229 reiserfs_warning(sb, "journal-2048",
Jeff Mahoney45b03d52009-03-30 14:02:21 -04004230 "BAD, buffer in journal hash, "
4231 "but not JDirty!");
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07004232 brelse(cn->bh);
4233 }
4234 next = cn->next;
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04004235 free_cnode(sb, cn);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07004236 cn = next;
Frederic Weisbeckere6950a42009-04-30 23:04:32 +02004237 reiserfs_write_unlock(sb);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07004238 cond_resched();
Frederic Weisbeckere6950a42009-04-30 23:04:32 +02004239 reiserfs_write_lock(sb);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07004240 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004241
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07004242 /* we are done with both the c_bh and d_bh, but
4243 ** c_bh must be written after all other commit blocks,
4244 ** so we dirty/relse c_bh in flush_commit_list, with commit_left <= 1.
4245 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07004246
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04004247 journal->j_current_jl = alloc_journal_list(sb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004248
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07004249 /* now it is safe to insert this transaction on the main list */
4250 list_add_tail(&jl->j_list, &journal->j_journal_list);
4251 list_add_tail(&jl->j_working_list, &journal->j_working_list);
4252 journal->j_num_work_lists++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004253
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07004254 /* reset journal values for the next transaction */
4255 old_start = journal->j_start;
4256 journal->j_start =
4257 (journal->j_start + journal->j_len +
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04004258 2) % SB_ONDISK_JOURNAL_SIZE(sb);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07004259 atomic_set(&(journal->j_wcount), 0);
4260 journal->j_bcount = 0;
4261 journal->j_last = NULL;
4262 journal->j_first = NULL;
4263 journal->j_len = 0;
4264 journal->j_trans_start_time = 0;
Alexander Zarochentseva44c94a2006-03-25 03:06:59 -08004265 /* check for trans_id overflow */
4266 if (++journal->j_trans_id == 0)
4267 journal->j_trans_id = 10;
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07004268 journal->j_current_jl->j_trans_id = journal->j_trans_id;
4269 journal->j_must_wait = 0;
4270 journal->j_len_alloc = 0;
4271 journal->j_next_full_flush = 0;
4272 journal->j_next_async_flush = 0;
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04004273 init_journal_hash(sb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004274
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07004275 // make sure reiserfs_add_jh sees the new current_jl before we
4276 // write out the tails
4277 smp_mb();
Linus Torvalds1da177e2005-04-16 15:20:36 -07004278
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07004279 /* tail conversion targets have to hit the disk before we end the
4280 * transaction. Otherwise a later transaction might repack the tail
4281 * before this transaction commits, leaving the data block unflushed and
4282 * clean, if we crash before the later transaction commits, the data block
4283 * is lost.
4284 */
4285 if (!list_empty(&jl->j_tail_bh_list)) {
Frederic Weisbecker8ebc4232009-04-07 04:19:49 +02004286 reiserfs_write_unlock(sb);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07004287 write_ordered_buffers(&journal->j_dirty_buffers_lock,
4288 journal, jl, &jl->j_tail_bh_list);
Frederic Weisbecker8ebc4232009-04-07 04:19:49 +02004289 reiserfs_write_lock(sb);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07004290 }
Eric Sesterhenn14a61442006-10-03 23:36:38 +02004291 BUG_ON(!list_empty(&jl->j_tail_bh_list));
Jeff Mahoney90415de2008-07-25 01:46:40 -07004292 mutex_unlock(&jl->j_commit_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004293
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07004294 /* honor the flush wishes from the caller, simple commits can
4295 ** be done outside the journal lock, they are done below
4296 **
4297 ** if we don't flush the commit list right now, we put it into
4298 ** the work queue so the people waiting on the async progress work
4299 ** queue don't wait for this proc to flush journal lists and such.
4300 */
4301 if (flush) {
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04004302 flush_commit_list(sb, jl, 1);
4303 flush_journal_list(sb, jl, 1);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07004304 } else if (!(jl->j_state & LIST_COMMIT_PENDING))
4305 queue_delayed_work(commit_wq, &journal->j_work, HZ / 10);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004306
Jeff Mahoney0222e652009-03-30 14:02:44 -04004307 /* if the next transaction has any chance of wrapping, flush
4308 ** transactions that might get overwritten. If any journal lists are very
4309 ** old flush them as well.
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07004310 */
4311 first_jl:
4312 list_for_each_safe(entry, safe, &journal->j_journal_list) {
4313 temp_jl = JOURNAL_LIST_ENTRY(entry);
4314 if (journal->j_start <= temp_jl->j_start) {
4315 if ((journal->j_start + journal->j_trans_max + 1) >=
4316 temp_jl->j_start) {
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04004317 flush_used_journal_lists(sb, temp_jl);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07004318 goto first_jl;
4319 } else if ((journal->j_start +
4320 journal->j_trans_max + 1) <
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04004321 SB_ONDISK_JOURNAL_SIZE(sb)) {
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07004322 /* if we don't cross into the next transaction and we don't
4323 * wrap, there is no way we can overlap any later transactions
4324 * break now
4325 */
4326 break;
4327 }
4328 } else if ((journal->j_start +
4329 journal->j_trans_max + 1) >
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04004330 SB_ONDISK_JOURNAL_SIZE(sb)) {
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07004331 if (((journal->j_start + journal->j_trans_max + 1) %
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04004332 SB_ONDISK_JOURNAL_SIZE(sb)) >=
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07004333 temp_jl->j_start) {
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04004334 flush_used_journal_lists(sb, temp_jl);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07004335 goto first_jl;
4336 } else {
4337 /* we don't overlap anything from out start to the end of the
4338 * log, and our wrapped portion doesn't overlap anything at
4339 * the start of the log. We can break
4340 */
4341 break;
4342 }
4343 }
4344 }
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04004345 flush_old_journal_lists(sb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004346
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07004347 journal->j_current_jl->j_list_bitmap =
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04004348 get_list_bitmap(sb, journal->j_current_jl);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004349
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07004350 if (!(journal->j_current_jl->j_list_bitmap)) {
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04004351 reiserfs_panic(sb, "journal-1996",
Jeff Mahoneyc3a9c212009-03-30 14:02:25 -04004352 "could not get a list bitmap");
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07004353 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004354
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07004355 atomic_set(&(journal->j_jlock), 0);
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04004356 unlock_journal(sb);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07004357 /* wake up any body waiting to join. */
4358 clear_bit(J_WRITERS_QUEUED, &journal->j_state);
4359 wake_up(&(journal->j_join_wait));
Linus Torvalds1da177e2005-04-16 15:20:36 -07004360
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07004361 if (!flush && wait_on_commit &&
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04004362 journal_list_still_alive(sb, commit_trans_id)) {
4363 flush_commit_list(sb, jl, 1);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07004364 }
4365 out:
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04004366 reiserfs_check_lock_depth(sb, "journal end2");
Linus Torvalds1da177e2005-04-16 15:20:36 -07004367
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07004368 memset(th, 0, sizeof(*th));
4369 /* Re-set th->t_super, so we can properly keep track of how many
4370 * persistent transactions there are. We need to do this so if this
4371 * call is part of a failed restart_transaction, we can free it later */
Jeff Mahoneya9dd3642009-03-30 14:02:45 -04004372 th->t_super = sb;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004373
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07004374 return journal->j_errno;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004375}
4376
Jeff Mahoney32e8b102009-03-30 14:02:26 -04004377/* Send the file system read only and refuse new transactions */
4378void reiserfs_abort_journal(struct super_block *sb, int errno)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004379{
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07004380 struct reiserfs_journal *journal = SB_JOURNAL(sb);
4381 if (test_bit(J_ABORTED, &journal->j_state))
4382 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004383
Jeff Mahoney32e8b102009-03-30 14:02:26 -04004384 if (!journal->j_errno)
4385 journal->j_errno = errno;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004386
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07004387 sb->s_flags |= MS_RDONLY;
4388 set_bit(J_ABORTED, &journal->j_state);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004389
4390#ifdef CONFIG_REISERFS_CHECK
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07004391 dump_stack();
Linus Torvalds1da177e2005-04-16 15:20:36 -07004392#endif
4393}
4394