journal.c 120 KB
Newer Older
Linus Torvalds's avatar
Linus Torvalds committed
1
/*
2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35
 * Write ahead logging implementation copyright Chris Mason 2000
 *
 * The background commits make this code very interrelated, and
 * overly complex.  I need to rethink things a bit....The major players:
 *
 * journal_begin -- call with the number of blocks you expect to log.
 *                  If the current transaction is too
 *		    old, it will block until the current transaction is
 *		    finished, and then start a new one.
 *		    Usually, your transaction will get joined in with
 *                  previous ones for speed.
 *
 * journal_join  -- same as journal_begin, but won't block on the current
 *                  transaction regardless of age.  Don't ever call
 *                  this.  Ever.  There are only two places it should be
 *                  called from, and they are both inside this file.
 *
 * journal_mark_dirty -- adds blocks into this transaction.  clears any flags
 *                       that might make them get sent to disk
 *                       and then marks them BH_JDirty.  Puts the buffer head
 *                       into the current transaction hash.
 *
 * journal_end -- if the current transaction is batchable, it does nothing
 *                   otherwise, it could do an async/synchronous commit, or
 *                   a full flush of all log and real blocks in the
 *                   transaction.
 *
 * flush_old_commits -- if the current transaction is too old, it is ended and
 *                      commit blocks are sent to disk.  Forces commit blocks
 *                      to disk for all backgrounded commits that have been
 *                      around too long.
 *		     -- Note, if you call this as an immediate flush from
 *		        from within kupdate, it will ignore the immediate flag
 */
Linus Torvalds's avatar
Linus Torvalds committed
36 37

#include <linux/time.h>
38
#include <linux/semaphore.h>
Linus Torvalds's avatar
Linus Torvalds committed
39
#include <linux/vmalloc.h>
40
#include "reiserfs.h"
Linus Torvalds's avatar
Linus Torvalds committed
41 42 43 44 45 46 47 48 49
#include <linux/kernel.h>
#include <linux/errno.h>
#include <linux/fcntl.h>
#include <linux/stat.h>
#include <linux/string.h>
#include <linux/buffer_head.h>
#include <linux/workqueue.h>
#include <linux/writeback.h>
#include <linux/blkdev.h>
50
#include <linux/backing-dev.h>
51
#include <linux/uaccess.h>
52
#include <linux/slab.h>
53

Linus Torvalds's avatar
Linus Torvalds committed
54 55 56 57 58 59 60

/* gets a struct reiserfs_journal_list * from a list head */
#define JOURNAL_LIST_ENTRY(h) (list_entry((h), struct reiserfs_journal_list, \
                               j_list))
#define JOURNAL_WORK_ENTRY(h) (list_entry((h), struct reiserfs_journal_list, \
                               j_working_list))

61 62
/* must be correct to keep the desc and commit structs at 4k */
#define JOURNAL_TRANS_HALF 1018
63
#define BUFNR 64		/*read ahead */
Linus Torvalds's avatar
Linus Torvalds committed
64 65 66

/* cnode stat bits.  Move these into reiserfs_fs.h */

67 68 69 70
/* this block was freed, and can't be written.  */
#define BLOCK_FREED 2
/* this block was freed during this transaction, and can't be written */
#define BLOCK_FREED_HOLDER 3
Linus Torvalds's avatar
Linus Torvalds committed
71

72 73
/* used in flush_journal_list */
#define BLOCK_NEEDS_FLUSH 4
Linus Torvalds's avatar
Linus Torvalds committed
74 75 76 77 78
#define BLOCK_DIRTIED 5

/* journal list state bits */
#define LIST_TOUCHED 1
#define LIST_DIRTY   2
79
#define LIST_COMMIT_PENDING  4	/* someone will commit this list */
Linus Torvalds's avatar
Linus Torvalds committed
80 81 82 83

/* flags for do_journal_end */
#define FLUSH_ALL   1		/* flush commit and real blocks */
#define COMMIT_NOW  2		/* end and commit this transaction */
84 85
#define WAIT        4		/* wait for the log blocks to hit the disk */

86
static int do_journal_end(struct reiserfs_transaction_handle *, int flags);
87 88 89 90 91 92
static int flush_journal_list(struct super_block *s,
			      struct reiserfs_journal_list *jl, int flushall);
static int flush_commit_list(struct super_block *s,
			     struct reiserfs_journal_list *jl, int flushall);
static int can_dirty(struct reiserfs_journal_cnode *cn);
static int journal_join(struct reiserfs_transaction_handle *th,
93
			struct super_block *sb);
Al Viro's avatar
Al Viro committed
94
static void release_journal_dev(struct super_block *super,
95
			       struct reiserfs_journal *journal);
Linus Torvalds's avatar
Linus Torvalds committed
96
static int dirty_one_transaction(struct super_block *s,
97
				 struct reiserfs_journal_list *jl);
David Howells's avatar
David Howells committed
98
static void flush_async_commits(struct work_struct *work);
Linus Torvalds's avatar
Linus Torvalds committed
99 100 101 102
static void queue_log_writer(struct super_block *s);

/* values for join in do_journal_begin_r */
enum {
103
	JBEGIN_REG = 0,		/* regular journal begin */
104 105 106 107
	/* join the running transaction if at all possible */
	JBEGIN_JOIN = 1,
	/* called from cleanup code, ignores aborted flag */
	JBEGIN_ABORT = 2,
Linus Torvalds's avatar
Linus Torvalds committed
108 109 110
};

static int do_journal_begin_r(struct reiserfs_transaction_handle *th,
Jeff Mahoney's avatar
Jeff Mahoney committed
111
			      struct super_block *sb,
112
			      unsigned long nblocks, int join);
Linus Torvalds's avatar
Linus Torvalds committed
113

Jeff Mahoney's avatar
Jeff Mahoney committed
114
static void init_journal_hash(struct super_block *sb)
115
{
Jeff Mahoney's avatar
Jeff Mahoney committed
116
	struct reiserfs_journal *journal = SB_JOURNAL(sb);
117 118
	memset(journal->j_hash_table, 0,
	       JOURNAL_HASH_SIZE * sizeof(struct reiserfs_journal_cnode *));
Linus Torvalds's avatar
Linus Torvalds committed
119 120 121
}

/*
122 123 124 125 126
 * clears BH_Dirty and sticks the buffer on the clean list.  Called because
 * I can't allow refile_buffer to make schedule happen after I've freed a
 * block.  Look at remove_from_transaction and journal_mark_freed for
 * more details.
 */
127 128 129 130 131 132 133
static int reiserfs_clean_and_file_buffer(struct buffer_head *bh)
{
	if (bh) {
		clear_buffer_dirty(bh);
		clear_buffer_journal_test(bh);
	}
	return 0;
Linus Torvalds's avatar
Linus Torvalds committed
134 135
}

136
static struct reiserfs_bitmap_node *allocate_bitmap_node(struct super_block
Jeff Mahoney's avatar
Jeff Mahoney committed
137
							 *sb)
138 139 140 141
{
	struct reiserfs_bitmap_node *bn;
	static int id;

142
	bn = kmalloc(sizeof(struct reiserfs_bitmap_node), GFP_NOFS);
143 144 145
	if (!bn) {
		return NULL;
	}
Jeff Mahoney's avatar
Jeff Mahoney committed
146
	bn->data = kzalloc(sb->s_blocksize, GFP_NOFS);
147
	if (!bn->data) {
148
		kfree(bn);
149 150 151 152 153 154 155
		return NULL;
	}
	bn->id = id++;
	INIT_LIST_HEAD(&bn->list);
	return bn;
}

Jeff Mahoney's avatar
Jeff Mahoney committed
156
static struct reiserfs_bitmap_node *get_bitmap_node(struct super_block *sb)
157
{
Jeff Mahoney's avatar
Jeff Mahoney committed
158
	struct reiserfs_journal *journal = SB_JOURNAL(sb);
159 160 161 162
	struct reiserfs_bitmap_node *bn = NULL;
	struct list_head *entry = journal->j_bitmap_nodes.next;

	journal->j_used_bitmap_nodes++;
163
repeat:
164 165 166 167

	if (entry != &journal->j_bitmap_nodes) {
		bn = list_entry(entry, struct reiserfs_bitmap_node, list);
		list_del(entry);
Jeff Mahoney's avatar
Jeff Mahoney committed
168
		memset(bn->data, 0, sb->s_blocksize);
169 170 171
		journal->j_free_bitmap_nodes--;
		return bn;
	}
Jeff Mahoney's avatar
Jeff Mahoney committed
172
	bn = allocate_bitmap_node(sb);
173 174 175 176 177
	if (!bn) {
		yield();
		goto repeat;
	}
	return bn;
Linus Torvalds's avatar
Linus Torvalds committed
178
}
Jeff Mahoney's avatar
Jeff Mahoney committed
179
static inline void free_bitmap_node(struct super_block *sb,
180 181
				    struct reiserfs_bitmap_node *bn)
{
Jeff Mahoney's avatar
Jeff Mahoney committed
182
	struct reiserfs_journal *journal = SB_JOURNAL(sb);
183 184
	journal->j_used_bitmap_nodes--;
	if (journal->j_free_bitmap_nodes > REISERFS_MAX_BITMAP_NODES) {
185 186
		kfree(bn->data);
		kfree(bn);
187 188 189 190 191 192
	} else {
		list_add(&bn->list, &journal->j_bitmap_nodes);
		journal->j_free_bitmap_nodes++;
	}
}

Jeff Mahoney's avatar
Jeff Mahoney committed
193
static void allocate_bitmap_nodes(struct super_block *sb)
194 195
{
	int i;
Jeff Mahoney's avatar
Jeff Mahoney committed
196
	struct reiserfs_journal *journal = SB_JOURNAL(sb);
197 198
	struct reiserfs_bitmap_node *bn = NULL;
	for (i = 0; i < REISERFS_MIN_BITMAP_NODES; i++) {
Jeff Mahoney's avatar
Jeff Mahoney committed
199
		bn = allocate_bitmap_node(sb);
200 201 202 203
		if (bn) {
			list_add(&bn->list, &journal->j_bitmap_nodes);
			journal->j_free_bitmap_nodes++;
		} else {
204 205
			/* this is ok, we'll try again when more are needed */
			break;
206 207
		}
	}
Linus Torvalds's avatar
Linus Torvalds committed
208 209
}

Jeff Mahoney's avatar
Jeff Mahoney committed
210
static int set_bit_in_list_bitmap(struct super_block *sb,
211
				  b_blocknr_t block,
212 213
				  struct reiserfs_list_bitmap *jb)
{
Jeff Mahoney's avatar
Jeff Mahoney committed
214 215
	unsigned int bmap_nr = block / (sb->s_blocksize << 3);
	unsigned int bit_nr = block % (sb->s_blocksize << 3);
Linus Torvalds's avatar
Linus Torvalds committed
216

217
	if (!jb->bitmaps[bmap_nr]) {
Jeff Mahoney's avatar
Jeff Mahoney committed
218
		jb->bitmaps[bmap_nr] = get_bitmap_node(sb);
219 220 221
	}
	set_bit(bit_nr, (unsigned long *)jb->bitmaps[bmap_nr]->data);
	return 0;
Linus Torvalds's avatar
Linus Torvalds committed
222 223
}

Jeff Mahoney's avatar
Jeff Mahoney committed
224
static void cleanup_bitmap_list(struct super_block *sb,
225 226 227 228 229 230
				struct reiserfs_list_bitmap *jb)
{
	int i;
	if (jb->bitmaps == NULL)
		return;

Jeff Mahoney's avatar
Jeff Mahoney committed
231
	for (i = 0; i < reiserfs_bmap_count(sb); i++) {
232
		if (jb->bitmaps[i]) {
Jeff Mahoney's avatar
Jeff Mahoney committed
233
			free_bitmap_node(sb, jb->bitmaps[i]);
234 235 236
			jb->bitmaps[i] = NULL;
		}
	}
Linus Torvalds's avatar
Linus Torvalds committed
237 238 239
}

/*
240 241
 * only call this on FS unmount.
 */
Jeff Mahoney's avatar
Jeff Mahoney committed
242
static int free_list_bitmaps(struct super_block *sb,
243 244 245 246 247 248 249
			     struct reiserfs_list_bitmap *jb_array)
{
	int i;
	struct reiserfs_list_bitmap *jb;
	for (i = 0; i < JOURNAL_NUM_BITMAPS; i++) {
		jb = jb_array + i;
		jb->journal_list = NULL;
Jeff Mahoney's avatar
Jeff Mahoney committed
250
		cleanup_bitmap_list(sb, jb);
251 252 253 254 255 256
		vfree(jb->bitmaps);
		jb->bitmaps = NULL;
	}
	return 0;
}

Jeff Mahoney's avatar
Jeff Mahoney committed
257
static int free_bitmap_nodes(struct super_block *sb)
258
{
Jeff Mahoney's avatar
Jeff Mahoney committed
259
	struct reiserfs_journal *journal = SB_JOURNAL(sb);
260 261 262 263 264 265
	struct list_head *next = journal->j_bitmap_nodes.next;
	struct reiserfs_bitmap_node *bn;

	while (next != &journal->j_bitmap_nodes) {
		bn = list_entry(next, struct reiserfs_bitmap_node, list);
		list_del(next);
266 267
		kfree(bn->data);
		kfree(bn);
268 269 270 271 272
		next = journal->j_bitmap_nodes.next;
		journal->j_free_bitmap_nodes--;
	}

	return 0;
Linus Torvalds's avatar
Linus Torvalds committed
273 274 275
}

/*
276 277 278
 * get memory for JOURNAL_NUM_BITMAPS worth of bitmaps.
 * jb_array is the array to be filled in.
 */
Jeff Mahoney's avatar
Jeff Mahoney committed
279
int reiserfs_allocate_list_bitmaps(struct super_block *sb,
280
				   struct reiserfs_list_bitmap *jb_array,
281
				   unsigned int bmap_nr)
282 283 284 285 286 287 288 289 290
{
	int i;
	int failed = 0;
	struct reiserfs_list_bitmap *jb;
	int mem = bmap_nr * sizeof(struct reiserfs_bitmap_node *);

	for (i = 0; i < JOURNAL_NUM_BITMAPS; i++) {
		jb = jb_array + i;
		jb->journal_list = NULL;
291
		jb->bitmaps = vzalloc(mem);
292
		if (!jb->bitmaps) {
Jeff Mahoney's avatar
Jeff Mahoney committed
293
			reiserfs_warning(sb, "clm-2000", "unable to "
294
					 "allocate bitmaps for journal lists");
295 296 297 298 299
			failed = 1;
			break;
		}
	}
	if (failed) {
Jeff Mahoney's avatar
Jeff Mahoney committed
300
		free_list_bitmaps(sb, jb_array);
301 302 303
		return -1;
	}
	return 0;
Linus Torvalds's avatar
Linus Torvalds committed
304 305 306
}

/*
307 308 309
 * find an available list bitmap.  If you can't find one, flush a commit list
 * and try again
 */
Jeff Mahoney's avatar
Jeff Mahoney committed
310
static struct reiserfs_list_bitmap *get_list_bitmap(struct super_block *sb,
311 312 313 314
						    struct reiserfs_journal_list
						    *jl)
{
	int i, j;
Jeff Mahoney's avatar
Jeff Mahoney committed
315
	struct reiserfs_journal *journal = SB_JOURNAL(sb);
316 317 318 319 320 321 322
	struct reiserfs_list_bitmap *jb = NULL;

	for (j = 0; j < (JOURNAL_NUM_BITMAPS * 3); j++) {
		i = journal->j_list_bitmap_index;
		journal->j_list_bitmap_index = (i + 1) % JOURNAL_NUM_BITMAPS;
		jb = journal->j_list_bitmap + i;
		if (journal->j_list_bitmap[i].journal_list) {
Jeff Mahoney's avatar
Jeff Mahoney committed
323
			flush_commit_list(sb,
324 325 326 327 328 329 330 331 332
					  journal->j_list_bitmap[i].
					  journal_list, 1);
			if (!journal->j_list_bitmap[i].journal_list) {
				break;
			}
		} else {
			break;
		}
	}
333 334
	/* double check to make sure if flushed correctly */
	if (jb->journal_list)
335 336 337
		return NULL;
	jb->journal_list = jl;
	return jb;
Linus Torvalds's avatar
Linus Torvalds committed
338 339
}

340
/*
341 342 343 344
 * allocates a new chunk of X nodes, and links them all together as a list.
 * Uses the cnode->next and cnode->prev pointers
 * returns NULL on failure
 */
345 346 347 348 349 350 351
static struct reiserfs_journal_cnode *allocate_cnodes(int num_cnodes)
{
	struct reiserfs_journal_cnode *head;
	int i;
	if (num_cnodes <= 0) {
		return NULL;
	}
352
	head = vzalloc(num_cnodes * sizeof(struct reiserfs_journal_cnode));
353 354 355 356 357 358 359 360 361 362 363
	if (!head) {
		return NULL;
	}
	head[0].prev = NULL;
	head[0].next = head + 1;
	for (i = 1; i < num_cnodes; i++) {
		head[i].prev = head + (i - 1);
		head[i].next = head + (i + 1);	/* if last one, overwrite it after the if */
	}
	head[num_cnodes - 1].next = NULL;
	return head;
Linus Torvalds's avatar
Linus Torvalds committed
364 365
}

366
/* pulls a cnode off the free list, or returns NULL on failure */
Jeff Mahoney's avatar
Jeff Mahoney committed
367
static struct reiserfs_journal_cnode *get_cnode(struct super_block *sb)
368 369
{
	struct reiserfs_journal_cnode *cn;
Jeff Mahoney's avatar
Jeff Mahoney committed
370
	struct reiserfs_journal *journal = SB_JOURNAL(sb);
371

Jeff Mahoney's avatar
Jeff Mahoney committed
372
	reiserfs_check_lock_depth(sb, "get_cnode");
373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388

	if (journal->j_cnode_free <= 0) {
		return NULL;
	}
	journal->j_cnode_used++;
	journal->j_cnode_free--;
	cn = journal->j_cnode_free_list;
	if (!cn) {
		return cn;
	}
	if (cn->next) {
		cn->next->prev = NULL;
	}
	journal->j_cnode_free_list = cn->next;
	memset(cn, 0, sizeof(struct reiserfs_journal_cnode));
	return cn;
Linus Torvalds's avatar
Linus Torvalds committed
389 390 391
}

/*
392 393
 * returns a cnode to the free list
 */
Jeff Mahoney's avatar
Jeff Mahoney committed
394
static void free_cnode(struct super_block *sb,
395 396
		       struct reiserfs_journal_cnode *cn)
{
Jeff Mahoney's avatar
Jeff Mahoney committed
397
	struct reiserfs_journal *journal = SB_JOURNAL(sb);
Linus Torvalds's avatar
Linus Torvalds committed
398

Jeff Mahoney's avatar
Jeff Mahoney committed
399
	reiserfs_check_lock_depth(sb, "free_cnode");
Linus Torvalds's avatar
Linus Torvalds committed
400

401 402 403 404 405 406 407 408 409
	journal->j_cnode_used--;
	journal->j_cnode_free++;
	/* memset(cn, 0, sizeof(struct reiserfs_journal_cnode)) ; */
	cn->next = journal->j_cnode_free_list;
	if (journal->j_cnode_free_list) {
		journal->j_cnode_free_list->prev = cn;
	}
	cn->prev = NULL;	/* not needed with the memset, but I might kill the memset, and forget to do this */
	journal->j_cnode_free_list = cn;
Linus Torvalds's avatar
Linus Torvalds committed
410 411
}

412 413 414 415
static void clear_prepared_bits(struct buffer_head *bh)
{
	clear_buffer_journal_prepared(bh);
	clear_buffer_journal_restore_dirty(bh);
Linus Torvalds's avatar
Linus Torvalds committed
416 417
}

418 419 420 421
/*
 * return a cnode with same dev, block number and size in table,
 * or null if not found
 */
422 423 424 425 426 427 428
static inline struct reiserfs_journal_cnode *get_journal_hash_dev(struct
								  super_block
								  *sb,
								  struct
								  reiserfs_journal_cnode
								  **table,
								  long bl)
Linus Torvalds's avatar
Linus Torvalds committed
429
{
430 431 432 433 434 435 436 437
	struct reiserfs_journal_cnode *cn;
	cn = journal_hash(table, sb, bl);
	while (cn) {
		if (cn->blocknr == bl && cn->sb == sb)
			return cn;
		cn = cn->hnext;
	}
	return (struct reiserfs_journal_cnode *)0;
Linus Torvalds's avatar
Linus Torvalds committed
438 439 440
}

/*
441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458
 * this actually means 'can this block be reallocated yet?'.  If you set
 * search_all, a block can only be allocated if it is not in the current
 * transaction, was not freed by the current transaction, and has no chance
 * of ever being overwritten by a replay after crashing.
 *
 * If you don't set search_all, a block can only be allocated if it is not
 * in the current transaction.  Since deleting a block removes it from the
 * current transaction, this case should never happen.  If you don't set
 * search_all, make sure you never write the block without logging it.
 *
 * next_zero_bit is a suggestion about the next block to try for find_forward.
 * when bl is rejected because it is set in a journal list bitmap, we search
 * for the next zero bit in the bitmap that rejected bl.  Then, we return
 * that through next_zero_bit for find_forward to try.
 *
 * Just because we return something in next_zero_bit does not mean we won't
 * reject it on the next call to reiserfs_in_journal
 */
Jeff Mahoney's avatar
Jeff Mahoney committed
459
int reiserfs_in_journal(struct super_block *sb,
460
			unsigned int bmap_nr, int bit_nr, int search_all,
461 462
			b_blocknr_t * next_zero_bit)
{
Jeff Mahoney's avatar
Jeff Mahoney committed
463
	struct reiserfs_journal *journal = SB_JOURNAL(sb);
464 465 466 467 468 469 470
	struct reiserfs_journal_cnode *cn;
	struct reiserfs_list_bitmap *jb;
	int i;
	unsigned long bl;

	*next_zero_bit = 0;	/* always start this at zero. */

Jeff Mahoney's avatar
Jeff Mahoney committed
471
	PROC_INFO_INC(sb, journal.in_journal);
472 473 474 475 476
	/*
	 * If we aren't doing a search_all, this is a metablock, and it
	 * will be logged before use.  if we crash before the transaction
	 * that freed it commits,  this transaction won't have committed
	 * either, and the block will never be written
477 478 479
	 */
	if (search_all) {
		for (i = 0; i < JOURNAL_NUM_BITMAPS; i++) {
Jeff Mahoney's avatar
Jeff Mahoney committed
480
			PROC_INFO_INC(sb, journal.in_journal_bitmap);
481 482 483 484 485 486 487 488 489
			jb = journal->j_list_bitmap + i;
			if (jb->journal_list && jb->bitmaps[bmap_nr] &&
			    test_bit(bit_nr,
				     (unsigned long *)jb->bitmaps[bmap_nr]->
				     data)) {
				*next_zero_bit =
				    find_next_zero_bit((unsigned long *)
						       (jb->bitmaps[bmap_nr]->
							data),
Jeff Mahoney's avatar
Jeff Mahoney committed
490
						       sb->s_blocksize << 3,
491 492 493 494 495 496
						       bit_nr + 1);
				return 1;
			}
		}
	}

Jeff Mahoney's avatar
Jeff Mahoney committed
497
	bl = bmap_nr * (sb->s_blocksize << 3) + bit_nr;
498 499 500
	/* is it in any old transactions? */
	if (search_all
	    && (cn =
Jeff Mahoney's avatar
Jeff Mahoney committed
501
		get_journal_hash_dev(sb, journal->j_list_hash_table, bl))) {
502 503 504 505
		return 1;
	}

	/* is it in the current transaction.  This should never happen */
Jeff Mahoney's avatar
Jeff Mahoney committed
506
	if ((cn = get_journal_hash_dev(sb, journal->j_hash_table, bl))) {
507 508 509 510
		BUG();
		return 1;
	}

Jeff Mahoney's avatar
Jeff Mahoney committed
511
	PROC_INFO_INC(sb, journal.in_journal_reusable);
512 513
	/* safe for reuse */
	return 0;
Linus Torvalds's avatar
Linus Torvalds committed
514 515
}

516
/* insert cn into table */
517 518 519 520
static inline void insert_journal_hash(struct reiserfs_journal_cnode **table,
				       struct reiserfs_journal_cnode *cn)
{
	struct reiserfs_journal_cnode *cn_orig;
Linus Torvalds's avatar
Linus Torvalds committed
521

522 523 524 525 526 527 528
	cn_orig = journal_hash(table, cn->sb, cn->blocknr);
	cn->hnext = cn_orig;
	cn->hprev = NULL;
	if (cn_orig) {
		cn_orig->hprev = cn;
	}
	journal_hash(table, cn->sb, cn->blocknr) = cn;
Linus Torvalds's avatar
Linus Torvalds committed
529 530 531
}

/* lock the current transaction */
Jeff Mahoney's avatar
Jeff Mahoney committed
532
static inline void lock_journal(struct super_block *sb)
533
{
Jeff Mahoney's avatar
Jeff Mahoney committed
534
	PROC_INFO_INC(sb, journal.lock_journal);
Frederic Weisbecker's avatar
Frederic Weisbecker committed
535 536

	reiserfs_mutex_lock_safe(&SB_JOURNAL(sb)->j_mutex, sb);
Linus Torvalds's avatar
Linus Torvalds committed
537 538 539
}

/* unlock the current transaction */
Jeff Mahoney's avatar
Jeff Mahoney committed
540
static inline void unlock_journal(struct super_block *sb)
541
{
Jeff Mahoney's avatar
Jeff Mahoney committed
542
	mutex_unlock(&SB_JOURNAL(sb)->j_mutex);
Linus Torvalds's avatar
Linus Torvalds committed
543 544 545 546
}

static inline void get_journal_list(struct reiserfs_journal_list *jl)
{
547
	jl->j_refcount++;
Linus Torvalds's avatar
Linus Torvalds committed
548 549 550
}

static inline void put_journal_list(struct super_block *s,
551
				    struct reiserfs_journal_list *jl)
Linus Torvalds's avatar
Linus Torvalds committed
552
{
553
	if (jl->j_refcount < 1) {
Jeff Mahoney's avatar
Jeff Mahoney committed
554
		reiserfs_panic(s, "journal-2", "trans id %u, refcount at %d",
555 556 557
			       jl->j_trans_id, jl->j_refcount);
	}
	if (--jl->j_refcount == 0)
558
		kfree(jl);
Linus Torvalds's avatar
Linus Torvalds committed
559 560 561
}

/*
562 563 564 565
 * this used to be much more involved, and I'm keeping it just in case
 * things get ugly again.  it gets called by flush_commit_list, and
 * cleans up any data stored about blocks freed during a transaction.
 */
Jeff Mahoney's avatar
Jeff Mahoney committed
566
static void cleanup_freed_for_journal_list(struct super_block *sb,
567 568
					   struct reiserfs_journal_list *jl)
{
Linus Torvalds's avatar
Linus Torvalds committed
569

570 571
	struct reiserfs_list_bitmap *jb = jl->j_list_bitmap;
	if (jb) {
Jeff Mahoney's avatar
Jeff Mahoney committed
572
		cleanup_bitmap_list(sb, jb);
573 574 575
	}
	jl->j_list_bitmap->journal_list = NULL;
	jl->j_list_bitmap = NULL;
Linus Torvalds's avatar
Linus Torvalds committed
576 577 578
}

static int journal_list_still_alive(struct super_block *s,
579
				    unsigned int trans_id)
580 581 582 583 584 585 586 587 588 589 590 591 592 593
{
	struct reiserfs_journal *journal = SB_JOURNAL(s);
	struct list_head *entry = &journal->j_journal_list;
	struct reiserfs_journal_list *jl;

	if (!list_empty(entry)) {
		jl = JOURNAL_LIST_ENTRY(entry->next);
		if (jl->j_trans_id <= trans_id) {
			return 1;
		}
	}
	return 0;
}

594 595 596 597 598 599 600 601 602 603 604 605 606
/*
 * If page->mapping was null, we failed to truncate this page for
 * some reason.  Most likely because it was truncated after being
 * logged via data=journal.
 *
 * This does a check to see if the buffer belongs to one of these
 * lost pages before doing the final put_bh.  If page->mapping was
 * null, it tries to free buffers on the page, which should make the
 * final page_cache_release drop the page from the lru.
 */
static void release_buffer_page(struct buffer_head *bh)
{
	struct page *page = bh->b_page;
Nick Piggin's avatar
Nick Piggin committed
607
	if (!page->mapping && trylock_page(page)) {
608 609 610 611 612 613 614 615 616 617 618
		page_cache_get(page);
		put_bh(bh);
		if (!page->mapping)
			try_to_free_buffers(page);
		unlock_page(page);
		page_cache_release(page);
	} else {
		put_bh(bh);
	}
}

619 620 621 622 623
static void reiserfs_end_buffer_io_sync(struct buffer_head *bh, int uptodate)
{
	char b[BDEVNAME_SIZE];

	if (buffer_journaled(bh)) {
624 625
		reiserfs_warning(NULL, "clm-2084",
				 "pinned buffer %lu:%s sent to disk",
626 627 628 629 630 631
				 bh->b_blocknr, bdevname(bh->b_bdev, b));
	}
	if (uptodate)
		set_buffer_uptodate(bh);
	else
		clear_buffer_uptodate(bh);
632

633
	unlock_buffer(bh);
634
	release_buffer_page(bh);
635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669
}

static void reiserfs_end_ordered_io(struct buffer_head *bh, int uptodate)
{
	if (uptodate)
		set_buffer_uptodate(bh);
	else
		clear_buffer_uptodate(bh);
	unlock_buffer(bh);
	put_bh(bh);
}

static void submit_logged_buffer(struct buffer_head *bh)
{
	get_bh(bh);
	bh->b_end_io = reiserfs_end_buffer_io_sync;
	clear_buffer_journal_new(bh);
	clear_buffer_dirty(bh);
	if (!test_clear_buffer_journal_test(bh))
		BUG();
	if (!buffer_uptodate(bh))
		BUG();
	submit_bh(WRITE, bh);
}

static void submit_ordered_buffer(struct buffer_head *bh)
{
	get_bh(bh);
	bh->b_end_io = reiserfs_end_ordered_io;
	clear_buffer_dirty(bh);
	if (!buffer_uptodate(bh))
		BUG();
	submit_bh(WRITE, bh);
}

Linus Torvalds's avatar
Linus Torvalds committed
670 671
#define CHUNK_SIZE 32
struct buffer_chunk {
672 673
	struct buffer_head *bh[CHUNK_SIZE];
	int nr;
Linus Torvalds's avatar
Linus Torvalds committed
674 675
};

676 677 678 679 680 681 682
static void write_chunk(struct buffer_chunk *chunk)
{
	int i;
	for (i = 0; i < chunk->nr; i++) {
		submit_logged_buffer(chunk->bh[i]);
	}
	chunk->nr = 0;
Linus Torvalds's avatar
Linus Torvalds committed
683 684
}

685 686 687 688 689 690 691
static void write_ordered_chunk(struct buffer_chunk *chunk)
{
	int i;
	for (i = 0; i < chunk->nr; i++) {
		submit_ordered_buffer(chunk->bh[i]);
	}
	chunk->nr = 0;
Linus Torvalds's avatar
Linus Torvalds committed
692 693 694
}

static int add_to_chunk(struct buffer_chunk *chunk, struct buffer_head *bh,
695
			spinlock_t * lock, void (fn) (struct buffer_chunk *))
Linus Torvalds's avatar
Linus Torvalds committed
696
{
697
	int ret = 0;
698
	BUG_ON(chunk->nr >= CHUNK_SIZE);
699 700 701
	chunk->bh[chunk->nr++] = bh;
	if (chunk->nr >= CHUNK_SIZE) {
		ret = 1;
702
		if (lock) {
703
			spin_unlock(lock);
704
			fn(chunk);
705
			spin_lock(lock);
706 707 708
		} else {
			fn(chunk);
		}
709 710
	}
	return ret;
Linus Torvalds's avatar
Linus Torvalds committed
711 712 713
}

static atomic_t nr_reiserfs_jh = ATOMIC_INIT(0);
714 715 716 717 718 719 720 721 722 723
static struct reiserfs_jh *alloc_jh(void)
{
	struct reiserfs_jh *jh;
	while (1) {
		jh = kmalloc(sizeof(*jh), GFP_NOFS);
		if (jh) {
			atomic_inc(&nr_reiserfs_jh);
			return jh;
		}
		yield();
Linus Torvalds's avatar
Linus Torvalds committed
724 725 726 727 728 729 730
	}
}

/*
 * we want to free the jh when the buffer has been written
 * and waited on
 */
731 732 733 734 735 736 737 738 739 740 741 742 743 744 745
void reiserfs_free_jh(struct buffer_head *bh)
{
	struct reiserfs_jh *jh;

	jh = bh->b_private;
	if (jh) {
		bh->b_private = NULL;
		jh->bh = NULL;
		list_del_init(&jh->list);
		kfree(jh);
		if (atomic_read(&nr_reiserfs_jh) <= 0)
			BUG();
		atomic_dec(&nr_reiserfs_jh);
		put_bh(bh);
	}
Linus Torvalds's avatar
Linus Torvalds committed
746 747 748
}

static inline int __add_jh(struct reiserfs_journal *j, struct buffer_head *bh,
749
			   int tail)
Linus Torvalds's avatar
Linus Torvalds committed
750
{
751
	struct reiserfs_jh *jh;
Linus Torvalds's avatar
Linus Torvalds committed
752

753 754 755 756 757 758 759 760 761
	if (bh->b_private) {
		spin_lock(&j->j_dirty_buffers_lock);
		if (!bh->b_private) {
			spin_unlock(&j->j_dirty_buffers_lock);
			goto no_jh;
		}
		jh = bh->b_private;
		list_del_init(&jh->list);
	} else {
762
no_jh:
763 764 765
		get_bh(bh);
		jh = alloc_jh();
		spin_lock(&j->j_dirty_buffers_lock);
766 767
		/*
		 * buffer must be locked for __add_jh, should be able to have
768 769
		 * two adds at the same time
		 */
770
		BUG_ON(bh->b_private);
771 772
		jh->bh = bh;
		bh->b_private = jh;
Linus Torvalds's avatar
Linus Torvalds committed
773
	}
774 775 776 777 778 779 780 781
	jh->jl = j->j_current_jl;
	if (tail)
		list_add_tail(&jh->list, &jh->jl->j_tail_bh_list);
	else {
		list_add_tail(&jh->list, &jh->jl->j_bh_list);
	}
	spin_unlock(&j->j_dirty_buffers_lock);
	return 0;
Linus Torvalds's avatar
Linus Torvalds committed
782 783
}

784 785 786
int reiserfs_add_tail_list(struct inode *inode, struct buffer_head *bh)
{
	return __add_jh(SB_JOURNAL(inode->i_sb), bh, 1);
Linus Torvalds's avatar
Linus Torvalds committed
787
}
788 789 790
int reiserfs_add_ordered_list(struct inode *inode, struct buffer_head *bh)
{
	return __add_jh(SB_JOURNAL(inode->i_sb), bh, 0);
Linus Torvalds's avatar
Linus Torvalds committed
791 792 793
}

#define JH_ENTRY(l) list_entry((l), struct reiserfs_jh, list)
794
static int write_ordered_buffers(spinlock_t * lock,
Linus Torvalds's avatar
Linus Torvalds committed
795
				 struct reiserfs_journal *j,
796
				 struct reiserfs_journal_list *jl,
Linus Torvalds's avatar
Linus Torvalds committed
797 798
				 struct list_head *list)
{
799 800 801 802 803 804 805 806 807 808 809 810 811
	struct buffer_head *bh;
	struct reiserfs_jh *jh;
	int ret = j->j_errno;
	struct buffer_chunk chunk;
	struct list_head tmp;
	INIT_LIST_HEAD(&tmp);

	chunk.nr = 0;
	spin_lock(lock);
	while (!list_empty(list)) {
		jh = JH_ENTRY(list->next);
		bh = jh->bh;
		get_bh(bh);
Nick Piggin's avatar
Nick Piggin committed
812
		if (!trylock_buffer(bh)) {
813
			if (!buffer_dirty(bh)) {
Akinobu Mita's avatar
Akinobu Mita committed
814
				list_move(&jh->list, &tmp);
815 816 817 818 819 820 821 822 823 824
				goto loop_next;
			}
			spin_unlock(lock);
			if (chunk.nr)
				write_ordered_chunk(&chunk);
			wait_on_buffer(bh);
			cond_resched();
			spin_lock(lock);
			goto loop_next;
		}
825 826
		/*
		 * in theory, dirty non-uptodate buffers should never get here,
827 828 829 830 831 832 833
		 * but the upper layer io error paths still have a few quirks.
		 * Handle them here as gracefully as we can
		 */
		if (!buffer_uptodate(bh) && buffer_dirty(bh)) {
			clear_buffer_dirty(bh);
			ret = -EIO;
		}
834
		if (buffer_dirty(bh)) {
Akinobu Mita's avatar
Akinobu Mita committed
835
			list_move(&jh->list, &tmp);
836 837 838 839 840
			add_to_chunk(&chunk, bh, lock, write_ordered_chunk);
		} else {
			reiserfs_free_jh(bh);
			unlock_buffer(bh);
		}
841
loop_next:
842 843 844 845 846
		put_bh(bh);
		cond_resched_lock(lock);
	}
	if (chunk.nr) {
		spin_unlock(lock);
Linus Torvalds's avatar
Linus Torvalds committed
847
		write_ordered_chunk(&chunk);
848
		spin_lock(lock);
Linus Torvalds's avatar
Linus Torvalds committed
849
	}
850 851 852 853 854 855 856 857 858 859 860 861 862 863
	while (!list_empty(&tmp)) {
		jh = JH_ENTRY(tmp.prev);
		bh = jh->bh;
		get_bh(bh);
		reiserfs_free_jh(bh);

		if (buffer_locked(bh)) {
			spin_unlock(lock);
			wait_on_buffer(bh);
			spin_lock(lock);
		}
		if (!buffer_uptodate(bh)) {
			ret = -EIO;
		}
864 865 866 867 868 869 870 871
		/*
		 * ugly interaction with invalidatepage here.
		 * reiserfs_invalidate_page will pin any buffer that has a
		 * valid journal head from an older transaction.  If someone
		 * else sets our buffer dirty after we write it in the first
		 * loop, and then someone truncates the page away, nobody
		 * will ever write the buffer. We're safe if we write the
		 * page one last time after freeing the journal header.
872 873 874 875 876 877
		 */
		if (buffer_dirty(bh) && unlikely(bh->b_page->mapping == NULL)) {
			spin_unlock(lock);
			ll_rw_block(WRITE, 1, &bh);
			spin_lock(lock);
		}
878 879
		put_bh(bh);
		cond_resched_lock(lock);
Linus Torvalds's avatar
Linus Torvalds committed
880
	}
881 882 883
	spin_unlock(lock);
	return ret;
}
Linus Torvalds's avatar
Linus Torvalds committed
884

885 886 887 888 889 890 891
static int flush_older_commits(struct super_block *s,
			       struct reiserfs_journal_list *jl)
{
	struct reiserfs_journal *journal = SB_JOURNAL(s);
	struct reiserfs_journal_list *other_jl;
	struct reiserfs_journal_list *first_jl;
	struct list_head *entry;
892 893 894
	unsigned int trans_id = jl->j_trans_id;
	unsigned int other_trans_id;
	unsigned int first_trans_id;
895

896
find_first:
897 898 899 900 901 902 903 904 905 906
	/*
	 * first we walk backwards to find the oldest uncommitted transation
	 */
	first_jl = jl;
	entry = jl->j_list.prev;
	while (1) {
		other_jl = JOURNAL_LIST_ENTRY(entry);
		if (entry == &journal->j_journal_list ||
		    atomic_read(&other_jl->j_older_commits_done))
			break;
Linus Torvalds's avatar
Linus Torvalds committed
907

908 909 910
		first_jl = other_jl;
		entry = other_jl->j_list.prev;
	}
Linus Torvalds's avatar
Linus Torvalds committed
911

912 913 914 915
	/* if we didn't find any older uncommitted transactions, return now */
	if (first_jl == jl) {
		return 0;
	}
Linus Torvalds's avatar
Linus Torvalds committed
916

917 918 919 920 921 922 923 924 925 926 927 928 929 930 931
	first_trans_id = first_jl->j_trans_id;

	entry = &first_jl->j_list;
	while (1) {
		other_jl = JOURNAL_LIST_ENTRY(entry);
		other_trans_id = other_jl->j_trans_id;

		if (other_trans_id < trans_id) {
			if (atomic_read(&other_jl->j_commit_left) != 0) {
				flush_commit_list(s, other_jl, 0);

				/* list we were called with is gone, return */
				if (!journal_list_still_alive(s, trans_id))
					return 1;

932 933 934 935 936
				/*
				 * the one we just flushed is gone, this means
				 * all older lists are also gone, so first_jl
				 * is no longer valid either.  Go back to the
				 * beginning.
937 938 939 940 941 942 943 944 945 946 947
				 */
				if (!journal_list_still_alive
				    (s, other_trans_id)) {
					goto find_first;
				}
			}
			entry = entry->next;
			if (entry == &journal->j_journal_list)
				return 0;
		} else {
			return 0;
Linus Torvalds's avatar
Linus Torvalds committed
948 949
		}
	}
950
	return 0;
Linus Torvalds's avatar
Linus Torvalds committed
951
}
Adrian Bunk's avatar
Adrian Bunk committed
952 953

static int reiserfs_async_progress_wait(struct super_block *s)
954 955
{
	struct reiserfs_journal *j = SB_JOURNAL(s);
Frederic Weisbecker's avatar
Frederic Weisbecker committed
956 957

	if (atomic_read(&j->j_async_throttle)) {
958 959 960
		int depth;

		depth = reiserfs_write_unlock_nested(s);
961
		congestion_wait(BLK_RW_ASYNC, HZ / 10);
962
		reiserfs_write_lock_nested(s, depth);
Frederic Weisbecker's avatar
Frederic Weisbecker committed
963 964
	}

965
	return 0;
Linus Torvalds's avatar
Linus Torvalds committed
966 967 968
}

/*
969 970 971 972 973 974
 * if this journal list still has commit blocks unflushed, send them to disk.
 *
 * log areas must be flushed in order (transaction 2 can't commit before
 * transaction 1) Before the commit block can by written, every other log
 * block must be safely on disk
 */
975 976 977 978
static int flush_commit_list(struct super_block *s,
			     struct reiserfs_journal_list *jl, int flushall)
{
	int i;
979
	b_blocknr_t bn;
980
	struct buffer_head *tbh = NULL;
981
	unsigned int trans_id = jl->j_trans_id;
982 983
	struct reiserfs_journal *journal = SB_JOURNAL(s);
	int retval = 0;
984
	int write_len;
985
	int depth;
986 987 988 989 990 991 992

	reiserfs_check_lock_depth(s, "flush_commit_list");

	if (atomic_read(&jl->j_older_commits_done)) {
		return 0;
	}

993 994 995
	/*
	 * before we can put our commit blocks on disk, we have to make
	 * sure everyone older than us is on disk too
996 997 998 999 1000 1001 1002
	 */
	BUG_ON(jl->j_len <= 0);
	BUG_ON(trans_id == journal->j_trans_id);

	get_journal_list(jl);
	if (flushall) {
		if (flush_older_commits(s, jl) == 1) {
1003 1004 1005 1006
			/*
			 * list disappeared during flush_older_commits.
			 * return
			 */
1007 1008 1009 1010 1011
			goto put_jl;
		}
	}

	/* make sure nobody is trying to flush this one at the same time */
Frederic Weisbecker's avatar
Frederic Weisbecker committed
1012 1013
	reiserfs_mutex_lock_safe(&jl->j_commit_mutex, s);

1014
	if (!journal_list_still_alive(s, trans_id)) {
1015
		mutex_unlock(&jl->j_commit_mutex);
1016 1017 1018 1019 1020
		goto put_jl;
	}
	BUG_ON(jl->j_trans_id == 0);

	/* this commit is done, exit */
1021
	if (atomic_read(&jl->j_commit_left) <= 0) {
1022
		if (flushall) {
1023
			atomic_set(&jl->j_older_commits_done, 1);
1024
		}
1025
		mutex_unlock(&jl->j_commit_mutex);
1026 1027 1028 1029
		goto put_jl;
	}

	if (!list_empty(&jl->j_bh_list)) {
1030
		int ret;
Frederic Weisbecker's avatar
Frederic Weisbecker committed
1031 1032 1033 1034 1035

		/*
		 * We might sleep in numerous places inside
		 * write_ordered_buffers. Relax the write lock.
		 */
1036
		depth = reiserfs_write_unlock_nested(s);
1037 1038 1039 1040
		ret = write_ordered_buffers(&journal->j_dirty_buffers_lock,
					    journal, jl, &jl->j_bh_list);
		if (ret < 0 && retval == 0)
			retval = ret;
1041
		reiserfs_write_lock_nested(s, depth);
1042 1043 1044 1045
	}
	BUG_ON(!list_empty(&jl->j_bh_list));
	/*
	 * for the description block and all the log blocks, submit any buffers
1046 1047 1048 1049
	 * that haven't already reached the disk.  Try to write at least 256
	 * log blocks. later on, we will only wait on blocks that correspond
	 * to this transaction, but while we're unplugging we might as well
	 * get a chunk of data on there.
1050 1051
	 */
	atomic_inc(&journal->j_async_throttle);
1052 1053 1054 1055
	write_len = jl->j_len + 1;
	if (write_len < 256)
		write_len = 256;
	for (i = 0 ; i < write_len ; i++) {
1056 1057 1058
		bn = SB_ONDISK_JOURNAL_1st_BLOCK(s) + (jl->j_start + i) %
		    SB_ONDISK_JOURNAL_SIZE(s);
		tbh = journal_find_get_block(s, bn);
1059
		if (tbh) {
1060
			if (buffer_dirty(tbh)) {
1061
		            depth = reiserfs_write_unlock_nested(s);
1062
			    ll_rw_block(WRITE, 1, &tbh);
1063
			    reiserfs_write_lock_nested(s, depth);
1064
			}
1065 1066
			put_bh(tbh) ;
		}
1067 1068 1069 1070 1071 1072 1073
	}
	atomic_dec(&journal->j_async_throttle);

	for (i = 0; i < (jl->j_len + 1); i++) {
		bn = SB_ONDISK_JOURNAL_1st_BLOCK(s) +
		    (jl->j_start + i) % SB_ONDISK_JOURNAL_SIZE(s);
		tbh = journal_find_get_block(s, bn);
Frederic Weisbecker's avatar
Frederic Weisbecker committed
1074

1075 1076 1077
		depth = reiserfs_write_unlock_nested(s);
		__wait_on_buffer(tbh);
		reiserfs_write_lock_nested(s, depth);
1078 1079 1080 1081
		/*
		 * since we're using ll_rw_blk above, it might have skipped
		 * over a locked buffer.  Double check here
		 */
Frederic Weisbecker's avatar
Frederic Weisbecker committed
1082 1083
		/* redundant, sync_dirty_buffer() checks */
		if (buffer_dirty(tbh)) {
1084
			depth = reiserfs_write_unlock_nested(s);
1085
			sync_dirty_buffer(tbh);
1086
			reiserfs_write_lock_nested(s, depth);
Frederic Weisbecker's avatar
Frederic Weisbecker committed
1087
		}
1088
		if (unlikely(!buffer_uptodate(tbh))) {
Linus Torvalds's avatar
Linus Torvalds committed
1089
#ifdef CONFIG_REISERFS_CHECK
1090 1091
			reiserfs_warning(s, "journal-601",
					 "buffer write failed");
Linus Torvalds's avatar
Linus Torvalds committed
1092
#endif
1093 1094
			retval = -EIO;
		}
1095 1096 1097 1098
		/* once for journal_find_get_block */
		put_bh(tbh);
		/* once due to original getblk in do_journal_end */
		put_bh(tbh);
1099
		atomic_dec(&jl->j_commit_left);
1100 1101
	}

1102
	BUG_ON(atomic_read(&jl->j_commit_left) != 1);
1103

1104 1105
	/*
	 * If there was a write error in the journal - we can't commit
1106 1107
	 * this transaction - it will be invalid and, if successful,
	 * will just end up propagating the write error out to
1108 1109
	 * the file system.
	 */
1110 1111 1112 1113
	if (likely(!retval && !reiserfs_is_journal_aborted (journal))) {
		if (buffer_dirty(jl->j_commit_bh))
			BUG();
		mark_buffer_dirty(jl->j_commit_bh) ;
1114
		depth = reiserfs_write_unlock_nested(s);
1115 1116 1117 1118
		if (reiserfs_barrier_flush(s))
			__sync_dirty_buffer(jl->j_commit_bh, WRITE_FLUSH_FUA);
		else
			sync_dirty_buffer(jl->j_commit_bh);
1119
		reiserfs_write_lock_nested(s, depth);
Frederic Weisbecker's avatar
Frederic Weisbecker committed
1120
	}
1121

1122 1123
	/*
	 * If there was a write error in the journal - we can't commit this
1124
	 * transaction - it will be invalid and, if successful, will just end
1125 1126
	 * up propagating the write error out to the filesystem.
	 */
1127
	if (unlikely(!buffer_uptodate(jl->j_commit_bh))) {
Linus Torvalds's avatar
Linus Torvalds committed
1128
#ifdef CONFIG_REISERFS_CHECK
1129
		reiserfs_warning(s, "journal-615", "buffer write failed");
Linus Torvalds's avatar
Linus Torvalds committed
1130
#endif
1131 1132 1133 1134 1135
		retval = -EIO;
	}
	bforget(jl->j_commit_bh);
	if (journal->j_last_commit_id != 0 &&
	    (jl->j_trans_id - journal->j_last_commit_id) != 1) {
1136
		reiserfs_warning(s, "clm-2200", "last commit %lu, current %lu",
1137 1138 1139 1140
				 journal->j_last_commit_id, jl->j_trans_id);
	}
	journal->j_last_commit_id = jl->j_trans_id;

1141 1142 1143 1144
	/*
	 * now, every commit block is on the disk.  It is safe to allow
	 * blocks freed during this transaction to be reallocated
	 */
1145 1146 1147 1148 1149 1150 1151
	cleanup_freed_for_journal_list(s, jl);

	retval = retval ? retval : journal->j_errno;

	/* mark the metadata dirty */
	if (!retval)
		dirty_one_transaction(s, jl);
1152
	atomic_dec(&jl->j_commit_left);
1153 1154

	if (flushall) {
1155
		atomic_set(&jl->j_older_commits_done, 1);
1156
	}
1157
	mutex_unlock(&jl->j_commit_mutex);
1158
put_jl:
1159 1160 1161 1162
	put_journal_list(s, jl);

	if (retval)
		reiserfs_abort(s, retval, "Journal write error in %s",
1163
			       __func__);
1164
	return retval;
Linus Torvalds's avatar
Linus Torvalds committed
1165 1166 1167
}

/*
1168 1169 1170
 * flush_journal_list frequently needs to find a newer transaction for a
 * given block.  This does that, or returns NULL if it can't find anything
 */
1171 1172 1173 1174 1175 1176
static struct reiserfs_journal_list *find_newer_jl_for_cn(struct
							  reiserfs_journal_cnode
							  *cn)
{
	struct super_block *sb = cn->sb;
	b_blocknr_t blocknr = cn->blocknr;
Linus Torvalds's avatar
Linus Torvalds committed
1177

1178 1179 1180 1181 1182 1183 1184 1185
	cn = cn->hprev;
	while (cn) {
		if (cn->sb == sb && cn->blocknr == blocknr && cn->jlist) {
			return cn->jlist;
		}
		cn = cn->hprev;
	}
	return NULL;
Linus Torvalds's avatar
Linus Torvalds committed
1186 1187
}

1188 1189 1190 1191
static void remove_journal_hash(struct super_block *,
				struct reiserfs_journal_cnode **,
				struct reiserfs_journal_list *, unsigned long,
				int);
Linus Torvalds's avatar
Linus Torvalds committed
1192 1193

/*
1194 1195 1196 1197 1198
 * once all the real blocks have been flushed, it is safe to remove them
 * from the journal list for this transaction.  Aside from freeing the
 * cnode, this also allows the block to be reallocated for data blocks
 * if it had been deleted.
 */
Jeff Mahoney's avatar
Jeff Mahoney committed
1199
static void remove_all_from_journal_list(struct super_block *sb,
1200 1201 1202
					 struct reiserfs_journal_list *jl,
					 int debug)
{
Jeff Mahoney's avatar
Jeff Mahoney committed
1203
	struct reiserfs_journal *journal = SB_JOURNAL(sb);
1204 1205 1206
	struct reiserfs_journal_cnode *cn, *last;
	cn = jl->j_realblock;

1207 1208 1209
	/*
	 * which is better, to lock once around the whole loop, or
	 * to lock for each call to remove_journal_hash?
1210 1211 1212 1213
	 */
	while (cn) {
		if (cn->blocknr != 0) {
			if (debug) {
Jeff Mahoney's avatar
Jeff Mahoney committed
1214
				reiserfs_warning(sb, "reiserfs-2201",
1215 1216 1217 1218 1219
						 "block %u, bh is %d, state %ld",
						 cn->blocknr, cn->bh ? 1 : 0,
						 cn->state);
			}
			cn->state = 0;
Jeff Mahoney's avatar
Jeff Mahoney committed
1220
			remove_journal_hash(sb, journal->j_list_hash_table,
1221 1222 1223 1224
					    jl, cn->blocknr, 1);
		}
		last = cn;
		cn = cn->next;
Jeff Mahoney's avatar
Jeff Mahoney committed
1225
		free_cnode(sb, last);
1226 1227
	}
	jl->j_realblock = NULL;
Linus Torvalds's avatar
Linus Torvalds committed
1228 1229 1230
}

/*
1231 1232 1233 1234 1235 1236 1237
 * if this timestamp is greater than the timestamp we wrote last to the
 * header block, write it to the header block.  once this is done, I can
 * safely say the log area for this transaction won't ever be replayed,
 * and I can start releasing blocks in this transaction for reuse as data
 * blocks.  called by flush_journal_list, before it calls
 * remove_all_from_journal_list
 */
Jeff Mahoney's avatar
Jeff Mahoney committed
1238
static int _update_journal_header_block(struct super_block *sb,
1239
					unsigned long offset,
1240
					unsigned int trans_id)
1241 1242
{
	struct reiserfs_journal_header *jh;
Jeff Mahoney's avatar
Jeff Mahoney committed
1243
	struct reiserfs_journal *journal = SB_JOURNAL(sb);
1244
	int depth;
Linus Torvalds's avatar
Linus Torvalds committed
1245

1246 1247
	if (reiserfs_is_journal_aborted(journal))
		return -EIO;
Linus Torvalds's avatar
Linus Torvalds committed
1248

1249 1250
	if (trans_id >= journal->j_last_flush_trans_id) {
		if (buffer_locked((journal->j_header_bh))) {
1251 1252 1253
			depth = reiserfs_write_unlock_nested(sb);
			__wait_on_buffer(journal->j_header_bh);
			reiserfs_write_lock_nested(sb, depth);
1254
			if (unlikely(!buffer_uptodate(journal->j_header_bh))) {
Linus Torvalds's avatar
Linus Torvalds committed
1255
#ifdef CONFIG_REISERFS_CHECK
Jeff Mahoney's avatar
Jeff Mahoney committed
1256
				reiserfs_warning(sb, "journal-699",
1257
						 "buffer write failed");
Linus Torvalds's avatar
Linus Torvalds committed
1258
#endif
1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269
				return -EIO;
			}
		}
		journal->j_last_flush_trans_id = trans_id;
		journal->j_first_unflushed_offset = offset;
		jh = (struct reiserfs_journal_header *)(journal->j_header_bh->
							b_data);
		jh->j_last_flush_trans_id = cpu_to_le32(trans_id);
		jh->j_first_unflushed_offset = cpu_to_le32(offset);
		jh->j_mount_id = cpu_to_le32(journal->j_mount_id);

1270
		set_buffer_dirty(journal->j_header_bh);
1271
		depth = reiserfs_write_unlock_nested(sb);
1272 1273 1274 1275

		if (reiserfs_barrier_flush(sb))
			__sync_dirty_buffer(journal->j_header_bh, WRITE_FLUSH_FUA);
		else
1276
			sync_dirty_buffer(journal->j_header_bh);
1277

1278
		reiserfs_write_lock_nested(sb, depth);
1279
		if (!buffer_uptodate(journal->j_header_bh)) {
Jeff Mahoney's avatar
Jeff Mahoney committed
1280
			reiserfs_warning(sb, "journal-837",
1281
					 "IO error during journal replay");
1282 1283 1284 1285 1286 1287
			return -EIO;
		}
	}
	return 0;
}

Jeff Mahoney's avatar
Jeff Mahoney committed
1288
static int update_journal_header_block(struct super_block *sb,
1289
				       unsigned long offset,
1290
				       unsigned int trans_id)
1291
{
Jeff Mahoney's avatar
Jeff Mahoney committed
1292
	return _update_journal_header_block(sb, offset, trans_id);
Linus Torvalds's avatar
Linus Torvalds committed
1293
}
1294

1295 1296
/*
** flush any and all journal lists older than you are
Linus Torvalds's avatar
Linus Torvalds committed
1297 1298
** can only be called from flush_journal_list
*/
Jeff Mahoney's avatar
Jeff Mahoney committed
1299
static int flush_older_journal_lists(struct super_block *sb,
1300 1301 1302 1303
				     struct reiserfs_journal_list *jl)
{
	struct list_head *entry;
	struct reiserfs_journal_list *other_jl;
Jeff Mahoney's avatar
Jeff Mahoney committed
1304
	struct reiserfs_journal *journal = SB_JOURNAL(sb);
1305
	unsigned int trans_id = jl->j_trans_id;
1306

1307 1308
	/*
	 * we know we are the only ones flushing things, no extra race
1309 1310
	 * protection is required.
	 */
1311
restart:
1312 1313 1314 1315 1316 1317 1318 1319
	entry = journal->j_journal_list.next;
	/* Did we wrap? */
	if (entry == &journal->j_journal_list)
		return 0;
	other_jl = JOURNAL_LIST_ENTRY(entry);
	if (other_jl->j_trans_id < trans_id) {
		BUG_ON(other_jl->j_refcount <= 0);
		/* do not flush all */
Jeff Mahoney's avatar
Jeff Mahoney committed
1320
		flush_journal_list(sb, other_jl, 0);
1321 1322 1323 1324 1325

		/* other_jl is now deleted from the list */
		goto restart;
	}
	return 0;
Linus Torvalds's avatar
Linus Torvalds committed
1326 1327 1328
}

static void del_from_work_list(struct super_block *s,
1329 1330 1331 1332 1333 1334 1335
			       struct reiserfs_journal_list *jl)
{
	struct reiserfs_journal *journal = SB_JOURNAL(s);
	if (!list_empty(&jl->j_working_list)) {
		list_del_init(&jl->j_working_list);
		journal->j_num_work_lists--;
	}
Linus Torvalds's avatar
Linus Torvalds committed
1336 1337
}

1338 1339 1340 1341 1342 1343 1344 1345 1346 1347
/*
 * flush a journal list, both commit and real blocks
 *
 * always set flushall to 1, unless you are calling from inside
 * flush_journal_list
 *
 * IMPORTANT.  This can only be called while there are no journal writers,
 * and the journal is locked.  That means it can only be called from
 * do_journal_end, or by journal_release
 */
1348 1349
static int flush_journal_list(struct super_block *s,
			      struct reiserfs_journal_list *jl, int flushall)
Linus Torvalds's avatar
Linus Torvalds committed
1350
{
1351 1352 1353 1354 1355 1356 1357 1358 1359
	struct reiserfs_journal_list *pjl;
	struct reiserfs_journal_cnode *cn, *last;
	int count;
	int was_jwait = 0;
	int was_dirty = 0;
	struct buffer_head *saved_bh;
	unsigned long j_len_saved = jl->j_len;
	struct reiserfs_journal *journal = SB_JOURNAL(s);
	int err = 0;
1360
	int depth;
1361 1362 1363 1364

	BUG_ON(j_len_saved <= 0);

	if (atomic_read(&journal->j_wcount) != 0) {
1365
		reiserfs_warning(s, "clm-2048", "called with wcount %d",
1366 1367
				 atomic_read(&journal->j_wcount));
	}
Linus Torvalds's avatar
Linus Torvalds committed
1368

1369 1370
	/* if flushall == 0, the lock is already held */
	if (flushall) {
Frederic Weisbecker's avatar
Frederic Weisbecker committed
1371
		reiserfs_mutex_lock_safe(&journal->j_flush_mutex, s);
1372
	} else if (mutex_trylock(&journal->j_flush_mutex)) {
1373 1374
		BUG();
	}
Linus Torvalds's avatar
Linus Torvalds committed
1375

1376 1377
	count = 0;
	if (j_len_saved > journal->j_trans_max) {
Jeff Mahoney's avatar
Jeff Mahoney committed
1378
		reiserfs_panic(s, "journal-715", "length is %lu, trans id %lu",
1379 1380 1381
			       j_len_saved, jl->j_trans_id);
		return 0;
	}
Linus Torvalds's avatar
Linus Torvalds committed
1382

1383
	/* if all the work is already done, get out of here */
1384 1385
	if (atomic_read(&jl->j_nonzerolen) <= 0 &&
	    atomic_read(&jl->j_commit_left) <= 0) {
1386 1387 1388
		goto flush_older_and_return;
	}

1389 1390 1391
	/*
	 * start by putting the commit list on disk.  This will also flush
	 * the commit lists of any olders transactions
1392 1393 1394 1395 1396 1397 1398 1399
	 */
	flush_commit_list(s, jl, 1);

	if (!(jl->j_state & LIST_DIRTY)
	    && !reiserfs_is_journal_aborted(journal))
		BUG();

	/* are we done now? */
1400 1401
	if (atomic_read(&jl->j_nonzerolen) <= 0 &&
	    atomic_read(&jl->j_commit_left) <= 0) {
1402 1403 1404
		goto flush_older_and_return;
	}

1405 1406 1407
	/*
	 * loop through each cnode, see if we need to write it,
	 * or wait on a more recent transaction, or just ignore it
1408
	 */
1409
	if (atomic_read(&journal->j_wcount) != 0) {
Jeff Mahoney's avatar
Jeff Mahoney committed
1410 1411
		reiserfs_panic(s, "journal-844", "journal list is flushing, "
			       "wcount is not 0");
1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422
	}
	cn = jl->j_realblock;
	while (cn) {
		was_jwait = 0;
		was_dirty = 0;
		saved_bh = NULL;
		/* blocknr of 0 is no longer in the hash, ignore it */
		if (cn->blocknr == 0) {
			goto free_cnode;
		}

1423 1424 1425 1426
		/*
		 * This transaction failed commit.
		 * Don't write out to the disk
		 */
1427 1428 1429 1430
		if (!(jl->j_state & LIST_DIRTY))
			goto free_cnode;

		pjl = find_newer_jl_for_cn(cn);
1431 1432 1433 1434
		/*
		 * the order is important here.  We check pjl to make sure we
		 * don't clear BH_JDirty_wait if we aren't the one writing this
		 * block to disk
1435 1436 1437 1438
		 */
		if (!pjl && cn->bh) {
			saved_bh = cn->bh;

1439 1440 1441
			/*
			 * we do this to make sure nobody releases the
			 * buffer while we are working with it
1442 1443 1444 1445 1446 1447 1448 1449
			 */
			get_bh(saved_bh);

			if (buffer_journal_dirty(saved_bh)) {
				BUG_ON(!can_dirty(cn));
				was_jwait = 1;
				was_dirty = 1;
			} else if (can_dirty(cn)) {
1450 1451 1452 1453
				/*
				 * everything with !pjl && jwait
				 * should be writable
				 */
1454 1455 1456 1457
				BUG();
			}
		}

1458 1459 1460
		/*
		 * if someone has this block in a newer transaction, just make
		 * sure they are committed, and don't try writing it to disk
1461 1462 1463 1464 1465 1466 1467
		 */
		if (pjl) {
			if (atomic_read(&pjl->j_commit_left))
				flush_commit_list(s, pjl, 1);
			goto free_cnode;
		}

1468 1469 1470
		/*
		 * bh == NULL when the block got to disk on its own, OR,
		 * the block got freed in a future transaction
1471 1472 1473 1474 1475
		 */
		if (saved_bh == NULL) {
			goto free_cnode;
		}

1476 1477 1478 1479
		/*
		 * this should never happen.  kupdate_one_transaction has
		 * this list locked while it works, so we should never see a
		 * buffer here that is not marked JDirty_wait
1480 1481
		 */
		if ((!was_jwait) && !buffer_locked(saved_bh)) {
1482 1483
			reiserfs_warning(s, "journal-813",
					 "BAD! buffer %llu %cdirty %cjwait, "
1484 1485 1486 1487 1488 1489
					 "not in a newer tranasction",
					 (unsigned long long)saved_bh->
					 b_blocknr, was_dirty ? ' ' : '!',
					 was_jwait ? ' ' : '!');
		}
		if (was_dirty) {
1490 1491 1492 1493
			/*
			 * we inc again because saved_bh gets decremented
			 * at free_cnode
			 */
1494 1495 1496 1497 1498 1499 1500 1501 1502 1503
			get_bh(saved_bh);
			set_bit(BLOCK_NEEDS_FLUSH, &cn->state);
			lock_buffer(saved_bh);
			BUG_ON(cn->blocknr != saved_bh->b_blocknr);
			if (buffer_dirty(saved_bh))
				submit_logged_buffer(saved_bh);
			else
				unlock_buffer(saved_bh);
			count++;
		} else {
1504 1505
			reiserfs_warning(s, "clm-2082",
					 "Unable to flush buffer %llu in %s",
1506
					 (unsigned long long)saved_bh->
1507
					 b_blocknr, __func__);
1508
		}
1509
free_cnode:
1510 1511 1512
		last = cn;
		cn = cn->next;
		if (saved_bh) {
1513 1514 1515 1516
			/*
			 * we incremented this to keep others from
			 * taking the buffer head away
			 */
1517
			put_bh(saved_bh);
1518
			if (atomic_read(&saved_bh->b_count) < 0) {
1519 1520
				reiserfs_warning(s, "journal-945",
						 "saved_bh->b_count < 0");
1521 1522 1523 1524 1525 1526 1527 1528
			}
		}
	}
	if (count > 0) {
		cn = jl->j_realblock;
		while (cn) {
			if (test_bit(BLOCK_NEEDS_FLUSH, &cn->state)) {
				if (!cn->bh) {
Jeff Mahoney's avatar
Jeff Mahoney committed
1529 1530
					reiserfs_panic(s, "journal-1011",
						       "cn->bh is NULL");
1531
				}
Frederic Weisbecker's avatar
Frederic Weisbecker committed
1532

1533 1534 1535
				depth = reiserfs_write_unlock_nested(s);
				__wait_on_buffer(cn->bh);
				reiserfs_write_lock_nested(s, depth);
Frederic Weisbecker's avatar
Frederic Weisbecker committed
1536

1537
				if (!cn->bh) {
Jeff Mahoney's avatar
Jeff Mahoney committed
1538 1539
					reiserfs_panic(s, "journal-1012",
						       "cn->bh is NULL");
1540 1541 1542
				}
				if (unlikely(!buffer_uptodate(cn->bh))) {
#ifdef CONFIG_REISERFS_CHECK
1543 1544
					reiserfs_warning(s, "journal-949",
							 "buffer write failed");
1545 1546 1547
#endif
					err = -EIO;
				}
1548 1549 1550 1551
				/*
				 * note, we must clear the JDirty_wait bit
				 * after the up to date check, otherwise we
				 * race against our flushpage routine
1552 1553 1554 1555
				 */
				BUG_ON(!test_clear_buffer_journal_dirty
				       (cn->bh));

1556
				/* drop one ref for us */
1557
				put_bh(cn->bh);
1558 1559
				/* drop one ref for journal_mark_dirty */
				release_buffer_page(cn->bh);
1560 1561 1562 1563 1564 1565 1566 1567
			}
			cn = cn->next;
		}
	}

	if (err)
		reiserfs_abort(s, -EIO,
			       "Write error while pushing transaction to disk in %s",
1568
			       __func__);
1569
flush_older_and_return:
1570

1571 1572 1573 1574 1575
	/*
	 * before we can update the journal header block, we _must_ flush all
	 * real blocks from all older transactions to disk.  This is because
	 * once the header block is updated, this transaction will not be
	 * replayed after a crash
1576 1577 1578 1579 1580 1581
	 */
	if (flushall) {
		flush_older_journal_lists(s, jl);
	}

	err = journal->j_errno;
1582 1583 1584 1585 1586 1587 1588 1589
	/*
	 * before we can remove everything from the hash tables for this
	 * transaction, we must make sure it can never be replayed
	 *
	 * since we are only called from do_journal_end, we know for sure there
	 * are no allocations going on while we are flushing journal lists.  So,
	 * we only need to update the journal header block for the last list
	 * being flushed
1590 1591 1592 1593 1594 1595 1596 1597 1598 1599
	 */
	if (!err && flushall) {
		err =
		    update_journal_header_block(s,
						(jl->j_start + jl->j_len +
						 2) % SB_ONDISK_JOURNAL_SIZE(s),
						jl->j_trans_id);
		if (err)
			reiserfs_abort(s, -EIO,
				       "Write error while updating journal header in %s",
1600
				       __func__);
1601 1602 1603 1604 1605 1606 1607 1608
	}
	remove_all_from_journal_list(s, jl, 0);
	list_del_init(&jl->j_list);
	journal->j_num_lists--;
	del_from_work_list(s, jl);

	if (journal->j_last_flush_id != 0 &&
	    (jl->j_trans_id - journal->j_last_flush_id) != 1) {
1609
		reiserfs_warning(s, "clm-2201", "last flush %lu, current %lu",
1610 1611 1612 1613
				 journal->j_last_flush_id, jl->j_trans_id);
	}
	journal->j_last_flush_id = jl->j_trans_id;

1614 1615
	/*
	 * not strictly required since we are freeing the list, but it should
1616 1617 1618
	 * help find code using dead lists later on
	 */
	jl->j_len = 0;
1619
	atomic_set(&jl->j_nonzerolen, 0);
1620 1621 1622 1623 1624 1625 1626
	jl->j_start = 0;
	jl->j_realblock = NULL;
	jl->j_commit_bh = NULL;
	jl->j_trans_id = 0;
	jl->j_state = 0;
	put_journal_list(s, jl);
	if (flushall)
1627
		mutex_unlock(&journal->j_flush_mutex);
1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645
	return err;
}

static int write_one_transaction(struct super_block *s,
				 struct reiserfs_journal_list *jl,
				 struct buffer_chunk *chunk)
{
	struct reiserfs_journal_cnode *cn;
	int ret = 0;

	jl->j_state |= LIST_TOUCHED;
	del_from_work_list(s, jl);
	if (jl->j_len == 0 || atomic_read(&jl->j_nonzerolen) == 0) {
		return 0;
	}

	cn = jl->j_realblock;
	while (cn) {
1646 1647 1648
		/*
		 * if the blocknr == 0, this has been cleared from the hash,
		 * skip it
1649 1650 1651 1652 1653 1654
		 */
		if (cn->blocknr == 0) {
			goto next;
		}
		if (cn->bh && can_dirty(cn) && buffer_dirty(cn->bh)) {
			struct buffer_head *tmp_bh;
1655 1656
			/*
			 * we can race against journal_mark_freed when we try
1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674
			 * to lock_buffer(cn->bh), so we have to inc the buffer
			 * count, and recheck things after locking
			 */
			tmp_bh = cn->bh;
			get_bh(tmp_bh);
			lock_buffer(tmp_bh);
			if (cn->bh && can_dirty(cn) && buffer_dirty(tmp_bh)) {
				if (!buffer_journal_dirty(tmp_bh) ||
				    buffer_journal_prepared(tmp_bh))
					BUG();
				add_to_chunk(chunk, tmp_bh, NULL, write_chunk);
				ret++;
			} else {
				/* note, cn->bh might be null now */
				unlock_buffer(tmp_bh);
			}
			put_bh(tmp_bh);
		}
1675
next:
1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692
		cn = cn->next;
		cond_resched();
	}
	return ret;
}

/* used by flush_commit_list */
static int dirty_one_transaction(struct super_block *s,
				 struct reiserfs_journal_list *jl)
{
	struct reiserfs_journal_cnode *cn;
	struct reiserfs_journal_list *pjl;
	int ret = 0;

	jl->j_state |= LIST_DIRTY;
	cn = jl->j_realblock;
	while (cn) {
1693 1694 1695 1696
		/*
		 * look for a more recent transaction that logged this
		 * buffer.  Only the most recent transaction with a buffer in
		 * it is allowed to send that buffer to disk
1697 1698 1699 1700 1701
		 */
		pjl = find_newer_jl_for_cn(cn);
		if (!pjl && cn->blocknr && cn->bh
		    && buffer_journal_dirty(cn->bh)) {
			BUG_ON(!can_dirty(cn));
1702 1703
			/*
			 * if the buffer is prepared, it will either be logged
1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722
			 * or restored.  If restored, we need to make sure
			 * it actually gets marked dirty
			 */
			clear_buffer_journal_new(cn->bh);
			if (buffer_journal_prepared(cn->bh)) {
				set_buffer_journal_restore_dirty(cn->bh);
			} else {
				set_buffer_journal_test(cn->bh);
				mark_buffer_dirty(cn->bh);
			}
		}
		cn = cn->next;
	}
	return ret;
}

static int kupdate_transactions(struct super_block *s,
				struct reiserfs_journal_list *jl,
				struct reiserfs_journal_list **next_jl,
1723
				unsigned int *next_trans_id,
1724 1725 1726 1727 1728
				int num_blocks, int num_trans)
{
	int ret = 0;
	int written = 0;
	int transactions_flushed = 0;
1729
	unsigned int orig_trans_id = jl->j_trans_id;
1730 1731 1732 1733 1734
	struct buffer_chunk chunk;
	struct list_head *entry;
	struct reiserfs_journal *journal = SB_JOURNAL(s);
	chunk.nr = 0;

1735
	reiserfs_mutex_lock_safe(&journal->j_flush_mutex, s);
1736 1737 1738 1739
	if (!journal_list_still_alive(s, orig_trans_id)) {
		goto done;
	}

1740 1741
	/*
	 * we've got j_flush_mutex held, nobody is going to delete any
1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774
	 * of these lists out from underneath us
	 */
	while ((num_trans && transactions_flushed < num_trans) ||
	       (!num_trans && written < num_blocks)) {

		if (jl->j_len == 0 || (jl->j_state & LIST_TOUCHED) ||
		    atomic_read(&jl->j_commit_left)
		    || !(jl->j_state & LIST_DIRTY)) {
			del_from_work_list(s, jl);
			break;
		}
		ret = write_one_transaction(s, jl, &chunk);

		if (ret < 0)
			goto done;
		transactions_flushed++;
		written += ret;
		entry = jl->j_list.next;

		/* did we wrap? */
		if (entry == &journal->j_journal_list) {
			break;
		}
		jl = JOURNAL_LIST_ENTRY(entry);

		/* don't bother with older transactions */
		if (jl->j_trans_id <= orig_trans_id)
			break;
	}
	if (chunk.nr) {
		write_chunk(&chunk);
	}

1775
done:
1776
	mutex_unlock(&journal->j_flush_mutex);
1777 1778 1779
	return ret;
}

1780 1781 1782 1783 1784 1785 1786 1787 1788 1789
/*
 * for o_sync and fsync heavy applications, they tend to use
 * all the journa list slots with tiny transactions.  These
 * trigger lots and lots of calls to update the header block, which
 * adds seeks and slows things down.
 *
 * This function tries to clear out a large chunk of the journal lists
 * at once, which makes everything faster since only the newest journal
 * list updates the header block
 */
Linus Torvalds's avatar
Linus Torvalds committed
1790
static int flush_used_journal_lists(struct super_block *s,
1791 1792 1793 1794 1795 1796 1797 1798 1799
				    struct reiserfs_journal_list *jl)
{
	unsigned long len = 0;
	unsigned long cur_len;
	int ret;
	int i;
	int limit = 256;
	struct reiserfs_journal_list *tjl;
	struct reiserfs_journal_list *flush_jl;
1800
	unsigned int trans_id;
1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811 1812 1813 1814 1815 1816 1817 1818 1819 1820 1821 1822 1823
	struct reiserfs_journal *journal = SB_JOURNAL(s);

	flush_jl = tjl = jl;

	/* in data logging mode, try harder to flush a lot of blocks */
	if (reiserfs_data_log(s))
		limit = 1024;
	/* flush for 256 transactions or limit blocks, whichever comes first */
	for (i = 0; i < 256 && len < limit; i++) {
		if (atomic_read(&tjl->j_commit_left) ||
		    tjl->j_trans_id < jl->j_trans_id) {
			break;
		}
		cur_len = atomic_read(&tjl->j_nonzerolen);
		if (cur_len > 0) {
			tjl->j_state &= ~LIST_TOUCHED;
		}
		len += cur_len;
		flush_jl = tjl;
		if (tjl->j_list.next == &journal->j_journal_list)
			break;
		tjl = JOURNAL_LIST_ENTRY(tjl->j_list.next);
	}
1824 1825
	get_journal_list(jl);
	get_journal_list(flush_jl);
1826 1827 1828 1829 1830

	/*
	 * try to find a group of blocks we can flush across all the
	 * transactions, but only bother if we've actually spanned
	 * across multiple lists
1831 1832 1833 1834 1835
	 */
	if (flush_jl != jl) {
		ret = kupdate_transactions(s, jl, &tjl, &trans_id, len, i);
	}
	flush_journal_list(s, flush_jl, 1);
1836 1837
	put_journal_list(s, flush_jl);
	put_journal_list(s, jl);
1838
	return 0;
Linus Torvalds's avatar
Linus Torvalds committed
1839 1840 1841
}

/*
1842 1843 1844
 * removes any nodes in table with name block and dev as bh.
 * only touchs the hnext and hprev pointers.
 */
Linus Torvalds's avatar
Linus Torvalds committed
1845
void remove_journal_hash(struct super_block *sb,
1846 1847 1848 1849 1850 1851 1852 1853 1854 1855 1856 1857 1858 1859 1860 1861 1862 1863 1864 1865 1866 1867 1868 1869 1870 1871 1872
			 struct reiserfs_journal_cnode **table,
			 struct reiserfs_journal_list *jl,
			 unsigned long block, int remove_freed)
{
	struct reiserfs_journal_cnode *cur;
	struct reiserfs_journal_cnode **head;

	head = &(journal_hash(table, sb, block));
	if (!head) {
		return;
	}
	cur = *head;
	while (cur) {
		if (cur->blocknr == block && cur->sb == sb
		    && (jl == NULL || jl == cur->jlist)
		    && (!test_bit(BLOCK_FREED, &cur->state) || remove_freed)) {
			if (cur->hnext) {
				cur->hnext->hprev = cur->hprev;
			}
			if (cur->hprev) {
				cur->hprev->hnext = cur->hnext;
			} else {
				*head = cur->hnext;
			}
			cur->blocknr = 0;
			cur->sb = NULL;
			cur->state = 0;
1873 1874 1875 1876 1877
			/*
			 * anybody who clears the cur->bh will also
			 * dec the nonzerolen
			 */
			if (cur->bh && cur->jlist)
1878
				atomic_dec(&cur->jlist->j_nonzerolen);
1879 1880 1881 1882 1883 1884 1885
			cur->bh = NULL;
			cur->jlist = NULL;
		}
		cur = cur->hnext;
	}
}

Jeff Mahoney's avatar
Jeff Mahoney committed
1886
static void free_journal_ram(struct super_block *sb)
1887
{
Jeff Mahoney's avatar
Jeff Mahoney committed
1888
	struct reiserfs_journal *journal = SB_JOURNAL(sb);
1889
	kfree(journal->j_current_jl);
1890 1891 1892
	journal->j_num_lists--;

	vfree(journal->j_cnode_free_orig);
Jeff Mahoney's avatar
Jeff Mahoney committed
1893 1894
	free_list_bitmaps(sb, journal->j_list_bitmap);
	free_bitmap_nodes(sb);	/* must be after free_list_bitmaps */
1895 1896 1897
	if (journal->j_header_bh) {
		brelse(journal->j_header_bh);
	}
1898 1899 1900
	/*
	 * j_header_bh is on the journal dev, make sure
	 * not to release the journal dev until we brelse j_header_bh
1901
	 */
Jeff Mahoney's avatar
Jeff Mahoney committed
1902
	release_journal_dev(sb, journal);
1903
	vfree(journal);
Linus Torvalds's avatar
Linus Torvalds committed
1904 1905 1906
}

/*
1907 1908 1909
 * call on unmount.  Only set error to 1 if you haven't made your way out
 * of read_super() yet.  Any other caller must keep error at 0.
 */
1910
static int do_journal_release(struct reiserfs_transaction_handle *th,
Jeff Mahoney's avatar
Jeff Mahoney committed
1911
			      struct super_block *sb, int error)
1912 1913 1914
{
	struct reiserfs_transaction_handle myth;
	int flushed = 0;
Jeff Mahoney's avatar
Jeff Mahoney committed
1915
	struct reiserfs_journal *journal = SB_JOURNAL(sb);
1916

1917 1918 1919
	/*
	 * we only want to flush out transactions if we were
	 * called with error == 0
1920
	 */
Jeff Mahoney's avatar
Jeff Mahoney committed
1921
	if (!error && !(sb->s_flags & MS_RDONLY)) {
1922 1923
		/* end the current trans */
		BUG_ON(!th->t_trans_id);
1924
		do_journal_end(th, FLUSH_ALL);
1925

1926 1927 1928 1929
		/*
		 * make sure something gets logged to force
		 * our way into the flush code
		 */
1930
		if (!journal_join(&myth, sb)) {
Jeff Mahoney's avatar
Jeff Mahoney committed
1931 1932
			reiserfs_prepare_for_journal(sb,
						     SB_BUFFER_WITH_SB(sb),
1933
						     1);
1934
			journal_mark_dirty(&myth, SB_BUFFER_WITH_SB(sb));
1935
			do_journal_end(&myth, FLUSH_ALL);
1936 1937 1938 1939 1940 1941 1942
			flushed = 1;
		}
	}

	/* this also catches errors during the do_journal_end above */
	if (!error && reiserfs_is_journal_aborted(journal)) {
		memset(&myth, 0, sizeof(myth));
1943
		if (!journal_join_abort(&myth, sb)) {
Jeff Mahoney's avatar
Jeff Mahoney committed
1944 1945
			reiserfs_prepare_for_journal(sb,
						     SB_BUFFER_WITH_SB(sb),
1946
						     1);
1947
			journal_mark_dirty(&myth, SB_BUFFER_WITH_SB(sb));
1948
			do_journal_end(&myth, FLUSH_ALL);
1949 1950 1951
		}
	}

Frederic Weisbecker's avatar
Frederic Weisbecker committed
1952 1953 1954 1955 1956 1957

	/*
	 * We must release the write lock here because
	 * the workqueue job (flush_async_commit) needs this lock
	 */
	reiserfs_write_unlock(sb);
1958

1959 1960 1961 1962 1963
	/*
	 * Cancel flushing of old commits. Note that neither of these works
	 * will be requeued because superblock is being shutdown and doesn't
	 * have MS_ACTIVE set.
	 */
1964
	cancel_delayed_work_sync(&REISERFS_SB(sb)->old_work);
1965 1966
	/* wait for all commits to finish */
	cancel_delayed_work_sync(&SB_JOURNAL(sb)->j_work);
1967

Jeff Mahoney's avatar
Jeff Mahoney committed
1968
	free_journal_ram(sb);
1969

1970 1971
	reiserfs_write_lock(sb);

1972
	return 0;
Linus Torvalds's avatar
Linus Torvalds committed
1973 1974
}

1975
/* * call on unmount.  flush all journal trans, release all alloc'd ram */
1976
int journal_release(struct reiserfs_transaction_handle *th,
Jeff Mahoney's avatar
Jeff Mahoney committed
1977
		    struct super_block *sb)
1978
{
Jeff Mahoney's avatar
Jeff Mahoney committed
1979
	return do_journal_release(th, sb, 0);
Linus Torvalds's avatar
Linus Torvalds committed
1980
}
1981

1982
/* only call from an error condition inside reiserfs_read_super!  */
1983
int journal_release_error(struct reiserfs_transaction_handle *th,
Jeff Mahoney's avatar
Jeff Mahoney committed
1984
			  struct super_block *sb)
1985
{
Jeff Mahoney's avatar
Jeff Mahoney committed
1986
	return do_journal_release(th, sb, 1);
Linus Torvalds's avatar
Linus Torvalds committed
1987 1988
}

1989 1990 1991 1992
/*
 * compares description block with commit block.
 * returns 1 if they differ, 0 if they are the same
 */
Jeff Mahoney's avatar
Jeff Mahoney committed
1993
static int journal_compare_desc_commit(struct super_block *sb,
1994 1995 1996 1997 1998
				       struct reiserfs_journal_desc *desc,
				       struct reiserfs_journal_commit *commit)
{
	if (get_commit_trans_id(commit) != get_desc_trans_id(desc) ||
	    get_commit_trans_len(commit) != get_desc_trans_len(desc) ||
Jeff Mahoney's avatar
Jeff Mahoney committed
1999
	    get_commit_trans_len(commit) > SB_JOURNAL(sb)->j_trans_max ||
2000 2001 2002 2003
	    get_commit_trans_len(commit) <= 0) {
		return 1;
	}
	return 0;
Linus Torvalds's avatar
Linus Torvalds committed
2004
}
2005

2006 2007 2008 2009 2010 2011
/*
 * returns 0 if it did not find a description block
 * returns -1 if it found a corrupt commit block
 * returns 1 if both desc and commit were valid
 * NOTE: only called during fs mount
 */
Jeff Mahoney's avatar
Jeff Mahoney committed
2012
static int journal_transaction_is_valid(struct super_block *sb,
2013
					struct buffer_head *d_bh,
2014
					unsigned int *oldest_invalid_trans_id,
2015 2016 2017 2018 2019 2020 2021 2022 2023 2024 2025 2026 2027 2028 2029
					unsigned long *newest_mount_id)
{
	struct reiserfs_journal_desc *desc;
	struct reiserfs_journal_commit *commit;
	struct buffer_head *c_bh;
	unsigned long offset;

	if (!d_bh)
		return 0;

	desc = (struct reiserfs_journal_desc *)d_bh->b_data;
	if (get_desc_trans_len(desc) > 0
	    && !memcmp(get_journal_desc_magic(d_bh), JOURNAL_DESC_MAGIC, 8)) {
		if (oldest_invalid_trans_id && *oldest_invalid_trans_id
		    && get_desc_trans_id(desc) > *oldest_invalid_trans_id) {
Jeff Mahoney's avatar
Jeff Mahoney committed
2030
			reiserfs_debug(sb, REISERFS_DEBUG_CODE,
2031 2032 2033 2034 2035 2036 2037 2038 2039
				       "journal-986: transaction "
				       "is valid returning because trans_id %d is greater than "
				       "oldest_invalid %lu",
				       get_desc_trans_id(desc),
				       *oldest_invalid_trans_id);
			return 0;
		}
		if (newest_mount_id
		    && *newest_mount_id > get_desc_mount_id(desc)) {
Jeff Mahoney's avatar
Jeff Mahoney committed
2040
			reiserfs_debug(sb, REISERFS_DEBUG_CODE,
2041 2042 2043 2044 2045 2046 2047
				       "journal-1087: transaction "
				       "is valid returning because mount_id %d is less than "
				       "newest_mount_id %lu",
				       get_desc_mount_id(desc),
				       *newest_mount_id);
			return -1;
		}
Jeff Mahoney's avatar
Jeff Mahoney committed
2048 2049
		if (get_desc_trans_len(desc) > SB_JOURNAL(sb)->j_trans_max) {
			reiserfs_warning(sb, "journal-2018",
2050 2051
					 "Bad transaction length %d "
					 "encountered, ignoring transaction",
2052 2053 2054
					 get_desc_trans_len(desc));
			return -1;
		}
Jeff Mahoney's avatar
Jeff Mahoney committed
2055
		offset = d_bh->b_blocknr - SB_ONDISK_JOURNAL_1st_BLOCK(sb);
2056

2057 2058 2059 2060
		/*
		 * ok, we have a journal description block,
		 * let's see if the transaction was valid
		 */
2061
		c_bh =
Jeff Mahoney's avatar
Jeff Mahoney committed
2062 2063
		    journal_bread(sb,
				  SB_ONDISK_JOURNAL_1st_BLOCK(sb) +
2064
				  ((offset + get_desc_trans_len(desc) +
Jeff Mahoney's avatar
Jeff Mahoney committed
2065
				    1) % SB_ONDISK_JOURNAL_SIZE(sb)));
2066 2067 2068
		if (!c_bh)
			return 0;
		commit = (struct reiserfs_journal_commit *)c_bh->b_data;
Jeff Mahoney's avatar
Jeff Mahoney committed
2069 2070
		if (journal_compare_desc_commit(sb, desc, commit)) {
			reiserfs_debug(sb, REISERFS_DEBUG_CODE,
2071 2072 2073
				       "journal_transaction_is_valid, commit offset %ld had bad "
				       "time %d or length %d",
				       c_bh->b_blocknr -
Jeff Mahoney's avatar
Jeff Mahoney committed
2074
				       SB_ONDISK_JOURNAL_1st_BLOCK(sb),
2075 2076 2077 2078 2079 2080
				       get_commit_trans_id(commit),
				       get_commit_trans_len(commit));
			brelse(c_bh);
			if (oldest_invalid_trans_id) {
				*oldest_invalid_trans_id =
				    get_desc_trans_id(desc);
Jeff Mahoney's avatar
Jeff Mahoney committed
2081
				reiserfs_debug(sb, REISERFS_DEBUG_CODE,
2082 2083 2084 2085 2086 2087 2088 2089
					       "journal-1004: "
					       "transaction_is_valid setting oldest invalid trans_id "
					       "to %d",
					       get_desc_trans_id(desc));
			}
			return -1;
		}
		brelse(c_bh);
Jeff Mahoney's avatar
Jeff Mahoney committed
2090
		reiserfs_debug(sb, REISERFS_DEBUG_CODE,
2091 2092 2093
			       "journal-1006: found valid "
			       "transaction start offset %llu, len %d id %d",
			       d_bh->b_blocknr -
Jeff Mahoney's avatar
Jeff Mahoney committed
2094
			       SB_ONDISK_JOURNAL_1st_BLOCK(sb),
2095 2096 2097 2098 2099 2100 2101 2102 2103 2104 2105 2106 2107 2108
			       get_desc_trans_len(desc),
			       get_desc_trans_id(desc));
		return 1;
	} else {
		return 0;
	}
}

static void brelse_array(struct buffer_head **heads, int num)
{
	int i;
	for (i = 0; i < num; i++) {
		brelse(heads[i]);
	}
Linus Torvalds's avatar
Linus Torvalds committed
2109 2110 2111
}

/*
2112 2113 2114 2115 2116
 * given the start, and values for the oldest acceptable transactions,
 * this either reads in a replays a transaction, or returns because the
 * transaction is invalid, or too old.
 * NOTE: only called during fs mount
 */
Jeff Mahoney's avatar
Jeff Mahoney committed
2117
static int journal_read_transaction(struct super_block *sb,
2118 2119
				    unsigned long cur_dblock,
				    unsigned long oldest_start,
2120
				    unsigned int oldest_trans_id,
2121 2122
				    unsigned long newest_mount_id)
{
Jeff Mahoney's avatar
Jeff Mahoney committed
2123
	struct reiserfs_journal *journal = SB_JOURNAL(sb);
2124 2125
	struct reiserfs_journal_desc *desc;
	struct reiserfs_journal_commit *commit;
2126
	unsigned int trans_id = 0;
2127 2128 2129 2130
	struct buffer_head *c_bh;
	struct buffer_head *d_bh;
	struct buffer_head **log_blocks = NULL;
	struct buffer_head **real_blocks = NULL;
2131
	unsigned int trans_offset;
2132 2133 2134
	int i;
	int trans_half;

Jeff Mahoney's avatar
Jeff Mahoney committed
2135
	d_bh = journal_bread(sb, cur_dblock);
2136 2137 2138
	if (!d_bh)
		return 1;
	desc = (struct reiserfs_journal_desc *)d_bh->b_data;
Jeff Mahoney's avatar
Jeff Mahoney committed
2139 2140
	trans_offset = d_bh->b_blocknr - SB_ONDISK_JOURNAL_1st_BLOCK(sb);
	reiserfs_debug(sb, REISERFS_DEBUG_CODE, "journal-1037: "
2141
		       "journal_read_transaction, offset %llu, len %d mount_id %d",
Jeff Mahoney's avatar
Jeff Mahoney committed
2142
		       d_bh->b_blocknr - SB_ONDISK_JOURNAL_1st_BLOCK(sb),
2143 2144
		       get_desc_trans_len(desc), get_desc_mount_id(desc));
	if (get_desc_trans_id(desc) < oldest_trans_id) {
Jeff Mahoney's avatar
Jeff Mahoney committed
2145
		reiserfs_debug(sb, REISERFS_DEBUG_CODE, "journal-1039: "
2146 2147
			       "journal_read_trans skipping because %lu is too old",
			       cur_dblock -
Jeff Mahoney's avatar
Jeff Mahoney committed
2148
			       SB_ONDISK_JOURNAL_1st_BLOCK(sb));
2149 2150 2151 2152
		brelse(d_bh);
		return 1;
	}
	if (get_desc_mount_id(desc) != newest_mount_id) {
Jeff Mahoney's avatar
Jeff Mahoney committed
2153
		reiserfs_debug(sb, REISERFS_DEBUG_CODE, "journal-1146: "
2154 2155 2156 2157 2158 2159
			       "journal_read_trans skipping because %d is != "
			       "newest_mount_id %lu", get_desc_mount_id(desc),
			       newest_mount_id);
		brelse(d_bh);
		return 1;
	}
Jeff Mahoney's avatar
Jeff Mahoney committed
2160
	c_bh = journal_bread(sb, SB_ONDISK_JOURNAL_1st_BLOCK(sb) +
2161
			     ((trans_offset + get_desc_trans_len(desc) + 1) %
Jeff Mahoney's avatar
Jeff Mahoney committed
2162
			      SB_ONDISK_JOURNAL_SIZE(sb)));
2163 2164 2165 2166 2167
	if (!c_bh) {
		brelse(d_bh);
		return 1;
	}
	commit = (struct reiserfs_journal_commit *)c_bh->b_data;
Jeff Mahoney's avatar
Jeff Mahoney committed
2168 2169
	if (journal_compare_desc_commit(sb, desc, commit)) {
		reiserfs_debug(sb, REISERFS_DEBUG_CODE,
2170 2171 2172
			       "journal_read_transaction, "
			       "commit offset %llu had bad time %d or length %d",
			       c_bh->b_blocknr -
Jeff Mahoney's avatar
Jeff Mahoney committed
2173
			       SB_ONDISK_JOURNAL_1st_BLOCK(sb),
2174 2175 2176 2177 2178 2179
			       get_commit_trans_id(commit),
			       get_commit_trans_len(commit));
		brelse(c_bh);
		brelse(d_bh);
		return 1;
	}
2180 2181 2182 2183 2184 2185 2186 2187 2188

	if (bdev_read_only(sb->s_bdev)) {
		reiserfs_warning(sb, "clm-2076",
				 "device is readonly, unable to replay log");
		brelse(c_bh);
		brelse(d_bh);
		return -EROFS;
	}

2189
	trans_id = get_desc_trans_id(desc);
2190 2191 2192 2193
	/*
	 * now we know we've got a good transaction, and it was
	 * inside the valid time ranges
	 */
2194 2195 2196 2197
	log_blocks = kmalloc(get_desc_trans_len(desc) *
			     sizeof(struct buffer_head *), GFP_NOFS);
	real_blocks = kmalloc(get_desc_trans_len(desc) *
			      sizeof(struct buffer_head *), GFP_NOFS);
2198 2199 2200
	if (!log_blocks || !real_blocks) {
		brelse(c_bh);
		brelse(d_bh);
2201 2202
		kfree(log_blocks);
		kfree(real_blocks);
Jeff Mahoney's avatar
Jeff Mahoney committed
2203
		reiserfs_warning(sb, "journal-1169",
2204
				 "kmalloc failed, unable to mount FS");
2205 2206 2207
		return -1;
	}
	/* get all the buffer heads */
Jeff Mahoney's avatar
Jeff Mahoney committed
2208
	trans_half = journal_trans_half(sb->s_blocksize);
2209 2210
	for (i = 0; i < get_desc_trans_len(desc); i++) {
		log_blocks[i] =
Jeff Mahoney's avatar
Jeff Mahoney committed
2211 2212
		    journal_getblk(sb,
				   SB_ONDISK_JOURNAL_1st_BLOCK(sb) +
2213
				   (trans_offset + 1 +
Jeff Mahoney's avatar
Jeff Mahoney committed
2214
				    i) % SB_ONDISK_JOURNAL_SIZE(sb));
2215 2216
		if (i < trans_half) {
			real_blocks[i] =
Jeff Mahoney's avatar
Jeff Mahoney committed
2217
			    sb_getblk(sb,
2218 2219 2220
				      le32_to_cpu(desc->j_realblock[i]));
		} else {
			real_blocks[i] =
Jeff Mahoney's avatar
Jeff Mahoney committed
2221
			    sb_getblk(sb,
2222 2223 2224
				      le32_to_cpu(commit->
						  j_realblock[i - trans_half]));
		}
Jeff Mahoney's avatar
Jeff Mahoney committed
2225 2226
		if (real_blocks[i]->b_blocknr > SB_BLOCK_COUNT(sb)) {
			reiserfs_warning(sb, "journal-1207",
2227 2228 2229
					 "REPLAY FAILURE fsck required! "
					 "Block to replay is outside of "
					 "filesystem");
2230 2231 2232 2233
			goto abort_replay;
		}
		/* make sure we don't try to replay onto log or reserved area */
		if (is_block_in_log_or_reserved_area
Jeff Mahoney's avatar
Jeff Mahoney committed
2234 2235
		    (sb, real_blocks[i]->b_blocknr)) {
			reiserfs_warning(sb, "journal-1204",
2236 2237
					 "REPLAY FAILURE fsck required! "
					 "Trying to replay onto a log block");
2238
abort_replay:
2239 2240 2241 2242
			brelse_array(log_blocks, i);
			brelse_array(real_blocks, i);
			brelse(c_bh);
			brelse(d_bh);
2243 2244
			kfree(log_blocks);
			kfree(real_blocks);
2245 2246 2247 2248 2249 2250
			return -1;
		}
	}
	/* read in the log blocks, memcpy to the corresponding real block */
	ll_rw_block(READ, get_desc_trans_len(desc), log_blocks);
	for (i = 0; i < get_desc_trans_len(desc); i++) {
Frederic Weisbecker's avatar
Frederic Weisbecker committed
2251

2252 2253
		wait_on_buffer(log_blocks[i]);
		if (!buffer_uptodate(log_blocks[i])) {
Jeff Mahoney's avatar
Jeff Mahoney committed
2254
			reiserfs_warning(sb, "journal-1212",
2255 2256
					 "REPLAY FAILURE fsck required! "
					 "buffer write failed");
2257 2258 2259 2260 2261
			brelse_array(log_blocks + i,
				     get_desc_trans_len(desc) - i);
			brelse_array(real_blocks, get_desc_trans_len(desc));
			brelse(c_bh);
			brelse(d_bh);
2262 2263
			kfree(log_blocks);
			kfree(real_blocks);
2264 2265 2266 2267 2268 2269 2270 2271 2272 2273
			return -1;
		}
		memcpy(real_blocks[i]->b_data, log_blocks[i]->b_data,
		       real_blocks[i]->b_size);
		set_buffer_uptodate(real_blocks[i]);
		brelse(log_blocks[i]);
	}
	/* flush out the real blocks */
	for (i = 0; i < get_desc_trans_len(desc); i++) {
		set_buffer_dirty(real_blocks[i]);
Christoph Hellwig's avatar
Christoph Hellwig committed
2274
		write_dirty_buffer(real_blocks[i], WRITE);
2275 2276 2277 2278
	}
	for (i = 0; i < get_desc_trans_len(desc); i++) {
		wait_on_buffer(real_blocks[i]);
		if (!buffer_uptodate(real_blocks[i])) {
Jeff Mahoney's avatar
Jeff Mahoney committed
2279
			reiserfs_warning(sb, "journal-1226",
2280 2281
					 "REPLAY FAILURE, fsck required! "
					 "buffer write failed");
2282 2283 2284 2285
			brelse_array(real_blocks + i,
				     get_desc_trans_len(desc) - i);
			brelse(c_bh);
			brelse(d_bh);
2286 2287
			kfree(log_blocks);
			kfree(real_blocks);
2288 2289 2290 2291 2292
			return -1;
		}
		brelse(real_blocks[i]);
	}
	cur_dblock =
Jeff Mahoney's avatar
Jeff Mahoney committed
2293
	    SB_ONDISK_JOURNAL_1st_BLOCK(sb) +
2294
	    ((trans_offset + get_desc_trans_len(desc) +
Jeff Mahoney's avatar
Jeff Mahoney committed
2295 2296
	      2) % SB_ONDISK_JOURNAL_SIZE(sb));
	reiserfs_debug(sb, REISERFS_DEBUG_CODE,
2297
		       "journal-1095: setting journal " "start to offset %ld",
Jeff Mahoney's avatar
Jeff Mahoney committed
2298
		       cur_dblock - SB_ONDISK_JOURNAL_1st_BLOCK(sb));
2299

2300 2301 2302 2303
	/*
	 * init starting values for the first transaction, in case
	 * this is the last transaction to be replayed.
	 */
Jeff Mahoney's avatar
Jeff Mahoney committed
2304
	journal->j_start = cur_dblock - SB_ONDISK_JOURNAL_1st_BLOCK(sb);
2305 2306
	journal->j_last_flush_trans_id = trans_id;
	journal->j_trans_id = trans_id + 1;
2307 2308 2309
	/* check for trans_id overflow */
	if (journal->j_trans_id == 0)
		journal->j_trans_id = 10;
2310 2311
	brelse(c_bh);
	brelse(d_bh);
2312 2313
	kfree(log_blocks);
	kfree(real_blocks);
2314
	return 0;
Linus Torvalds's avatar
Linus Torvalds committed
2315 2316
}

2317 2318 2319 2320 2321 2322 2323 2324
/*
 * This function reads blocks starting from block and to max_block of bufsize
 * size (but no more than BUFNR blocks at a time). This proved to improve
 * mounting speed on self-rebuilding raid5 arrays at least.
 * Right now it is only used from journal code. But later we might use it
 * from other places.
 * Note: Do not use journal_getblk/sb_getblk functions here!
 */
2325 2326 2327
static struct buffer_head *reiserfs_breada(struct block_device *dev,
					   b_blocknr_t block, int bufsize,
					   b_blocknr_t max_block)
Linus Torvalds's avatar
Linus Torvalds committed
2328
{
2329
	struct buffer_head *bhlist[BUFNR];
Linus Torvalds's avatar
Linus Torvalds committed
2330
	unsigned int blocks = BUFNR;
2331
	struct buffer_head *bh;
Linus Torvalds's avatar
Linus Torvalds committed
2332
	int i, j;
2333 2334 2335 2336 2337

	bh = __getblk(dev, block, bufsize);
	if (buffer_uptodate(bh))
		return (bh);

Linus Torvalds's avatar
Linus Torvalds committed
2338 2339 2340 2341 2342 2343
	if (block + BUFNR > max_block) {
		blocks = max_block - block;
	}
	bhlist[0] = bh;
	j = 1;
	for (i = 1; i < blocks; i++) {
2344 2345 2346
		bh = __getblk(dev, block + i, bufsize);
		if (buffer_uptodate(bh)) {
			brelse(bh);
Linus Torvalds's avatar
Linus Torvalds committed
2347
			break;
2348 2349
		} else
			bhlist[j++] = bh;
Linus Torvalds's avatar
Linus Torvalds committed
2350
	}
2351 2352 2353
	ll_rw_block(READ, j, bhlist);
	for (i = 1; i < j; i++)
		brelse(bhlist[i]);
Linus Torvalds's avatar
Linus Torvalds committed
2354
	bh = bhlist[0];
2355 2356
	wait_on_buffer(bh);
	if (buffer_uptodate(bh))
Linus Torvalds's avatar
Linus Torvalds committed
2357
		return bh;
2358
	brelse(bh);
Linus Torvalds's avatar
Linus Torvalds committed
2359 2360 2361 2362
	return NULL;
}

/*
2363 2364 2365 2366 2367 2368 2369 2370 2371 2372 2373
 * read and replay the log
 * on a clean unmount, the journal header's next unflushed pointer will be
 * to an invalid transaction.  This tests that before finding all the
 * transactions in the log, which makes normal mount times fast.
 *
 * After a crash, this starts with the next unflushed transaction, and
 * replays until it finds one too old, or invalid.
 *
 * On exit, it sets things up so the first transaction will work correctly.
 * NOTE: only called during fs mount
 */
Jeff Mahoney's avatar
Jeff Mahoney committed
2374
static int journal_read(struct super_block *sb)
2375
{
Jeff Mahoney's avatar
Jeff Mahoney committed
2376
	struct reiserfs_journal *journal = SB_JOURNAL(sb);
2377
	struct reiserfs_journal_desc *desc;
2378 2379
	unsigned int oldest_trans_id = 0;
	unsigned int oldest_invalid_trans_id = 0;
2380 2381 2382 2383 2384 2385 2386 2387 2388 2389 2390 2391
	time_t start;
	unsigned long oldest_start = 0;
	unsigned long cur_dblock = 0;
	unsigned long newest_mount_id = 9;
	struct buffer_head *d_bh;
	struct reiserfs_journal_header *jh;
	int valid_journal_header = 0;
	int replay_count = 0;
	int continue_replay = 1;
	int ret;
	char b[BDEVNAME_SIZE];

Jeff Mahoney's avatar
Jeff Mahoney committed
2392 2393
	cur_dblock = SB_ONDISK_JOURNAL_1st_BLOCK(sb);
	reiserfs_info(sb, "checking transaction log (%s)\n",
2394 2395 2396
		      bdevname(journal->j_dev_bd, b));
	start = get_seconds();

2397 2398 2399 2400
	/*
	 * step 1, read in the journal header block.  Check the transaction
	 * it says is the first unflushed, and if that transaction is not
	 * valid, replay is done
2401
	 */
Jeff Mahoney's avatar
Jeff Mahoney committed
2402 2403 2404
	journal->j_header_bh = journal_bread(sb,
					     SB_ONDISK_JOURNAL_1st_BLOCK(sb)
					     + SB_ONDISK_JOURNAL_SIZE(sb));
2405 2406 2407 2408
	if (!journal->j_header_bh) {
		return 1;
	}
	jh = (struct reiserfs_journal_header *)(journal->j_header_bh->b_data);
2409
	if (le32_to_cpu(jh->j_first_unflushed_offset) <
Jeff Mahoney's avatar
Jeff Mahoney committed
2410
	    SB_ONDISK_JOURNAL_SIZE(sb)
2411 2412
	    && le32_to_cpu(jh->j_last_flush_trans_id) > 0) {
		oldest_start =
Jeff Mahoney's avatar
Jeff Mahoney committed
2413
		    SB_ONDISK_JOURNAL_1st_BLOCK(sb) +
2414 2415 2416
		    le32_to_cpu(jh->j_first_unflushed_offset);
		oldest_trans_id = le32_to_cpu(jh->j_last_flush_trans_id) + 1;
		newest_mount_id = le32_to_cpu(jh->j_mount_id);
Jeff Mahoney's avatar
Jeff Mahoney committed
2417
		reiserfs_debug(sb, REISERFS_DEBUG_CODE,
2418 2419 2420 2421 2422 2423
			       "journal-1153: found in "
			       "header: first_unflushed_offset %d, last_flushed_trans_id "
			       "%lu", le32_to_cpu(jh->j_first_unflushed_offset),
			       le32_to_cpu(jh->j_last_flush_trans_id));
		valid_journal_header = 1;

2424 2425 2426 2427
		/*
		 * now, we try to read the first unflushed offset.  If it
		 * is not valid, there is nothing more we can do, and it
		 * makes no sense to read through the whole log.
2428 2429
		 */
		d_bh =
Jeff Mahoney's avatar
Jeff Mahoney committed
2430 2431
		    journal_bread(sb,
				  SB_ONDISK_JOURNAL_1st_BLOCK(sb) +
2432
				  le32_to_cpu(jh->j_first_unflushed_offset));
Jeff Mahoney's avatar
Jeff Mahoney committed
2433
		ret = journal_transaction_is_valid(sb, d_bh, NULL, NULL);
2434 2435 2436 2437 2438 2439 2440
		if (!ret) {
			continue_replay = 0;
		}
		brelse(d_bh);
		goto start_log_replay;
	}

2441 2442 2443 2444
	/*
	 * ok, there are transactions that need to be replayed.  start
	 * with the first log block, find all the valid transactions, and
	 * pick out the oldest.
2445 2446 2447
	 */
	while (continue_replay
	       && cur_dblock <
Jeff Mahoney's avatar
Jeff Mahoney committed
2448 2449
	       (SB_ONDISK_JOURNAL_1st_BLOCK(sb) +
		SB_ONDISK_JOURNAL_SIZE(sb))) {
2450 2451 2452 2453
		/*
		 * Note that it is required for blocksize of primary fs
		 * device and journal device to be the same
		 */
2454 2455
		d_bh =
		    reiserfs_breada(journal->j_dev_bd, cur_dblock,
Jeff Mahoney's avatar
Jeff Mahoney committed
2456 2457 2458
				    sb->s_blocksize,
				    SB_ONDISK_JOURNAL_1st_BLOCK(sb) +
				    SB_ONDISK_JOURNAL_SIZE(sb));
2459
		ret =
Jeff Mahoney's avatar
Jeff Mahoney committed
2460
		    journal_transaction_is_valid(sb, d_bh,
2461 2462 2463 2464 2465 2466 2467 2468
						 &oldest_invalid_trans_id,
						 &newest_mount_id);
		if (ret == 1) {
			desc = (struct reiserfs_journal_desc *)d_bh->b_data;
			if (oldest_start == 0) {	/* init all oldest_ values */
				oldest_trans_id = get_desc_trans_id(desc);
				oldest_start = d_bh->b_blocknr;
				newest_mount_id = get_desc_mount_id(desc);
Jeff Mahoney's avatar
Jeff Mahoney committed
2469
				reiserfs_debug(sb, REISERFS_DEBUG_CODE,
2470 2471 2472 2473
					       "journal-1179: Setting "
					       "oldest_start to offset %llu, trans_id %lu",
					       oldest_start -
					       SB_ONDISK_JOURNAL_1st_BLOCK
Jeff Mahoney's avatar
Jeff Mahoney committed
2474
					       (sb), oldest_trans_id);
2475 2476 2477 2478
			} else if (oldest_trans_id > get_desc_trans_id(desc)) {
				/* one we just read was older */
				oldest_trans_id = get_desc_trans_id(desc);
				oldest_start = d_bh->b_blocknr;
Jeff Mahoney's avatar
Jeff Mahoney committed
2479
				reiserfs_debug(sb, REISERFS_DEBUG_CODE,
2480 2481 2482 2483
					       "journal-1180: Resetting "
					       "oldest_start to offset %lu, trans_id %lu",
					       oldest_start -
					       SB_ONDISK_JOURNAL_1st_BLOCK
Jeff Mahoney's avatar
Jeff Mahoney committed
2484
					       (sb), oldest_trans_id);
2485 2486 2487
			}
			if (newest_mount_id < get_desc_mount_id(desc)) {
				newest_mount_id = get_desc_mount_id(desc);
Jeff Mahoney's avatar
Jeff Mahoney committed
2488
				reiserfs_debug(sb, REISERFS_DEBUG_CODE,
2489 2490 2491 2492 2493 2494 2495 2496 2497 2498 2499
					       "journal-1299: Setting "
					       "newest_mount_id to %d",
					       get_desc_mount_id(desc));
			}
			cur_dblock += get_desc_trans_len(desc) + 2;
		} else {
			cur_dblock++;
		}
		brelse(d_bh);
	}

2500
start_log_replay:
2501 2502
	cur_dblock = oldest_start;
	if (oldest_trans_id) {
Jeff Mahoney's avatar
Jeff Mahoney committed
2503
		reiserfs_debug(sb, REISERFS_DEBUG_CODE,
2504 2505
			       "journal-1206: Starting replay "
			       "from offset %llu, trans_id %lu",
Jeff Mahoney's avatar
Jeff Mahoney committed
2506
			       cur_dblock - SB_ONDISK_JOURNAL_1st_BLOCK(sb),
2507 2508 2509 2510 2511 2512
			       oldest_trans_id);

	}
	replay_count = 0;
	while (continue_replay && oldest_trans_id > 0) {
		ret =
Jeff Mahoney's avatar
Jeff Mahoney committed
2513
		    journal_read_transaction(sb, cur_dblock, oldest_start,
2514 2515 2516 2517 2518 2519 2520
					     oldest_trans_id, newest_mount_id);
		if (ret < 0) {
			return ret;
		} else if (ret != 0) {
			break;
		}
		cur_dblock =
Jeff Mahoney's avatar
Jeff Mahoney committed
2521
		    SB_ONDISK_JOURNAL_1st_BLOCK(sb) + journal->j_start;
2522 2523 2524 2525 2526 2527
		replay_count++;
		if (cur_dblock == oldest_start)
			break;
	}

	if (oldest_trans_id == 0) {
Jeff Mahoney's avatar
Jeff Mahoney committed
2528
		reiserfs_debug(sb, REISERFS_DEBUG_CODE,
2529 2530
			       "journal-1225: No valid " "transactions found");
	}
2531 2532 2533 2534 2535
	/*
	 * j_start does not get set correctly if we don't replay any
	 * transactions.  if we had a valid journal_header, set j_start
	 * to the first unflushed transaction value, copy the trans_id
	 * from the header
2536 2537 2538 2539 2540
	 */
	if (valid_journal_header && replay_count == 0) {
		journal->j_start = le32_to_cpu(jh->j_first_unflushed_offset);
		journal->j_trans_id =
		    le32_to_cpu(jh->j_last_flush_trans_id) + 1;
2541 2542 2543
		/* check for trans_id overflow */
		if (journal->j_trans_id == 0)
			journal->j_trans_id = 10;
2544 2545 2546 2547 2548 2549
		journal->j_last_flush_trans_id =
		    le32_to_cpu(jh->j_last_flush_trans_id);
		journal->j_mount_id = le32_to_cpu(jh->j_mount_id) + 1;
	} else {
		journal->j_mount_id = newest_mount_id + 1;
	}
Jeff Mahoney's avatar
Jeff Mahoney committed
2550
	reiserfs_debug(sb, REISERFS_DEBUG_CODE, "journal-1299: Setting "
2551 2552 2553
		       "newest_mount_id to %lu", journal->j_mount_id);
	journal->j_first_unflushed_offset = journal->j_start;
	if (replay_count > 0) {
Jeff Mahoney's avatar
Jeff Mahoney committed
2554
		reiserfs_info(sb,
2555 2556 2557
			      "replayed %d transactions in %lu seconds\n",
			      replay_count, get_seconds() - start);
	}
2558 2559
	/* needed to satisfy the locking in _update_journal_header_block */
	reiserfs_write_lock(sb);
Jeff Mahoney's avatar
Jeff Mahoney committed
2560 2561
	if (!bdev_read_only(sb->s_bdev) &&
	    _update_journal_header_block(sb, journal->j_start,
2562
					 journal->j_last_flush_trans_id)) {
2563
		reiserfs_write_unlock(sb);
2564 2565 2566
		/*
		 * replay failed, caller must call free_journal_ram and abort
		 * the mount
2567 2568 2569
		 */
		return -1;
	}
2570
	reiserfs_write_unlock(sb);
2571
	return 0;
Linus Torvalds's avatar
Linus Torvalds committed
2572 2573 2574 2575
}

static struct reiserfs_journal_list *alloc_journal_list(struct super_block *s)
{
2576
	struct reiserfs_journal_list *jl;
2577 2578
	jl = kzalloc(sizeof(struct reiserfs_journal_list),
		     GFP_NOFS | __GFP_NOFAIL);
2579 2580 2581 2582
	INIT_LIST_HEAD(&jl->j_list);
	INIT_LIST_HEAD(&jl->j_working_list);
	INIT_LIST_HEAD(&jl->j_tail_bh_list);
	INIT_LIST_HEAD(&jl->j_bh_list);
2583
	mutex_init(&jl->j_commit_mutex);
2584 2585 2586 2587 2588
	SB_JOURNAL(s)->j_num_lists++;
	get_journal_list(jl);
	return jl;
}

Jeff Mahoney's avatar
Jeff Mahoney committed
2589
static void journal_list_init(struct super_block *sb)
2590
{
Jeff Mahoney's avatar
Jeff Mahoney committed
2591
	SB_JOURNAL(sb)->j_current_jl = alloc_journal_list(sb);
2592 2593
}

Al Viro's avatar
Al Viro committed
2594
static void release_journal_dev(struct super_block *super,
2595 2596
			       struct reiserfs_journal *journal)
{
2597
	if (journal->j_dev_bd != NULL) {
Al Viro's avatar
Al Viro committed
2598
		blkdev_put(journal->j_dev_bd, journal->j_dev_mode);
2599 2600 2601 2602 2603 2604 2605
		journal->j_dev_bd = NULL;
	}
}

static int journal_init_dev(struct super_block *super,
			    struct reiserfs_journal *journal,
			    const char *jdev_name)
Linus Torvalds's avatar
Linus Torvalds committed
2606 2607 2608
{
	int result;
	dev_t jdev;
2609
	fmode_t blkdev_mode = FMODE_READ | FMODE_WRITE | FMODE_EXCL;
Linus Torvalds's avatar
Linus Torvalds committed
2610 2611 2612 2613
	char b[BDEVNAME_SIZE];

	result = 0;

2614 2615 2616
	journal->j_dev_bd = NULL;
	jdev = SB_ONDISK_JOURNAL_DEVICE(super) ?
	    new_decode_dev(SB_ONDISK_JOURNAL_DEVICE(super)) : super->s_dev;
Linus Torvalds's avatar
Linus Torvalds committed
2617 2618

	if (bdev_read_only(super->s_bdev))
2619
		blkdev_mode = FMODE_READ;
Linus Torvalds's avatar
Linus Torvalds committed
2620 2621

	/* there is no "jdev" option and journal is on separate device */
2622
	if ((!jdev_name || !jdev_name[0])) {
2623 2624
		if (jdev == super->s_dev)
			blkdev_mode &= ~FMODE_EXCL;
2625 2626
		journal->j_dev_bd = blkdev_get_by_dev(jdev, blkdev_mode,
						      journal);
2627
		journal->j_dev_mode = blkdev_mode;
Linus Torvalds's avatar
Linus Torvalds committed
2628 2629 2630
		if (IS_ERR(journal->j_dev_bd)) {
			result = PTR_ERR(journal->j_dev_bd);
			journal->j_dev_bd = NULL;
2631
			reiserfs_warning(super, "sh-458",
2632 2633
					 "cannot init journal device '%s': %i",
					 __bdevname(jdev, b), result);
Linus Torvalds's avatar
Linus Torvalds committed
2634
			return result;
2635
		} else if (jdev != super->s_dev)
Linus Torvalds's avatar
Linus Torvalds committed
2636
			set_blocksize(journal->j_dev_bd, super->s_blocksize);
2637

Linus Torvalds's avatar
Linus Torvalds committed
2638 2639 2640
		return 0;
	}

2641
	journal->j_dev_mode = blkdev_mode;
2642
	journal->j_dev_bd = blkdev_get_by_path(jdev_name, blkdev_mode, journal);
2643 2644 2645
	if (IS_ERR(journal->j_dev_bd)) {
		result = PTR_ERR(journal->j_dev_bd);
		journal->j_dev_bd = NULL;
2646 2647 2648
		reiserfs_warning(super,
				 "journal_init_dev: Cannot open '%s': %i",
				 jdev_name, result);
2649
		return result;
Linus Torvalds's avatar
Linus Torvalds committed
2650
	}
2651 2652 2653 2654 2655 2656

	set_blocksize(journal->j_dev_bd, super->s_blocksize);
	reiserfs_info(super,
		      "journal_init_dev: journal device: %s\n",
		      bdevname(journal->j_dev_bd, b));
	return 0;
Linus Torvalds's avatar
Linus Torvalds committed
2657 2658
}

2659
/*
2660 2661 2662 2663 2664 2665 2666 2667 2668 2669 2670 2671 2672
 * When creating/tuning a file system user can assign some
 * journal params within boundaries which depend on the ratio
 * blocksize/standard_blocksize.
 *
 * For blocks >= standard_blocksize transaction size should
 * be not less then JOURNAL_TRANS_MIN_DEFAULT, and not more
 * then JOURNAL_TRANS_MAX_DEFAULT.
 *
 * For blocks < standard_blocksize these boundaries should be
 * decreased proportionally.
 */
#define REISERFS_STANDARD_BLKSIZE (4096)

Jeff Mahoney's avatar
Jeff Mahoney committed
2673
static int check_advise_trans_params(struct super_block *sb,
2674 2675 2676
				     struct reiserfs_journal *journal)
{
        if (journal->j_trans_max) {
2677
		/* Non-default journal params.  Do sanity check for them. */
2678
	        int ratio = 1;
Jeff Mahoney's avatar
Jeff Mahoney committed
2679 2680
		if (sb->s_blocksize < REISERFS_STANDARD_BLKSIZE)
		        ratio = REISERFS_STANDARD_BLKSIZE / sb->s_blocksize;
2681 2682 2683

		if (journal->j_trans_max > JOURNAL_TRANS_MAX_DEFAULT / ratio ||
		    journal->j_trans_max < JOURNAL_TRANS_MIN_DEFAULT / ratio ||
Jeff Mahoney's avatar
Jeff Mahoney committed
2684
		    SB_ONDISK_JOURNAL_SIZE(sb) / journal->j_trans_max <
2685
		    JOURNAL_MIN_RATIO) {
Jeff Mahoney's avatar
Jeff Mahoney committed
2686
			reiserfs_warning(sb, "sh-462",
2687 2688
					 "bad transaction max size (%u). "
					 "FSCK?", journal->j_trans_max);
2689 2690 2691 2692
			return 1;
		}
		if (journal->j_max_batch != (journal->j_trans_max) *
		        JOURNAL_MAX_BATCH_DEFAULT/JOURNAL_TRANS_MAX_DEFAULT) {
Jeff Mahoney's avatar
Jeff Mahoney committed
2693
			reiserfs_warning(sb, "sh-463",
2694 2695
					 "bad transaction max batch (%u). "
					 "FSCK?", journal->j_max_batch);
2696 2697 2698
			return 1;
		}
	} else {
2699 2700 2701 2702 2703 2704
		/*
		 * Default journal params.
		 * The file system was created by old version
		 * of mkreiserfs, so some fields contain zeros,
		 * and we need to advise proper values for them
		 */
Jeff Mahoney's avatar
Jeff Mahoney committed
2705 2706 2707
		if (sb->s_blocksize != REISERFS_STANDARD_BLKSIZE) {
			reiserfs_warning(sb, "sh-464", "bad blocksize (%u)",
					 sb->s_blocksize);
2708 2709
			return 1;
		}
2710 2711 2712 2713 2714 2715 2716
		journal->j_trans_max = JOURNAL_TRANS_MAX_DEFAULT;
		journal->j_max_batch = JOURNAL_MAX_BATCH_DEFAULT;
		journal->j_max_commit_age = JOURNAL_MAX_COMMIT_AGE;
	}
	return 0;
}

2717
/* must be called once on fs mount.  calls journal_read for you */
Jeff Mahoney's avatar
Jeff Mahoney committed
2718
int journal_init(struct super_block *sb, const char *j_dev_name,
2719 2720
		 int old_format, unsigned int commit_max_age)
{
Jeff Mahoney's avatar
Jeff Mahoney committed
2721
	int num_cnodes = SB_ONDISK_JOURNAL_SIZE(sb) * 2;
2722 2723 2724 2725 2726 2727
	struct buffer_head *bhjh;
	struct reiserfs_super_block *rs;
	struct reiserfs_journal_header *jh;
	struct reiserfs_journal *journal;
	struct reiserfs_journal_list *jl;
	char b[BDEVNAME_SIZE];
2728
	int ret;
2729

2730
	journal = SB_JOURNAL(sb) = vzalloc(sizeof(struct reiserfs_journal));
2731
	if (!journal) {
Jeff Mahoney's avatar
Jeff Mahoney committed
2732
		reiserfs_warning(sb, "journal-1256",
2733
				 "unable to get memory for journal structure");
2734 2735 2736 2737 2738 2739 2740
		return 1;
	}
	INIT_LIST_HEAD(&journal->j_bitmap_nodes);
	INIT_LIST_HEAD(&journal->j_prealloc_list);
	INIT_LIST_HEAD(&journal->j_working_list);
	INIT_LIST_HEAD(&journal->j_journal_list);
	journal->j_persistent_trans = 0;
2741 2742
	if (reiserfs_allocate_list_bitmaps(sb, journal->j_list_bitmap,
					   reiserfs_bmap_count(sb)))
2743
		goto free_and_return;
2744

Jeff Mahoney's avatar
Jeff Mahoney committed
2745
	allocate_bitmap_nodes(sb);
2746 2747

	/* reserved for journal area support */
Jeff Mahoney's avatar
Jeff Mahoney committed
2748
	SB_JOURNAL_1st_RESERVED_BLOCK(sb) = (old_format ?
2749
						 REISERFS_OLD_DISK_OFFSET_IN_BYTES
Jeff Mahoney's avatar
Jeff Mahoney committed
2750 2751
						 / sb->s_blocksize +
						 reiserfs_bmap_count(sb) +
2752 2753
						 1 :
						 REISERFS_DISK_OFFSET_IN_BYTES /
Jeff Mahoney's avatar
Jeff Mahoney committed
2754
						 sb->s_blocksize + 2);
2755

2756 2757 2758 2759
	/*
	 * Sanity check to see is the standard journal fitting
	 * within first bitmap (actual for small blocksizes)
	 */
Jeff Mahoney's avatar
Jeff Mahoney committed
2760 2761 2762 2763
	if (!SB_ONDISK_JOURNAL_DEVICE(sb) &&
	    (SB_JOURNAL_1st_RESERVED_BLOCK(sb) +
	     SB_ONDISK_JOURNAL_SIZE(sb) > sb->s_blocksize * 8)) {
		reiserfs_warning(sb, "journal-1393",
2764 2765
				 "journal does not fit for area addressed "
				 "by first of bitmap blocks. It starts at "
2766
				 "%u and its size is %u. Block size %ld",
Jeff Mahoney's avatar
Jeff Mahoney committed
2767 2768 2769
				 SB_JOURNAL_1st_RESERVED_BLOCK(sb),
				 SB_ONDISK_JOURNAL_SIZE(sb),
				 sb->s_blocksize);
2770 2771 2772
		goto free_and_return;
	}

Jeff Mahoney's avatar
Jeff Mahoney committed
2773 2774
	if (journal_init_dev(sb, journal, j_dev_name) != 0) {
		reiserfs_warning(sb, "sh-462",
2775
				 "unable to initialize journal device");
2776 2777 2778
		goto free_and_return;
	}

Jeff Mahoney's avatar
Jeff Mahoney committed
2779
	rs = SB_DISK_SUPER_BLOCK(sb);
2780 2781

	/* read journal header */
Jeff Mahoney's avatar
Jeff Mahoney committed
2782 2783 2784
	bhjh = journal_bread(sb,
			     SB_ONDISK_JOURNAL_1st_BLOCK(sb) +
			     SB_ONDISK_JOURNAL_SIZE(sb));
2785
	if (!bhjh) {
Jeff Mahoney's avatar
Jeff Mahoney committed
2786
		reiserfs_warning(sb, "sh-459",
2787
				 "unable to read journal header");
2788 2789 2790 2791 2792 2793 2794 2795
		goto free_and_return;
	}
	jh = (struct reiserfs_journal_header *)(bhjh->b_data);

	/* make sure that journal matches to the super block */
	if (is_reiserfs_jr(rs)
	    && (le32_to_cpu(jh->jh_journal.jp_journal_magic) !=
		sb_jp_journal_magic(rs))) {
Jeff Mahoney's avatar
Jeff Mahoney committed
2796
		reiserfs_warning(sb, "sh-460",
2797 2798 2799
				 "journal header magic %x (device %s) does "
				 "not match to magic found in super block %x",
				 jh->jh_journal.jp_journal_magic,
2800 2801 2802 2803 2804 2805 2806 2807 2808 2809 2810 2811
				 bdevname(journal->j_dev_bd, b),
				 sb_jp_journal_magic(rs));
		brelse(bhjh);
		goto free_and_return;
	}

	journal->j_trans_max = le32_to_cpu(jh->jh_journal.jp_journal_trans_max);
	journal->j_max_batch = le32_to_cpu(jh->jh_journal.jp_journal_max_batch);
	journal->j_max_commit_age =
	    le32_to_cpu(jh->jh_journal.jp_journal_max_commit_age);
	journal->j_max_trans_age = JOURNAL_MAX_TRANS_AGE;

Jeff Mahoney's avatar
Jeff Mahoney committed
2812
	if (check_advise_trans_params(sb, journal) != 0)
2813
	        goto free_and_return;
2814 2815 2816 2817 2818 2819 2820
	journal->j_default_max_commit_age = journal->j_max_commit_age;

	if (commit_max_age != 0) {
		journal->j_max_commit_age = commit_max_age;
		journal->j_max_trans_age = commit_max_age;
	}

Jeff Mahoney's avatar
Jeff Mahoney committed
2821
	reiserfs_info(sb, "journal params: device %s, size %u, "
2822 2823 2824
		      "journal first block %u, max trans len %u, max batch %u, "
		      "max commit age %u, max trans age %u\n",
		      bdevname(journal->j_dev_bd, b),
Jeff Mahoney's avatar
Jeff Mahoney committed
2825 2826
		      SB_ONDISK_JOURNAL_SIZE(sb),
		      SB_ONDISK_JOURNAL_1st_BLOCK(sb),
2827 2828 2829 2830 2831 2832 2833
		      journal->j_trans_max,
		      journal->j_max_batch,
		      journal->j_max_commit_age, journal->j_max_trans_age);

	brelse(bhjh);

	journal->j_list_bitmap_index = 0;
Jeff Mahoney's avatar
Jeff Mahoney committed
2834
	journal_list_init(sb);
2835 2836 2837 2838 2839 2840 2841 2842 2843 2844

	memset(journal->j_list_hash_table, 0,
	       JOURNAL_HASH_SIZE * sizeof(struct reiserfs_journal_cnode *));

	INIT_LIST_HEAD(&journal->j_dirty_buffers);
	spin_lock_init(&journal->j_dirty_buffers_lock);

	journal->j_start = 0;
	journal->j_len = 0;
	journal->j_len_alloc = 0;
2845 2846
	atomic_set(&journal->j_wcount, 0);
	atomic_set(&journal->j_async_throttle, 0);
2847 2848 2849 2850
	journal->j_bcount = 0;
	journal->j_trans_start_time = 0;
	journal->j_last = NULL;
	journal->j_first = NULL;
2851
	init_waitqueue_head(&journal->j_join_wait);
2852
	mutex_init(&journal->j_mutex);
2853
	mutex_init(&journal->j_flush_mutex);
2854 2855 2856 2857

	journal->j_trans_id = 10;
	journal->j_mount_id = 10;
	journal->j_state = 0;
2858
	atomic_set(&journal->j_jlock, 0);
2859 2860 2861 2862 2863 2864
	journal->j_cnode_free_list = allocate_cnodes(num_cnodes);
	journal->j_cnode_free_orig = journal->j_cnode_free_list;
	journal->j_cnode_free = journal->j_cnode_free_list ? num_cnodes : 0;
	journal->j_cnode_used = 0;
	journal->j_must_wait = 0;

2865
	if (journal->j_cnode_free == 0) {
Jeff Mahoney's avatar
Jeff Mahoney committed
2866
		reiserfs_warning(sb, "journal-2004", "Journal cnode memory "
2867 2868 2869 2870 2871 2872 2873
		                 "allocation failed (%ld bytes). Journal is "
		                 "too large for available memory. Usually "
		                 "this is due to a journal that is too large.",
		                 sizeof (struct reiserfs_journal_cnode) * num_cnodes);
        	goto free_and_return;
	}

Jeff Mahoney's avatar
Jeff Mahoney committed
2874
	init_journal_hash(sb);
2875
	jl = journal->j_current_jl;
2876 2877 2878 2879 2880 2881 2882

	/*
	 * get_list_bitmap() may call flush_commit_list() which
	 * requires the lock. Calling flush_commit_list() shouldn't happen
	 * this early but I like to be paranoid.
	 */
	reiserfs_write_lock(sb);
Jeff Mahoney's avatar
Jeff Mahoney committed
2883
	jl->j_list_bitmap = get_list_bitmap(sb, jl);
2884
	reiserfs_write_unlock(sb);
2885
	if (!jl->j_list_bitmap) {
Jeff Mahoney's avatar
Jeff Mahoney committed
2886
		reiserfs_warning(sb, "journal-2005",
2887
				 "get_list_bitmap failed for journal list 0");
2888 2889
		goto free_and_return;
	}
2890 2891 2892

	ret = journal_read(sb);
	if (ret < 0) {
Jeff Mahoney's avatar
Jeff Mahoney committed
2893
		reiserfs_warning(sb, "reiserfs-2006",
2894
				 "Replay Failure, unable to mount");
2895 2896 2897
		goto free_and_return;
	}

David Howells's avatar
David Howells committed
2898
	INIT_DELAYED_WORK(&journal->j_work, flush_async_commits);
Jeff Mahoney's avatar
Jeff Mahoney committed
2899
	journal->j_work_sb = sb;
2900
	return 0;
2901
free_and_return:
Jeff Mahoney's avatar
Jeff Mahoney committed
2902
	free_journal_ram(sb);
2903
	return 1;
Linus Torvalds's avatar
Linus Torvalds committed
2904 2905 2906
}

/*
2907 2908 2909 2910
 * test for a polite end of the current transaction.  Used by file_write,
 * and should be used by delete to make sure they don't write more than
 * can fit inside a single transaction
 */
2911 2912 2913 2914 2915 2916 2917 2918 2919 2920 2921
int journal_transaction_should_end(struct reiserfs_transaction_handle *th,
				   int new_alloc)
{
	struct reiserfs_journal *journal = SB_JOURNAL(th->t_super);
	time_t now = get_seconds();
	/* cannot restart while nested */
	BUG_ON(!th->t_trans_id);
	if (th->t_refcount > 1)
		return 0;
	if (journal->j_must_wait > 0 ||
	    (journal->j_len_alloc + new_alloc) >= journal->j_max_batch ||
2922
	    atomic_read(&journal->j_jlock) ||
2923 2924 2925 2926
	    (now - journal->j_trans_start_time) > journal->j_max_trans_age ||
	    journal->j_cnode_free < (journal->j_trans_max * 3)) {
		return 1;
	}
2927

2928 2929
	journal->j_len_alloc += new_alloc;
	th->t_blocks_allocated += new_alloc ;
2930
	return 0;
Linus Torvalds's avatar
Linus Torvalds committed
2931 2932
}

2933
/* this must be called inside a transaction */
2934 2935 2936 2937 2938 2939 2940
void reiserfs_block_writes(struct reiserfs_transaction_handle *th)
{
	struct reiserfs_journal *journal = SB_JOURNAL(th->t_super);
	BUG_ON(!th->t_trans_id);
	journal->j_must_wait = 1;
	set_bit(J_WRITERS_BLOCKED, &journal->j_state);
	return;
Linus Torvalds's avatar
Linus Torvalds committed
2941 2942
}

2943
/* this must be called without a transaction started */
2944 2945 2946 2947 2948
void reiserfs_allow_writes(struct super_block *s)
{
	struct reiserfs_journal *journal = SB_JOURNAL(s);
	clear_bit(J_WRITERS_BLOCKED, &journal->j_state);
	wake_up(&journal->j_join_wait);
Linus Torvalds's avatar
Linus Torvalds committed
2949 2950
}

2951
/* this must be called without a transaction started */
2952 2953 2954 2955 2956 2957 2958 2959 2960 2961 2962 2963 2964 2965 2966 2967 2968 2969 2970
void reiserfs_wait_on_write_block(struct super_block *s)
{
	struct reiserfs_journal *journal = SB_JOURNAL(s);
	wait_event(journal->j_join_wait,
		   !test_bit(J_WRITERS_BLOCKED, &journal->j_state));
}

static void queue_log_writer(struct super_block *s)
{
	wait_queue_t wait;
	struct reiserfs_journal *journal = SB_JOURNAL(s);
	set_bit(J_WRITERS_QUEUED, &journal->j_state);

	/*
	 * we don't want to use wait_event here because
	 * we only want to wait once.
	 */
	init_waitqueue_entry(&wait, current);
	add_wait_queue(&journal->j_join_wait, &wait);
Linus Torvalds's avatar
Linus Torvalds committed
2971
	set_current_state(TASK_UNINTERRUPTIBLE);
Frederic Weisbecker's avatar
Frederic Weisbecker committed
2972
	if (test_bit(J_WRITERS_QUEUED, &journal->j_state)) {
2973
		int depth = reiserfs_write_unlock_nested(s);
2974
		schedule();
2975
		reiserfs_write_lock_nested(s, depth);
Frederic Weisbecker's avatar
Frederic Weisbecker committed
2976
	}
2977
	__set_current_state(TASK_RUNNING);
2978 2979 2980 2981 2982 2983 2984 2985 2986 2987
	remove_wait_queue(&journal->j_join_wait, &wait);
}

static void wake_queued_writers(struct super_block *s)
{
	struct reiserfs_journal *journal = SB_JOURNAL(s);
	if (test_and_clear_bit(J_WRITERS_QUEUED, &journal->j_state))
		wake_up(&journal->j_join_wait);
}

2988
static void let_transaction_grow(struct super_block *sb, unsigned int trans_id)
2989 2990 2991 2992
{
	struct reiserfs_journal *journal = SB_JOURNAL(sb);
	unsigned long bcount = journal->j_bcount;
	while (1) {
2993 2994 2995
		int depth;

		depth = reiserfs_write_unlock_nested(sb);
2996
		schedule_timeout_uninterruptible(1);
2997 2998
		reiserfs_write_lock_nested(sb, depth);

2999 3000 3001 3002 3003 3004 3005 3006 3007 3008 3009
		journal->j_current_jl->j_state |= LIST_COMMIT_PENDING;
		while ((atomic_read(&journal->j_wcount) > 0 ||
			atomic_read(&journal->j_jlock)) &&
		       journal->j_trans_id == trans_id) {
			queue_log_writer(sb);
		}
		if (journal->j_trans_id != trans_id)
			break;
		if (bcount == journal->j_bcount)
			break;
		bcount = journal->j_bcount;
Linus Torvalds's avatar
Linus Torvalds committed
3010 3011 3012
	}
}

3013 3014 3015 3016 3017 3018
/*
 * join == true if you must join an existing transaction.
 * join == false if you can deal with waiting for others to finish
 *
 * this will block until the transaction is joinable.  send the number of
 * blocks you expect to use in nblocks.
Linus Torvalds's avatar
Linus Torvalds committed
3019
*/
3020
static int do_journal_begin_r(struct reiserfs_transaction_handle *th,
Jeff Mahoney's avatar
Jeff Mahoney committed
3021
			      struct super_block *sb, unsigned long nblocks,
3022 3023 3024
			      int join)
{
	time_t now = get_seconds();
3025
	unsigned int old_trans_id;
Jeff Mahoney's avatar
Jeff Mahoney committed
3026
	struct reiserfs_journal *journal = SB_JOURNAL(sb);
3027 3028 3029
	struct reiserfs_transaction_handle myth;
	int sched_count = 0;
	int retval;
3030
	int depth;
3031

Jeff Mahoney's avatar
Jeff Mahoney committed
3032
	reiserfs_check_lock_depth(sb, "journal_begin");
3033
	BUG_ON(nblocks > journal->j_trans_max);
3034

Jeff Mahoney's avatar
Jeff Mahoney committed
3035
	PROC_INFO_INC(sb, journal.journal_being);
3036 3037
	/* set here for journal_join */
	th->t_refcount = 1;
Jeff Mahoney's avatar
Jeff Mahoney committed
3038
	th->t_super = sb;
3039

3040
relock:
Jeff Mahoney's avatar
Jeff Mahoney committed
3041
	lock_journal(sb);
3042
	if (join != JBEGIN_ABORT && reiserfs_is_journal_aborted(journal)) {
Jeff Mahoney's avatar
Jeff Mahoney committed
3043
		unlock_journal(sb);
3044 3045 3046 3047 3048 3049
		retval = journal->j_errno;
		goto out_fail;
	}
	journal->j_bcount++;

	if (test_bit(J_WRITERS_BLOCKED, &journal->j_state)) {
Jeff Mahoney's avatar
Jeff Mahoney committed
3050
		unlock_journal(sb);
3051
		depth = reiserfs_write_unlock_nested(sb);
Jeff Mahoney's avatar
Jeff Mahoney committed
3052
		reiserfs_wait_on_write_block(sb);
3053
		reiserfs_write_lock_nested(sb, depth);
Jeff Mahoney's avatar
Jeff Mahoney committed
3054
		PROC_INFO_INC(sb, journal.journal_relock_writers);
3055 3056 3057 3058
		goto relock;
	}
	now = get_seconds();

3059 3060 3061 3062 3063
	/*
	 * if there is no room in the journal OR
	 * if this transaction is too old, and we weren't called joinable,
	 * wait for it to finish before beginning we don't sleep if there
	 * aren't other writers
3064 3065 3066 3067 3068 3069 3070 3071 3072 3073 3074 3075 3076
	 */

	if ((!join && journal->j_must_wait > 0) ||
	    (!join
	     && (journal->j_len_alloc + nblocks + 2) >= journal->j_max_batch)
	    || (!join && atomic_read(&journal->j_wcount) > 0
		&& journal->j_trans_start_time > 0
		&& (now - journal->j_trans_start_time) >
		journal->j_max_trans_age) || (!join
					      && atomic_read(&journal->j_jlock))
	    || (!join && journal->j_cnode_free < (journal->j_trans_max * 3))) {

		old_trans_id = journal->j_trans_id;
3077 3078
		/* allow others to finish this transaction */
		unlock_journal(sb);
3079 3080 3081 3082 3083 3084 3085

		if (!join && (journal->j_len_alloc + nblocks + 2) >=
		    journal->j_max_batch &&
		    ((journal->j_len + nblocks + 2) * 100) <
		    (journal->j_len_alloc * 75)) {
			if (atomic_read(&journal->j_wcount) > 10) {
				sched_count++;
Jeff Mahoney's avatar
Jeff Mahoney committed
3086
				queue_log_writer(sb);
3087 3088 3089
				goto relock;
			}
		}
3090 3091 3092
		/*
		 * don't mess with joining the transaction if all we
		 * have to do is wait for someone else to do a commit
3093 3094 3095 3096
		 */
		if (atomic_read(&journal->j_jlock)) {
			while (journal->j_trans_id == old_trans_id &&
			       atomic_read(&journal->j_jlock)) {
Jeff Mahoney's avatar
Jeff Mahoney committed
3097
				queue_log_writer(sb);
3098 3099 3100
			}
			goto relock;
		}
3101
		retval = journal_join(&myth, sb);
3102 3103 3104 3105 3106
		if (retval)
			goto out_fail;

		/* someone might have ended the transaction while we joined */
		if (old_trans_id != journal->j_trans_id) {
3107
			retval = do_journal_end(&myth, 0);
3108
		} else {
3109
			retval = do_journal_end(&myth, COMMIT_NOW);
3110 3111 3112 3113 3114
		}

		if (retval)
			goto out_fail;

Jeff Mahoney's avatar
Jeff Mahoney committed
3115
		PROC_INFO_INC(sb, journal.journal_relock_wcount);
3116 3117 3118 3119 3120 3121
		goto relock;
	}
	/* we are the first writer, set trans_id */
	if (journal->j_trans_start_time == 0) {
		journal->j_trans_start_time = get_seconds();
	}
3122
	atomic_inc(&journal->j_wcount);
3123 3124 3125 3126
	journal->j_len_alloc += nblocks;
	th->t_blocks_logged = 0;
	th->t_blocks_allocated = nblocks;
	th->t_trans_id = journal->j_trans_id;
Jeff Mahoney's avatar
Jeff Mahoney committed
3127
	unlock_journal(sb);
3128 3129 3130
	INIT_LIST_HEAD(&th->t_list);
	return 0;

3131
out_fail:
3132
	memset(th, 0, sizeof(*th));
3133 3134
	/*
	 * Re-set th->t_super, so we can properly keep track of how many
3135
	 * persistent transactions there are. We need to do this so if this
3136 3137
	 * call is part of a failed restart_transaction, we can free it later
	 */
Jeff Mahoney's avatar
Jeff Mahoney committed
3138
	th->t_super = sb;
3139 3140 3141 3142 3143 3144 3145 3146 3147 3148 3149
	return retval;
}

struct reiserfs_transaction_handle *reiserfs_persistent_transaction(struct
								    super_block
								    *s,
								    int nblocks)
{
	int ret;
	struct reiserfs_transaction_handle *th;

3150 3151 3152
	/*
	 * if we're nesting into an existing transaction.  It will be
	 * persistent on its own
3153 3154 3155 3156
	 */
	if (reiserfs_transaction_running(s)) {
		th = current->journal_info;
		th->t_refcount++;
3157
		BUG_ON(th->t_refcount < 2);
3158

3159 3160
		return th;
	}
3161
	th = kmalloc(sizeof(struct reiserfs_transaction_handle), GFP_NOFS);
3162 3163 3164 3165
	if (!th)
		return NULL;
	ret = journal_begin(th, s, nblocks);
	if (ret) {
3166
		kfree(th);
3167 3168 3169 3170 3171 3172 3173 3174 3175 3176 3177 3178
		return NULL;
	}

	SB_JOURNAL(s)->j_persistent_trans++;
	return th;
}

int reiserfs_end_persistent_transaction(struct reiserfs_transaction_handle *th)
{
	struct super_block *s = th->t_super;
	int ret = 0;
	if (th->t_trans_id)
3179
		ret = journal_end(th);
3180 3181 3182 3183
	else
		ret = -EIO;
	if (th->t_refcount == 0) {
		SB_JOURNAL(s)->j_persistent_trans--;
3184
		kfree(th);
3185 3186 3187 3188 3189
	}
	return ret;
}

static int journal_join(struct reiserfs_transaction_handle *th,
3190
			struct super_block *sb)
3191 3192 3193
{
	struct reiserfs_transaction_handle *cur_th = current->journal_info;

3194 3195 3196
	/*
	 * this keeps do_journal_end from NULLing out the
	 * current->journal_info pointer
3197 3198
	 */
	th->t_handle_save = cur_th;
3199
	BUG_ON(cur_th && cur_th->t_refcount > 1);
3200
	return do_journal_begin_r(th, sb, 1, JBEGIN_JOIN);
3201 3202 3203
}

int journal_join_abort(struct reiserfs_transaction_handle *th,
3204
		       struct super_block *sb)
3205 3206 3207
{
	struct reiserfs_transaction_handle *cur_th = current->journal_info;

3208 3209 3210
	/*
	 * this keeps do_journal_end from NULLing out the
	 * current->journal_info pointer
3211 3212
	 */
	th->t_handle_save = cur_th;
3213
	BUG_ON(cur_th && cur_th->t_refcount > 1);
3214
	return do_journal_begin_r(th, sb, 1, JBEGIN_ABORT);
3215 3216 3217
}

int journal_begin(struct reiserfs_transaction_handle *th,
Jeff Mahoney's avatar
Jeff Mahoney committed
3218
		  struct super_block *sb, unsigned long nblocks)
3219 3220 3221 3222 3223 3224 3225
{
	struct reiserfs_transaction_handle *cur_th = current->journal_info;
	int ret;

	th->t_handle_save = NULL;
	if (cur_th) {
		/* we are nesting into the current transaction */
Jeff Mahoney's avatar
Jeff Mahoney committed
3226
		if (cur_th->t_super == sb) {
3227 3228 3229 3230
			BUG_ON(!cur_th->t_refcount);
			cur_th->t_refcount++;
			memcpy(th, cur_th, sizeof(*th));
			if (th->t_refcount <= 1)
Jeff Mahoney's avatar
Jeff Mahoney committed
3231
				reiserfs_warning(sb, "reiserfs-2005",
3232 3233
						 "BAD: refcount <= 1, but "
						 "journal_info != 0");
3234 3235
			return 0;
		} else {
3236 3237 3238 3239
			/*
			 * we've ended up with a handle from a different
			 * filesystem.  save it and restore on journal_end.
			 * This should never really happen...
3240
			 */
Jeff Mahoney's avatar
Jeff Mahoney committed
3241
			reiserfs_warning(sb, "clm-2100",
3242
					 "nesting info a different FS");
3243 3244 3245
			th->t_handle_save = current->journal_info;
			current->journal_info = th;
		}
Linus Torvalds's avatar
Linus Torvalds committed
3246
	} else {
3247 3248
		current->journal_info = th;
	}
Jeff Mahoney's avatar
Jeff Mahoney committed
3249
	ret = do_journal_begin_r(th, sb, nblocks, JBEGIN_REG);
3250
	BUG_ON(current->journal_info != th);
Linus Torvalds's avatar
Linus Torvalds committed
3251

3252 3253 3254 3255
	/*
	 * I guess this boils down to being the reciprocal of clm-2100 above.
	 * If do_journal_begin_r fails, we need to put it back, since
	 * journal_end won't be called to do it. */
3256 3257 3258 3259
	if (ret)
		current->journal_info = th->t_handle_save;
	else
		BUG_ON(!th->t_refcount);
Linus Torvalds's avatar
Linus Torvalds committed
3260

3261
	return ret;
Linus Torvalds's avatar
Linus Torvalds committed
3262 3263 3264
}

/*
3265 3266 3267 3268 3269 3270 3271 3272 3273
 * puts bh into the current transaction.  If it was already there, reorders
 * removes the old pointers from the hash, and puts new ones in (to make
 * sure replay happen in the right order).
 *
 * if it was dirty, cleans and files onto the clean list.  I can't let it
 * be dirty again until the transaction is committed.
 *
 * if j_len, is bigger than j_len_alloc, it pushes j_len_alloc to 10 + j_len.
 */
3274
int journal_mark_dirty(struct reiserfs_transaction_handle *th,
3275
		       struct buffer_head *bh)
3276
{
3277
	struct super_block *sb = th->t_super;
Jeff Mahoney's avatar
Jeff Mahoney committed
3278
	struct reiserfs_journal *journal = SB_JOURNAL(sb);
3279 3280 3281 3282 3283
	struct reiserfs_journal_cnode *cn = NULL;
	int count_already_incd = 0;
	int prepared = 0;
	BUG_ON(!th->t_trans_id);

Jeff Mahoney's avatar
Jeff Mahoney committed
3284
	PROC_INFO_INC(sb, journal.mark_dirty);
3285
	if (th->t_trans_id != journal->j_trans_id) {
Jeff Mahoney's avatar
Jeff Mahoney committed
3286 3287
		reiserfs_panic(th->t_super, "journal-1577",
			       "handle trans id %ld != current trans id %ld",
3288 3289 3290 3291 3292 3293 3294
			       th->t_trans_id, journal->j_trans_id);
	}

	prepared = test_clear_buffer_journal_prepared(bh);
	clear_buffer_journal_restore_dirty(bh);
	/* already in this transaction, we are done */
	if (buffer_journaled(bh)) {
Jeff Mahoney's avatar
Jeff Mahoney committed
3295
		PROC_INFO_INC(sb, journal.mark_dirty_already);
3296 3297 3298
		return 0;
	}

3299 3300 3301 3302
	/*
	 * this must be turned into a panic instead of a warning.  We can't
	 * allow a dirty or journal_dirty or locked buffer to be logged, as
	 * some changes could get to disk too early.  NOT GOOD.
3303 3304
	 */
	if (!prepared || buffer_dirty(bh)) {
Jeff Mahoney's avatar
Jeff Mahoney committed
3305
		reiserfs_warning(sb, "journal-1777",
3306
				 "buffer %llu bad state "
3307 3308 3309 3310 3311 3312 3313 3314
				 "%cPREPARED %cLOCKED %cDIRTY %cJDIRTY_WAIT",
				 (unsigned long long)bh->b_blocknr,
				 prepared ? ' ' : '!',
				 buffer_locked(bh) ? ' ' : '!',
				 buffer_dirty(bh) ? ' ' : '!',
				 buffer_journal_dirty(bh) ? ' ' : '!');
	}

3315
	if (atomic_read(&journal->j_wcount) <= 0) {
Jeff Mahoney's avatar
Jeff Mahoney committed
3316
		reiserfs_warning(sb, "journal-1409",
3317
				 "returning because j_wcount was %d",
3318
				 atomic_read(&journal->j_wcount));
3319 3320
		return 1;
	}
3321 3322 3323 3324
	/*
	 * this error means I've screwed up, and we've overflowed
	 * the transaction.  Nothing can be done here, except make the
	 * FS readonly or panic.
3325 3326
	 */
	if (journal->j_len >= journal->j_trans_max) {
Jeff Mahoney's avatar
Jeff Mahoney committed
3327 3328
		reiserfs_panic(th->t_super, "journal-1413",
			       "j_len (%lu) is too big",
3329 3330 3331 3332 3333
			       journal->j_len);
	}

	if (buffer_journal_dirty(bh)) {
		count_already_incd = 1;
Jeff Mahoney's avatar
Jeff Mahoney committed
3334
		PROC_INFO_INC(sb, journal.mark_dirty_notjournal);
3335 3336 3337 3338 3339 3340 3341 3342 3343 3344 3345
		clear_buffer_journal_dirty(bh);
	}

	if (journal->j_len > journal->j_len_alloc) {
		journal->j_len_alloc = journal->j_len + JOURNAL_PER_BALANCE_CNT;
	}

	set_buffer_journaled(bh);

	/* now put this guy on the end */
	if (!cn) {
Jeff Mahoney's avatar
Jeff Mahoney committed
3346
		cn = get_cnode(sb);
3347
		if (!cn) {
Jeff Mahoney's avatar
Jeff Mahoney committed
3348
			reiserfs_panic(sb, "journal-4", "get_cnode failed!");
3349 3350 3351 3352 3353 3354 3355 3356 3357 3358 3359
		}

		if (th->t_blocks_logged == th->t_blocks_allocated) {
			th->t_blocks_allocated += JOURNAL_PER_BALANCE_CNT;
			journal->j_len_alloc += JOURNAL_PER_BALANCE_CNT;
		}
		th->t_blocks_logged++;
		journal->j_len++;

		cn->bh = bh;
		cn->blocknr = bh->b_blocknr;
Jeff Mahoney's avatar
Jeff Mahoney committed
3360
		cn->sb = sb;
3361 3362 3363 3364 3365 3366 3367 3368 3369 3370 3371 3372 3373 3374 3375 3376
		cn->jlist = NULL;
		insert_journal_hash(journal->j_hash_table, cn);
		if (!count_already_incd) {
			get_bh(bh);
		}
	}
	cn->next = NULL;
	cn->prev = journal->j_last;
	cn->bh = bh;
	if (journal->j_last) {
		journal->j_last->next = cn;
		journal->j_last = cn;
	} else {
		journal->j_first = cn;
		journal->j_last = cn;
	}
3377
	reiserfs_schedule_old_flush(sb);
3378 3379 3380
	return 0;
}

3381
int journal_end(struct reiserfs_transaction_handle *th)
3382
{
3383
	struct super_block *sb = th->t_super;
3384
	if (!current->journal_info && th->t_refcount > 1)
Jeff Mahoney's avatar
Jeff Mahoney committed
3385
		reiserfs_warning(sb, "REISER-NESTING",
3386
				 "th NULL, refcount %d", th->t_refcount);
3387 3388 3389 3390 3391 3392 3393 3394 3395 3396 3397

	if (!th->t_trans_id) {
		WARN_ON(1);
		return -EIO;
	}

	th->t_refcount--;
	if (th->t_refcount > 0) {
		struct reiserfs_transaction_handle *cur_th =
		    current->journal_info;

3398 3399 3400
		/*
		 * we aren't allowed to close a nested transaction on a
		 * different filesystem from the one in the task struct
3401
		 */
3402
		BUG_ON(cur_th->t_super != th->t_super);
3403 3404 3405 3406 3407 3408 3409

		if (th != cur_th) {
			memcpy(current->journal_info, th, sizeof(*th));
			th->t_trans_id = 0;
		}
		return 0;
	} else {
3410
		return do_journal_end(th, 0);
3411
	}
Linus Torvalds's avatar
Linus Torvalds committed
3412 3413
}

3414 3415 3416 3417 3418 3419 3420 3421
/*
 * removes from the current transaction, relsing and descrementing any counters.
 * also files the removed buffer directly onto the clean list
 *
 * called by journal_mark_freed when a block has been deleted
 *
 * returns 1 if it cleaned and relsed the buffer. 0 otherwise
 */
Jeff Mahoney's avatar
Jeff Mahoney committed
3422
static int remove_from_transaction(struct super_block *sb,
3423 3424 3425 3426
				   b_blocknr_t blocknr, int already_cleaned)
{
	struct buffer_head *bh;
	struct reiserfs_journal_cnode *cn;
Jeff Mahoney's avatar
Jeff Mahoney committed
3427
	struct reiserfs_journal *journal = SB_JOURNAL(sb);
3428 3429
	int ret = 0;

Jeff Mahoney's avatar
Jeff Mahoney committed
3430
	cn = get_journal_hash_dev(sb, journal->j_hash_table, blocknr);
3431 3432 3433 3434 3435 3436 3437 3438 3439 3440 3441 3442 3443 3444 3445 3446 3447
	if (!cn || !cn->bh) {
		return ret;
	}
	bh = cn->bh;
	if (cn->prev) {
		cn->prev->next = cn->next;
	}
	if (cn->next) {
		cn->next->prev = cn->prev;
	}
	if (cn == journal->j_first) {
		journal->j_first = cn->next;
	}
	if (cn == journal->j_last) {
		journal->j_last = cn->prev;
	}
	if (bh)
Jeff Mahoney's avatar
Jeff Mahoney committed
3448
		remove_journal_hash(sb, journal->j_hash_table, NULL,
3449 3450 3451 3452 3453 3454 3455 3456
				    bh->b_blocknr, 0);
	clear_buffer_journaled(bh);	/* don't log this one */

	if (!already_cleaned) {
		clear_buffer_journal_dirty(bh);
		clear_buffer_dirty(bh);
		clear_buffer_journal_test(bh);
		put_bh(bh);
3457
		if (atomic_read(&bh->b_count) < 0) {
Jeff Mahoney's avatar
Jeff Mahoney committed
3458
			reiserfs_warning(sb, "journal-1752",
3459
					 "b_count < 0");
3460 3461 3462 3463 3464
		}
		ret = 1;
	}
	journal->j_len--;
	journal->j_len_alloc--;
Jeff Mahoney's avatar
Jeff Mahoney committed
3465
	free_cnode(sb, cn);
3466
	return ret;
Linus Torvalds's avatar
Linus Torvalds committed
3467 3468 3469
}

/*
3470 3471 3472 3473 3474 3475 3476 3477 3478 3479
 * for any cnode in a journal list, it can only be dirtied of all the
 * transactions that include it are committed to disk.
 * this checks through each transaction, and returns 1 if you are allowed
 * to dirty, and 0 if you aren't
 *
 * it is called by dirty_journal_list, which is called after
 * flush_commit_list has gotten all the log blocks for a given
 * transaction on disk
 *
 */
3480 3481 3482 3483 3484 3485 3486
static int can_dirty(struct reiserfs_journal_cnode *cn)
{
	struct super_block *sb = cn->sb;
	b_blocknr_t blocknr = cn->blocknr;
	struct reiserfs_journal_cnode *cur = cn->hprev;
	int can_dirty = 1;

3487 3488 3489 3490
	/*
	 * first test hprev.  These are all newer than cn, so any node here
	 * with the same block number and dev means this node can't be sent
	 * to disk right now.
3491 3492 3493 3494 3495 3496 3497 3498
	 */
	while (cur && can_dirty) {
		if (cur->jlist && cur->bh && cur->blocknr && cur->sb == sb &&
		    cur->blocknr == blocknr) {
			can_dirty = 0;
		}
		cur = cur->hprev;
	}
3499 3500 3501
	/*
	 * then test hnext.  These are all older than cn.  As long as they
	 * are committed to the log, it is safe to write cn to disk
3502 3503 3504 3505
	 */
	cur = cn->hnext;
	while (cur && can_dirty) {
		if (cur->jlist && cur->jlist->j_len > 0 &&
3506
		    atomic_read(&cur->jlist->j_commit_left) > 0 && cur->bh &&
3507 3508 3509 3510 3511 3512
		    cur->blocknr && cur->sb == sb && cur->blocknr == blocknr) {
			can_dirty = 0;
		}
		cur = cur->hnext;
	}
	return can_dirty;
Linus Torvalds's avatar
Linus Torvalds committed
3513 3514
}

3515 3516 3517 3518
/*
 * syncs the commit blocks, but does not force the real buffers to disk
 * will wait until the current transaction is done/committed before returning
 */
3519
int journal_end_sync(struct reiserfs_transaction_handle *th)
3520
{
3521
	struct super_block *sb = th->t_super;
Jeff Mahoney's avatar
Jeff Mahoney committed
3522
	struct reiserfs_journal *journal = SB_JOURNAL(sb);
Linus Torvalds's avatar
Linus Torvalds committed
3523

3524 3525
	BUG_ON(!th->t_trans_id);
	/* you can sync while nested, very, very bad */
3526
	BUG_ON(th->t_refcount > 1);
3527
	if (journal->j_len == 0) {
Jeff Mahoney's avatar
Jeff Mahoney committed
3528
		reiserfs_prepare_for_journal(sb, SB_BUFFER_WITH_SB(sb),
3529
					     1);
3530
		journal_mark_dirty(th, SB_BUFFER_WITH_SB(sb));
3531
	}
3532
	return do_journal_end(th, COMMIT_NOW | WAIT);
Linus Torvalds's avatar
Linus Torvalds committed
3533 3534
}

3535
/* writeback the pending async commits to disk */
David Howells's avatar
David Howells committed
3536
static void flush_async_commits(struct work_struct *work)
3537
{
David Howells's avatar
David Howells committed
3538 3539
	struct reiserfs_journal *journal =
		container_of(work, struct reiserfs_journal, j_work.work);
Jeff Mahoney's avatar
Jeff Mahoney committed
3540
	struct super_block *sb = journal->j_work_sb;
3541 3542 3543
	struct reiserfs_journal_list *jl;
	struct list_head *entry;

Frederic Weisbecker's avatar
Frederic Weisbecker committed
3544
	reiserfs_write_lock(sb);
3545 3546 3547 3548
	if (!list_empty(&journal->j_journal_list)) {
		/* last entry is the youngest, commit it and you get everything */
		entry = journal->j_journal_list.prev;
		jl = JOURNAL_LIST_ENTRY(entry);
Jeff Mahoney's avatar
Jeff Mahoney committed
3549
		flush_commit_list(sb, jl, 1);
3550
	}
Frederic Weisbecker's avatar
Frederic Weisbecker committed
3551
	reiserfs_write_unlock(sb);
Linus Torvalds's avatar
Linus Torvalds committed
3552 3553 3554
}

/*
3555 3556 3557
 * flushes any old transactions to disk
 * ends the current transaction if it is too old
 */
3558
void reiserfs_flush_old_commits(struct super_block *sb)
3559 3560 3561
{
	time_t now;
	struct reiserfs_transaction_handle th;
Jeff Mahoney's avatar
Jeff Mahoney committed
3562
	struct reiserfs_journal *journal = SB_JOURNAL(sb);
3563 3564

	now = get_seconds();
3565 3566
	/*
	 * safety check so we don't flush while we are replaying the log during
3567 3568
	 * mount
	 */
3569 3570
	if (list_empty(&journal->j_journal_list))
		return;
3571

3572 3573
	/*
	 * check the current transaction.  If there are no writers, and it is
3574 3575 3576 3577 3578 3579
	 * too old, finish it, and force the commit blocks to disk
	 */
	if (atomic_read(&journal->j_wcount) <= 0 &&
	    journal->j_trans_start_time > 0 &&
	    journal->j_len > 0 &&
	    (now - journal->j_trans_start_time) > journal->j_max_trans_age) {
3580
		if (!journal_join(&th, sb)) {
Jeff Mahoney's avatar
Jeff Mahoney committed
3581 3582
			reiserfs_prepare_for_journal(sb,
						     SB_BUFFER_WITH_SB(sb),
3583
						     1);
3584
			journal_mark_dirty(&th, SB_BUFFER_WITH_SB(sb));
3585

3586 3587 3588 3589
			/*
			 * we're only being called from kreiserfsd, it makes
			 * no sense to do an async commit so that kreiserfsd
			 * can do it later
3590
			 */
3591
			do_journal_end(&th, COMMIT_NOW | WAIT);
3592 3593
		}
	}
Linus Torvalds's avatar
Linus Torvalds committed
3594 3595 3596
}

/*
3597 3598 3599 3600 3601 3602 3603 3604 3605 3606 3607 3608 3609 3610
 * returns 0 if do_journal_end should return right away, returns 1 if
 * do_journal_end should finish the commit
 *
 * if the current transaction is too old, but still has writers, this will
 * wait on j_join_wait until all the writers are done.  By the time it
 * wakes up, the transaction it was called has already ended, so it just
 * flushes the commit list and returns 0.
 *
 * Won't batch when flush or commit_now is set.  Also won't batch when
 * others are waiting on j_join_wait.
 *
 * Note, we can't allow the journal_end to proceed while there are still
 * writers in the log.
 */
3611
static int check_journal_end(struct reiserfs_transaction_handle *th, int flags)
3612 3613 3614 3615 3616 3617 3618
{

	time_t now;
	int flush = flags & FLUSH_ALL;
	int commit_now = flags & COMMIT_NOW;
	int wait_on_commit = flags & WAIT;
	struct reiserfs_journal_list *jl;
3619
	struct super_block *sb = th->t_super;
Jeff Mahoney's avatar
Jeff Mahoney committed
3620
	struct reiserfs_journal *journal = SB_JOURNAL(sb);
3621 3622 3623 3624

	BUG_ON(!th->t_trans_id);

	if (th->t_trans_id != journal->j_trans_id) {
Jeff Mahoney's avatar
Jeff Mahoney committed
3625 3626
		reiserfs_panic(th->t_super, "journal-1577",
			       "handle trans id %ld != current trans id %ld",
3627 3628 3629 3630
			       th->t_trans_id, journal->j_trans_id);
	}

	journal->j_len_alloc -= (th->t_blocks_allocated - th->t_blocks_logged);
3631
	/* <= 0 is allowed.  unmounting might not call begin */
3632 3633
	if (atomic_read(&journal->j_wcount) > 0)
		atomic_dec(&journal->j_wcount);
3634

3635 3636 3637 3638 3639
	/*
	 * BUG, deal with case where j_len is 0, but people previously
	 * freed blocks need to be released will be dealt with by next
	 * transaction that actually writes something, but should be taken
	 * care of in this trans
3640
	 */
3641 3642
	BUG_ON(journal->j_len == 0);

3643 3644 3645 3646 3647 3648 3649
	/*
	 * if wcount > 0, and we are called to with flush or commit_now,
	 * we wait on j_join_wait.  We will wake up when the last writer has
	 * finished the transaction, and started it on its way to the disk.
	 * Then, we flush the commit or journal list, and just return 0
	 * because the rest of journal end was already done for this
	 * transaction.
3650
	 */
3651
	if (atomic_read(&journal->j_wcount) > 0) {
3652 3653 3654 3655 3656 3657 3658
		if (flush || commit_now) {
			unsigned trans_id;

			jl = journal->j_current_jl;
			trans_id = jl->j_trans_id;
			if (wait_on_commit)
				jl->j_state |= LIST_COMMIT_PENDING;
3659
			atomic_set(&journal->j_jlock, 1);
3660 3661 3662
			if (flush) {
				journal->j_next_full_flush = 1;
			}
Jeff Mahoney's avatar
Jeff Mahoney committed
3663
			unlock_journal(sb);
3664

3665 3666 3667 3668
			/*
			 * sleep while the current transaction is
			 * still j_jlocked
			 */
3669 3670
			while (journal->j_trans_id == trans_id) {
				if (atomic_read(&journal->j_jlock)) {
Jeff Mahoney's avatar
Jeff Mahoney committed
3671
					queue_log_writer(sb);
3672
				} else {
Jeff Mahoney's avatar
Jeff Mahoney committed
3673
					lock_journal(sb);
3674
					if (journal->j_trans_id == trans_id) {
3675
						atomic_set(&journal->j_jlock,
3676 3677
							   1);
					}
Jeff Mahoney's avatar
Jeff Mahoney committed
3678
					unlock_journal(sb);
3679 3680
				}
			}
3681
			BUG_ON(journal->j_trans_id == trans_id);
3682

3683
			if (commit_now
Jeff Mahoney's avatar
Jeff Mahoney committed
3684
			    && journal_list_still_alive(sb, trans_id)
3685
			    && wait_on_commit) {
Jeff Mahoney's avatar
Jeff Mahoney committed
3686
				flush_commit_list(sb, jl, 1);
3687 3688 3689
			}
			return 0;
		}
Jeff Mahoney's avatar
Jeff Mahoney committed
3690
		unlock_journal(sb);
3691 3692 3693 3694 3695 3696 3697 3698 3699 3700 3701
		return 0;
	}

	/* deal with old transactions where we are the last writers */
	now = get_seconds();
	if ((now - journal->j_trans_start_time) > journal->j_max_trans_age) {
		commit_now = 1;
		journal->j_next_async_flush = 1;
	}
	/* don't batch when someone is waiting on j_join_wait */
	/* don't batch when syncing the commit or flushing the whole trans */
3702
	if (!(journal->j_must_wait > 0) && !(atomic_read(&journal->j_jlock))
3703 3704 3705 3706
	    && !flush && !commit_now && (journal->j_len < journal->j_max_batch)
	    && journal->j_len_alloc < journal->j_max_batch
	    && journal->j_cnode_free > (journal->j_trans_max * 3)) {
		journal->j_bcount++;
Jeff Mahoney's avatar
Jeff Mahoney committed
3707
		unlock_journal(sb);
3708 3709 3710
		return 0;
	}

Jeff Mahoney's avatar
Jeff Mahoney committed
3711 3712
	if (journal->j_start > SB_ONDISK_JOURNAL_SIZE(sb)) {
		reiserfs_panic(sb, "journal-003",
Jeff Mahoney's avatar
Jeff Mahoney committed
3713
			       "j_start (%ld) is too high",
3714 3715 3716
			       journal->j_start);
	}
	return 1;
Linus Torvalds's avatar
Linus Torvalds committed
3717 3718 3719
}

/*
3720 3721 3722 3723 3724 3725 3726 3727 3728 3729 3730 3731 3732 3733 3734 3735
 * Does all the work that makes deleting blocks safe.
 * when deleting a block mark BH_JNew, just remove it from the current
 * transaction, clean it's buffer_head and move on.
 *
 * otherwise:
 * set a bit for the block in the journal bitmap.  That will prevent it from
 * being allocated for unformatted nodes before this transaction has finished.
 *
 * mark any cnodes for this block as BLOCK_FREED, and clear their bh pointers.
 * That will prevent any old transactions with this block from trying to flush
 * to the real location.  Since we aren't removing the cnode from the
 * journal_list_hash, *the block can't be reallocated yet.
 *
 * Then remove it from the current transaction, decrementing any counters and
 * filing it on the clean list.
 */
3736
int journal_mark_freed(struct reiserfs_transaction_handle *th,
Jeff Mahoney's avatar
Jeff Mahoney committed
3737
		       struct super_block *sb, b_blocknr_t blocknr)
3738
{
Jeff Mahoney's avatar
Jeff Mahoney committed
3739
	struct reiserfs_journal *journal = SB_JOURNAL(sb);
3740 3741 3742 3743 3744 3745
	struct reiserfs_journal_cnode *cn = NULL;
	struct buffer_head *bh = NULL;
	struct reiserfs_list_bitmap *jb = NULL;
	int cleaned = 0;
	BUG_ON(!th->t_trans_id);

Jeff Mahoney's avatar
Jeff Mahoney committed
3746
	cn = get_journal_hash_dev(sb, journal->j_hash_table, blocknr);
3747 3748 3749 3750 3751 3752 3753 3754 3755
	if (cn && cn->bh) {
		bh = cn->bh;
		get_bh(bh);
	}
	/* if it is journal new, we just remove it from this transaction */
	if (bh && buffer_journal_new(bh)) {
		clear_buffer_journal_new(bh);
		clear_prepared_bits(bh);
		reiserfs_clean_and_file_buffer(bh);
Jeff Mahoney's avatar
Jeff Mahoney committed
3756
		cleaned = remove_from_transaction(sb, blocknr, cleaned);
3757
	} else {
3758 3759 3760 3761
		/*
		 * set the bit for this block in the journal bitmap
		 * for this transaction
		 */
3762 3763
		jb = journal->j_current_jl->j_list_bitmap;
		if (!jb) {
Jeff Mahoney's avatar
Jeff Mahoney committed
3764
			reiserfs_panic(sb, "journal-1702",
Jeff Mahoney's avatar
Jeff Mahoney committed
3765
				       "journal_list_bitmap is NULL");
3766
		}
Jeff Mahoney's avatar
Jeff Mahoney committed
3767
		set_bit_in_list_bitmap(sb, blocknr, jb);
3768 3769 3770 3771 3772 3773 3774

		/* Note, the entire while loop is not allowed to schedule.  */

		if (bh) {
			clear_prepared_bits(bh);
			reiserfs_clean_and_file_buffer(bh);
		}
Jeff Mahoney's avatar
Jeff Mahoney committed
3775
		cleaned = remove_from_transaction(sb, blocknr, cleaned);
3776

3777 3778 3779 3780
		/*
		 * find all older transactions with this block,
		 * make sure they don't try to write it out
		 */
Jeff Mahoney's avatar
Jeff Mahoney committed
3781
		cn = get_journal_hash_dev(sb, journal->j_list_hash_table,
3782 3783
					  blocknr);
		while (cn) {
Jeff Mahoney's avatar
Jeff Mahoney committed
3784
			if (sb == cn->sb && blocknr == cn->blocknr) {
3785 3786
				set_bit(BLOCK_FREED, &cn->state);
				if (cn->bh) {
3787 3788 3789 3790 3791
					/*
					 * remove_from_transaction will brelse
					 * the buffer if it was in the current
					 * trans
					 */
3792 3793 3794 3795 3796 3797 3798 3799 3800
					if (!cleaned) {
						clear_buffer_journal_dirty(cn->
									   bh);
						clear_buffer_dirty(cn->bh);
						clear_buffer_journal_test(cn->
									  bh);
						cleaned = 1;
						put_bh(cn->bh);
						if (atomic_read
3801
						    (&cn->bh->b_count) < 0) {
Jeff Mahoney's avatar
Jeff Mahoney committed
3802
							reiserfs_warning(sb,
3803 3804
								 "journal-2138",
								 "cn->bh->b_count < 0");
3805 3806
						}
					}
3807 3808 3809 3810 3811
					/*
					 * since we are clearing the bh,
					 * we MUST dec nonzerolen
					 */
					if (cn->jlist) {
3812 3813
						atomic_dec(&cn->jlist->
							   j_nonzerolen);
3814 3815 3816 3817 3818 3819 3820 3821
					}
					cn->bh = NULL;
				}
			}
			cn = cn->hnext;
		}
	}

3822 3823
	if (bh)
		release_buffer_page(bh); /* get_hash grabs the buffer */
3824 3825 3826 3827 3828 3829 3830 3831
	return 0;
}

void reiserfs_update_inode_transaction(struct inode *inode)
{
	struct reiserfs_journal *journal = SB_JOURNAL(inode->i_sb);
	REISERFS_I(inode)->i_jl = journal->j_current_jl;
	REISERFS_I(inode)->i_trans_id = journal->j_trans_id;
Linus Torvalds's avatar
Linus Torvalds committed
3832 3833 3834 3835 3836 3837 3838
}

/*
 * returns -1 on error, 0 if no commits/barriers were done and 1
 * if a transaction was actually committed and the barrier was done
 */
static int __commit_trans_jl(struct inode *inode, unsigned long id,
3839
			     struct reiserfs_journal_list *jl)
Linus Torvalds's avatar
Linus Torvalds committed
3840
{
3841 3842 3843 3844 3845
	struct reiserfs_transaction_handle th;
	struct super_block *sb = inode->i_sb;
	struct reiserfs_journal *journal = SB_JOURNAL(sb);
	int ret = 0;

3846 3847 3848 3849
	/*
	 * is it from the current transaction,
	 * or from an unknown transaction?
	 */
3850 3851
	if (id == journal->j_trans_id) {
		jl = journal->j_current_jl;
3852 3853 3854 3855
		/*
		 * try to let other writers come in and
		 * grow this transaction
		 */
3856 3857 3858 3859
		let_transaction_grow(sb, id);
		if (journal->j_trans_id != id) {
			goto flush_commit_only;
		}
Linus Torvalds's avatar
Linus Torvalds committed
3860

3861 3862 3863 3864 3865 3866 3867 3868
		ret = journal_begin(&th, sb, 1);
		if (ret)
			return ret;

		/* someone might have ended this transaction while we joined */
		if (journal->j_trans_id != id) {
			reiserfs_prepare_for_journal(sb, SB_BUFFER_WITH_SB(sb),
						     1);
3869
			journal_mark_dirty(&th, SB_BUFFER_WITH_SB(sb));
3870
			ret = journal_end(&th);
3871 3872
			goto flush_commit_only;
		}
Linus Torvalds's avatar
Linus Torvalds committed
3873

3874
		ret = journal_end_sync(&th);
3875 3876
		if (!ret)
			ret = 1;
Linus Torvalds's avatar
Linus Torvalds committed
3877

3878
	} else {
3879 3880
		/*
		 * this gets tricky, we have to make sure the journal list in
3881 3882 3883
		 * the inode still exists.  We know the list is still around
		 * if we've got a larger transaction id than the oldest list
		 */
3884
flush_commit_only:
3885 3886 3887 3888 3889 3890 3891 3892 3893 3894 3895 3896
		if (journal_list_still_alive(inode->i_sb, id)) {
			/*
			 * we only set ret to 1 when we know for sure
			 * the barrier hasn't been started yet on the commit
			 * block.
			 */
			if (atomic_read(&jl->j_commit_left) > 1)
				ret = 1;
			flush_commit_list(sb, jl, 1);
			if (journal->j_errno)
				ret = journal->j_errno;
		}
Linus Torvalds's avatar
Linus Torvalds committed
3897
	}
3898 3899 3900
	/* otherwise the list is gone, and long since committed */
	return ret;
}
Linus Torvalds's avatar
Linus Torvalds committed
3901

3902 3903
int reiserfs_commit_for_inode(struct inode *inode)
{
3904
	unsigned int id = REISERFS_I(inode)->i_trans_id;
3905
	struct reiserfs_journal_list *jl = REISERFS_I(inode)->i_jl;
Linus Torvalds's avatar
Linus Torvalds committed
3906

3907 3908
	/*
	 * for the whole inode, assume unset id means it was
3909
	 * changed in the current transaction.  More conservative
Linus Torvalds's avatar
Linus Torvalds committed
3910
	 */
3911 3912 3913 3914 3915 3916 3917 3918 3919
	if (!id || !jl) {
		reiserfs_update_inode_transaction(inode);
		id = REISERFS_I(inode)->i_trans_id;
		/* jl will be updated in __commit_trans_jl */
	}

	return __commit_trans_jl(inode, id, jl);
}

Jeff Mahoney's avatar
Jeff Mahoney committed
3920
void reiserfs_restore_prepared_buffer(struct super_block *sb,
3921 3922
				      struct buffer_head *bh)
{
Jeff Mahoney's avatar
Jeff Mahoney committed
3923 3924
	struct reiserfs_journal *journal = SB_JOURNAL(sb);
	PROC_INFO_INC(sb, journal.restore_prepared);
3925 3926 3927 3928 3929 3930
	if (!bh) {
		return;
	}
	if (test_clear_buffer_journal_restore_dirty(bh) &&
	    buffer_journal_dirty(bh)) {
		struct reiserfs_journal_cnode *cn;
3931
		reiserfs_write_lock(sb);
Jeff Mahoney's avatar
Jeff Mahoney committed
3932
		cn = get_journal_hash_dev(sb,
3933 3934 3935 3936 3937 3938
					  journal->j_list_hash_table,
					  bh->b_blocknr);
		if (cn && can_dirty(cn)) {
			set_buffer_journal_test(bh);
			mark_buffer_dirty(bh);
		}
3939
		reiserfs_write_unlock(sb);
3940 3941 3942 3943 3944
	}
	clear_buffer_journal_prepared(bh);
}

extern struct tree_balance *cur_tb;
Linus Torvalds's avatar
Linus Torvalds committed
3945
/*
3946 3947 3948 3949 3950
 * before we can change a metadata block, we have to make sure it won't
 * be written to disk while we are altering it.  So, we must:
 * clean it
 * wait on it.
 */
Jeff Mahoney's avatar
Jeff Mahoney committed
3951
int reiserfs_prepare_for_journal(struct super_block *sb,
3952 3953
				 struct buffer_head *bh, int wait)
{
Jeff Mahoney's avatar
Jeff Mahoney committed
3954
	PROC_INFO_INC(sb, journal.prepare);
3955

Nick Piggin's avatar
Nick Piggin committed
3956
	if (!trylock_buffer(bh)) {
3957 3958 3959 3960 3961 3962 3963 3964 3965 3966 3967 3968 3969
		if (!wait)
			return 0;
		lock_buffer(bh);
	}
	set_buffer_journal_prepared(bh);
	if (test_clear_buffer_dirty(bh) && buffer_journal_dirty(bh)) {
		clear_buffer_journal_test(bh);
		set_buffer_journal_restore_dirty(bh);
	}
	unlock_buffer(bh);
	return 1;
}

3970
/*
3971 3972 3973 3974 3975 3976 3977 3978 3979
 * long and ugly.  If flush, will not return until all commit
 * blocks and all real buffers in the trans are on disk.
 * If no_async, won't return until all commit blocks are on disk.
 *
 * keep reading, there are comments as you go along
 *
 * If the journal is aborted, we just clean up. Things like flushing
 * journal lists, etc just won't happen.
 */
3980
static int do_journal_end(struct reiserfs_transaction_handle *th, int flags)
3981
{
3982
	struct super_block *sb = th->t_super;
Jeff Mahoney's avatar
Jeff Mahoney committed
3983
	struct reiserfs_journal *journal = SB_JOURNAL(sb);
3984 3985 3986 3987 3988 3989 3990 3991 3992
	struct reiserfs_journal_cnode *cn, *next, *jl_cn;
	struct reiserfs_journal_cnode *last_cn = NULL;
	struct reiserfs_journal_desc *desc;
	struct reiserfs_journal_commit *commit;
	struct buffer_head *c_bh;	/* commit bh */
	struct buffer_head *d_bh;	/* desc bh */
	int cur_write_start = 0;	/* start index of current log write */
	int old_start;
	int i;
3993 3994
	int flush;
	int wait_on_commit;
3995 3996 3997
	struct reiserfs_journal_list *jl, *temp_jl;
	struct list_head *entry, *safe;
	unsigned long jindex;
3998
	unsigned int commit_trans_id;
3999
	int trans_half;
4000
	int depth;
4001 4002 4003

	BUG_ON(th->t_refcount > 1);
	BUG_ON(!th->t_trans_id);
4004
	BUG_ON(!th->t_super);
4005

4006 4007 4008 4009
	/*
	 * protect flush_older_commits from doing mistakes if the
	 * transaction ID counter gets overflowed.
	 */
4010
	if (th->t_trans_id == ~0U)
4011 4012 4013 4014
		flags |= FLUSH_ALL | COMMIT_NOW | WAIT;
	flush = flags & FLUSH_ALL;
	wait_on_commit = flags & WAIT;

4015
	current->journal_info = th->t_handle_save;
Jeff Mahoney's avatar
Jeff Mahoney committed
4016
	reiserfs_check_lock_depth(sb, "journal end");
4017
	if (journal->j_len == 0) {
Jeff Mahoney's avatar
Jeff Mahoney committed
4018
		reiserfs_prepare_for_journal(sb, SB_BUFFER_WITH_SB(sb),
4019
					     1);
4020
		journal_mark_dirty(th, SB_BUFFER_WITH_SB(sb));
4021
	}
Linus Torvalds's avatar
Linus Torvalds committed
4022

Jeff Mahoney's avatar
Jeff Mahoney committed
4023
	lock_journal(sb);
4024 4025 4026 4027 4028 4029 4030 4031 4032
	if (journal->j_next_full_flush) {
		flags |= FLUSH_ALL;
		flush = 1;
	}
	if (journal->j_next_async_flush) {
		flags |= COMMIT_NOW | WAIT;
		wait_on_commit = 1;
	}

4033 4034 4035 4036
	/*
	 * check_journal_end locks the journal, and unlocks if it does
	 * not return 1 it tells us if we should continue with the
	 * journal_end, or just return
4037
	 */
4038
	if (!check_journal_end(th, flags)) {
4039
		reiserfs_schedule_old_flush(sb);
Jeff Mahoney's avatar
Jeff Mahoney committed
4040 4041
		wake_queued_writers(sb);
		reiserfs_async_progress_wait(sb);
4042 4043 4044 4045 4046 4047 4048 4049 4050
		goto out;
	}

	/* check_journal_end might set these, check again */
	if (journal->j_next_full_flush) {
		flush = 1;
	}

	/*
4051 4052
	 * j must wait means we have to flush the log blocks, and the
	 * real blocks for this transaction
4053 4054 4055 4056
	 */
	if (journal->j_must_wait > 0) {
		flush = 1;
	}
Linus Torvalds's avatar
Linus Torvalds committed
4057
#ifdef REISERFS_PREALLOCATE
4058 4059 4060 4061
	/*
	 * quota ops might need to nest, setup the journal_info pointer
	 * for them and raise the refcount so that it is > 0.
	 */
4062
	current->journal_info = th;
4063
	th->t_refcount++;
4064 4065 4066 4067

	/* it should not involve new blocks into the transaction */
	reiserfs_discard_all_prealloc(th);

4068
	th->t_refcount--;
4069
	current->journal_info = th->t_handle_save;
Linus Torvalds's avatar
Linus Torvalds committed
4070
#endif
4071 4072 4073

	/* setup description block */
	d_bh =
Jeff Mahoney's avatar
Jeff Mahoney committed
4074 4075
	    journal_getblk(sb,
			   SB_ONDISK_JOURNAL_1st_BLOCK(sb) +
4076 4077 4078 4079 4080 4081 4082
			   journal->j_start);
	set_buffer_uptodate(d_bh);
	desc = (struct reiserfs_journal_desc *)(d_bh)->b_data;
	memset(d_bh->b_data, 0, d_bh->b_size);
	memcpy(get_journal_desc_magic(d_bh), JOURNAL_DESC_MAGIC, 8);
	set_desc_trans_id(desc, journal->j_trans_id);

4083 4084 4085 4086
	/*
	 * setup commit block.  Don't write (keep it clean too) this one
	 * until after everyone else is written
	 */
Jeff Mahoney's avatar
Jeff Mahoney committed
4087
	c_bh = journal_getblk(sb, SB_ONDISK_JOURNAL_1st_BLOCK(sb) +
4088
			      ((journal->j_start + journal->j_len +
Jeff Mahoney's avatar
Jeff Mahoney committed
4089
				1) % SB_ONDISK_JOURNAL_SIZE(sb)));
4090 4091 4092 4093 4094 4095 4096 4097
	commit = (struct reiserfs_journal_commit *)c_bh->b_data;
	memset(c_bh->b_data, 0, c_bh->b_size);
	set_commit_trans_id(commit, journal->j_trans_id);
	set_buffer_uptodate(c_bh);

	/* init this journal list */
	jl = journal->j_current_jl;

4098 4099
	/*
	 * we lock the commit before doing anything because
4100 4101 4102 4103
	 * we want to make sure nobody tries to run flush_commit_list until
	 * the new transaction is fully setup, and we've already flushed the
	 * ordered bh list
	 */
Frederic Weisbecker's avatar
Frederic Weisbecker committed
4104
	reiserfs_mutex_lock_safe(&jl->j_commit_mutex, sb);
4105 4106 4107 4108 4109 4110 4111 4112 4113 4114 4115 4116 4117 4118

	/* save the transaction id in case we need to commit it later */
	commit_trans_id = jl->j_trans_id;

	atomic_set(&jl->j_older_commits_done, 0);
	jl->j_trans_id = journal->j_trans_id;
	jl->j_timestamp = journal->j_trans_start_time;
	jl->j_commit_bh = c_bh;
	jl->j_start = journal->j_start;
	jl->j_len = journal->j_len;
	atomic_set(&jl->j_nonzerolen, journal->j_len);
	atomic_set(&jl->j_commit_left, journal->j_len + 2);
	jl->j_realblock = NULL;

4119 4120 4121 4122
	/*
	 * The ENTIRE FOR LOOP MUST not cause schedule to occur.
	 * for each real block, add it to the journal list hash,
	 * copy into real block index array in the commit or desc block
4123
	 */
Jeff Mahoney's avatar
Jeff Mahoney committed
4124
	trans_half = journal_trans_half(sb->s_blocksize);
4125 4126
	for (i = 0, cn = journal->j_first; cn; cn = cn->next, i++) {
		if (buffer_journaled(cn->bh)) {
Jeff Mahoney's avatar
Jeff Mahoney committed
4127
			jl_cn = get_cnode(sb);
4128
			if (!jl_cn) {
Jeff Mahoney's avatar
Jeff Mahoney committed
4129
				reiserfs_panic(sb, "journal-1676",
Jeff Mahoney's avatar
Jeff Mahoney committed
4130
					       "get_cnode returned NULL");
4131 4132 4133 4134 4135 4136 4137 4138 4139 4140
			}
			if (i == 0) {
				jl->j_realblock = jl_cn;
			}
			jl_cn->prev = last_cn;
			jl_cn->next = NULL;
			if (last_cn) {
				last_cn->next = jl_cn;
			}
			last_cn = jl_cn;
4141 4142 4143 4144
			/*
			 * make sure the block we are trying to log
			 * is not a block of journal or reserved area
			 */
4145
			if (is_block_in_log_or_reserved_area
Jeff Mahoney's avatar
Jeff Mahoney committed
4146 4147
			    (sb, cn->bh->b_blocknr)) {
				reiserfs_panic(sb, "journal-2332",
Jeff Mahoney's avatar
Jeff Mahoney committed
4148 4149
					       "Trying to log block %lu, "
					       "which is a log block",
4150 4151 4152 4153
					       cn->bh->b_blocknr);
			}
			jl_cn->blocknr = cn->bh->b_blocknr;
			jl_cn->state = 0;
Jeff Mahoney's avatar
Jeff Mahoney committed
4154
			jl_cn->sb = sb;
4155 4156 4157 4158 4159 4160 4161 4162 4163 4164 4165 4166 4167 4168 4169 4170 4171 4172 4173
			jl_cn->bh = cn->bh;
			jl_cn->jlist = jl;
			insert_journal_hash(journal->j_list_hash_table, jl_cn);
			if (i < trans_half) {
				desc->j_realblock[i] =
				    cpu_to_le32(cn->bh->b_blocknr);
			} else {
				commit->j_realblock[i - trans_half] =
				    cpu_to_le32(cn->bh->b_blocknr);
			}
		} else {
			i--;
		}
	}
	set_desc_trans_len(desc, journal->j_len);
	set_desc_mount_id(desc, journal->j_mount_id);
	set_desc_trans_id(desc, journal->j_trans_id);
	set_commit_trans_len(commit, journal->j_len);

4174 4175 4176 4177
	/*
	 * special check in case all buffers in the journal
	 * were marked for not logging
	 */
4178
	BUG_ON(journal->j_len == 0);
4179

4180 4181
	/*
	 * we're about to dirty all the log blocks, mark the description block
4182 4183 4184 4185 4186
	 * dirty now too.  Don't mark the commit block dirty until all the
	 * others are on disk
	 */
	mark_buffer_dirty(d_bh);

4187 4188 4189 4190
	/*
	 * first data block is j_start + 1, so add one to
	 * cur_write_start wherever you use it
	 */
4191 4192
	cur_write_start = journal->j_start;
	cn = journal->j_first;
4193
	jindex = 1;	/* start at one so we don't get the desc again */
4194 4195 4196 4197 4198 4199 4200 4201
	while (cn) {
		clear_buffer_journal_new(cn->bh);
		/* copy all the real blocks into log area.  dirty log blocks */
		if (buffer_journaled(cn->bh)) {
			struct buffer_head *tmp_bh;
			char *addr;
			struct page *page;
			tmp_bh =
Jeff Mahoney's avatar
Jeff Mahoney committed
4202 4203
			    journal_getblk(sb,
					   SB_ONDISK_JOURNAL_1st_BLOCK(sb) +
4204 4205
					   ((cur_write_start +
					     jindex) %
Jeff Mahoney's avatar
Jeff Mahoney committed
4206
					    SB_ONDISK_JOURNAL_SIZE(sb)));
4207 4208 4209 4210 4211 4212 4213 4214 4215 4216 4217 4218
			set_buffer_uptodate(tmp_bh);
			page = cn->bh->b_page;
			addr = kmap(page);
			memcpy(tmp_bh->b_data,
			       addr + offset_in_page(cn->bh->b_data),
			       cn->bh->b_size);
			kunmap(page);
			mark_buffer_dirty(tmp_bh);
			jindex++;
			set_buffer_journal_dirty(cn->bh);
			clear_buffer_journaled(cn->bh);
		} else {
4219 4220 4221 4222
			/*
			 * JDirty cleared sometime during transaction.
			 * don't log this one
			 */
Jeff Mahoney's avatar
Jeff Mahoney committed
4223
			reiserfs_warning(sb, "journal-2048",
4224 4225
					 "BAD, buffer in journal hash, "
					 "but not JDirty!");
4226 4227 4228
			brelse(cn->bh);
		}
		next = cn->next;
Jeff Mahoney's avatar
Jeff Mahoney committed
4229
		free_cnode(sb, cn);
4230
		cn = next;
4231
		reiserfs_cond_resched(sb);
4232 4233
	}

4234 4235 4236 4237
	/*
	 * we are done with both the c_bh and d_bh, but
	 * c_bh must be written after all other commit blocks,
	 * so we dirty/relse c_bh in flush_commit_list, with commit_left <= 1.
4238 4239
	 */

Jeff Mahoney's avatar
Jeff Mahoney committed
4240
	journal->j_current_jl = alloc_journal_list(sb);
4241 4242 4243 4244 4245 4246 4247 4248 4249 4250

	/* now it is safe to insert this transaction on the main list */
	list_add_tail(&jl->j_list, &journal->j_journal_list);
	list_add_tail(&jl->j_working_list, &journal->j_working_list);
	journal->j_num_work_lists++;

	/* reset journal values for the next transaction */
	old_start = journal->j_start;
	journal->j_start =
	    (journal->j_start + journal->j_len +
Jeff Mahoney's avatar
Jeff Mahoney committed
4251
	     2) % SB_ONDISK_JOURNAL_SIZE(sb);
4252
	atomic_set(&journal->j_wcount, 0);
4253 4254 4255 4256 4257
	journal->j_bcount = 0;
	journal->j_last = NULL;
	journal->j_first = NULL;
	journal->j_len = 0;
	journal->j_trans_start_time = 0;
4258 4259 4260
	/* check for trans_id overflow */
	if (++journal->j_trans_id == 0)
		journal->j_trans_id = 10;
4261 4262 4263 4264 4265
	journal->j_current_jl->j_trans_id = journal->j_trans_id;
	journal->j_must_wait = 0;
	journal->j_len_alloc = 0;
	journal->j_next_full_flush = 0;
	journal->j_next_async_flush = 0;
Jeff Mahoney's avatar
Jeff Mahoney committed
4266
	init_journal_hash(sb);
4267

4268 4269 4270 4271
	/*
	 * make sure reiserfs_add_jh sees the new current_jl before we
	 * write out the tails
	 */
4272 4273
	smp_mb();

4274 4275
	/*
	 * tail conversion targets have to hit the disk before we end the
4276
	 * transaction.  Otherwise a later transaction might repack the tail
4277 4278 4279
	 * before this transaction commits, leaving the data block unflushed
	 * and clean, if we crash before the later transaction commits, the
	 * data block is lost.
4280 4281
	 */
	if (!list_empty(&jl->j_tail_bh_list)) {
4282
		depth = reiserfs_write_unlock_nested(sb);
4283 4284
		write_ordered_buffers(&journal->j_dirty_buffers_lock,
				      journal, jl, &jl->j_tail_bh_list);
4285
		reiserfs_write_lock_nested(sb, depth);
4286
	}
4287
	BUG_ON(!list_empty(&jl->j_tail_bh_list));
4288
	mutex_unlock(&jl->j_commit_mutex);
4289

4290 4291 4292 4293 4294 4295 4296
	/*
	 * honor the flush wishes from the caller, simple commits can
	 * be done outside the journal lock, they are done below
	 *
	 * if we don't flush the commit list right now, we put it into
	 * the work queue so the people waiting on the async progress work
	 * queue don't wait for this proc to flush journal lists and such.
4297 4298
	 */
	if (flush) {
Jeff Mahoney's avatar
Jeff Mahoney committed
4299 4300
		flush_commit_list(sb, jl, 1);
		flush_journal_list(sb, jl, 1);
4301 4302 4303 4304 4305 4306 4307 4308 4309
	} else if (!(jl->j_state & LIST_COMMIT_PENDING)) {
		/*
		 * Avoid queueing work when sb is being shut down. Transaction
		 * will be flushed on journal shutdown.
		 */
		if (sb->s_flags & MS_ACTIVE)
			queue_delayed_work(REISERFS_SB(sb)->commit_wq,
					   &journal->j_work, HZ / 10);
	}
4310

4311 4312 4313 4314
	/*
	 * if the next transaction has any chance of wrapping, flush
	 * transactions that might get overwritten.  If any journal lists
	 * are very old flush them as well.
4315
	 */
4316
first_jl:
4317 4318 4319 4320 4321
	list_for_each_safe(entry, safe, &journal->j_journal_list) {
		temp_jl = JOURNAL_LIST_ENTRY(entry);
		if (journal->j_start <= temp_jl->j_start) {
			if ((journal->j_start + journal->j_trans_max + 1) >=
			    temp_jl->j_start) {
Jeff Mahoney's avatar
Jeff Mahoney committed
4322
				flush_used_journal_lists(sb, temp_jl);
4323 4324 4325
				goto first_jl;
			} else if ((journal->j_start +
				    journal->j_trans_max + 1) <
Jeff Mahoney's avatar
Jeff Mahoney committed
4326
				   SB_ONDISK_JOURNAL_SIZE(sb)) {
4327 4328 4329 4330
				/*
				 * if we don't cross into the next
				 * transaction and we don't wrap, there is
				 * no way we can overlap any later transactions
4331 4332 4333 4334 4335 4336
				 * break now
				 */
				break;
			}
		} else if ((journal->j_start +
			    journal->j_trans_max + 1) >
Jeff Mahoney's avatar
Jeff Mahoney committed
4337
			   SB_ONDISK_JOURNAL_SIZE(sb)) {
4338
			if (((journal->j_start + journal->j_trans_max + 1) %
Jeff Mahoney's avatar
Jeff Mahoney committed
4339
			     SB_ONDISK_JOURNAL_SIZE(sb)) >=
4340
			    temp_jl->j_start) {
Jeff Mahoney's avatar
Jeff Mahoney committed
4341
				flush_used_journal_lists(sb, temp_jl);
4342 4343
				goto first_jl;
			} else {
4344 4345 4346 4347 4348 4349
				/*
				* we don't overlap anything from out start
				* to the end of the log, and our wrapped
				* portion doesn't overlap anything at
				* the start of the log.  We can break
				*/
4350 4351 4352 4353 4354 4355
				break;
			}
		}
	}

	journal->j_current_jl->j_list_bitmap =
Jeff Mahoney's avatar
Jeff Mahoney committed
4356
	    get_list_bitmap(sb, journal->j_current_jl);
4357 4358

	if (!(journal->j_current_jl->j_list_bitmap)) {
Jeff Mahoney's avatar
Jeff Mahoney committed
4359
		reiserfs_panic(sb, "journal-1996",
Jeff Mahoney's avatar
Jeff Mahoney committed
4360
			       "could not get a list bitmap");
4361 4362
	}

4363
	atomic_set(&journal->j_jlock, 0);
Jeff Mahoney's avatar
Jeff Mahoney committed
4364
	unlock_journal(sb);
4365 4366
	/* wake up any body waiting to join. */
	clear_bit(J_WRITERS_QUEUED, &journal->j_state);
4367
	wake_up(&journal->j_join_wait);
4368 4369

	if (!flush && wait_on_commit &&
Jeff Mahoney's avatar
Jeff Mahoney committed
4370 4371
	    journal_list_still_alive(sb, commit_trans_id)) {
		flush_commit_list(sb, jl, 1);
4372
	}
4373
out:
Jeff Mahoney's avatar
Jeff Mahoney committed
4374
	reiserfs_check_lock_depth(sb, "journal end2");
4375 4376

	memset(th, 0, sizeof(*th));
4377 4378
	/*
	 * Re-set th->t_super, so we can properly keep track of how many
4379
	 * persistent transactions there are. We need to do this so if this
4380 4381
	 * call is part of a failed restart_transaction, we can free it later
	 */
Jeff Mahoney's avatar
Jeff Mahoney committed
4382
	th->t_super = sb;
4383 4384 4385 4386

	return journal->j_errno;
}

4387 4388
/* Send the file system read only and refuse new transactions */
void reiserfs_abort_journal(struct super_block *sb, int errno)
4389 4390 4391 4392 4393
{
	struct reiserfs_journal *journal = SB_JOURNAL(sb);
	if (test_bit(J_ABORTED, &journal->j_state))
		return;

4394 4395
	if (!journal->j_errno)
		journal->j_errno = errno;
4396 4397 4398

	sb->s_flags |= MS_RDONLY;
	set_bit(J_ABORTED, &journal->j_state);
Linus Torvalds's avatar
Linus Torvalds committed
4399 4400

#ifdef CONFIG_REISERFS_CHECK
4401
	dump_stack();
Linus Torvalds's avatar
Linus Torvalds committed
4402 4403
#endif
}