Linux 2.6.32.51
[linux-2.6/linux-acpi-2.6/ibm-acpi-2.6.git] / fs / reiserfs / journal.c
blobb5fe0aa033e7148a877d1bb7bf170f068c6f6f40
1 /*
2 ** Write ahead logging implementation copyright Chris Mason 2000
3 **
4 ** The background commits make this code very interelated, and
5 ** overly complex. I need to rethink things a bit....The major players:
6 **
7 ** journal_begin -- call with the number of blocks you expect to log.
8 ** If the current transaction is too
9 ** old, it will block until the current transaction is
10 ** finished, and then start a new one.
11 ** Usually, your transaction will get joined in with
12 ** previous ones for speed.
14 ** journal_join -- same as journal_begin, but won't block on the current
15 ** transaction regardless of age. Don't ever call
16 ** this. Ever. There are only two places it should be
17 ** called from, and they are both inside this file.
19 ** journal_mark_dirty -- adds blocks into this transaction. clears any flags
20 ** that might make them get sent to disk
21 ** and then marks them BH_JDirty. Puts the buffer head
22 ** into the current transaction hash.
24 ** journal_end -- if the current transaction is batchable, it does nothing
25 ** otherwise, it could do an async/synchronous commit, or
26 ** a full flush of all log and real blocks in the
27 ** transaction.
29 ** flush_old_commits -- if the current transaction is too old, it is ended and
30 ** commit blocks are sent to disk. Forces commit blocks
31 ** to disk for all backgrounded commits that have been
32 ** around too long.
33 ** -- Note, if you call this as an immediate flush from
34 ** from within kupdate, it will ignore the immediate flag
37 #include <linux/time.h>
38 #include <linux/semaphore.h>
39 #include <linux/vmalloc.h>
40 #include <linux/reiserfs_fs.h>
41 #include <linux/kernel.h>
42 #include <linux/errno.h>
43 #include <linux/fcntl.h>
44 #include <linux/stat.h>
45 #include <linux/string.h>
46 #include <linux/smp_lock.h>
47 #include <linux/buffer_head.h>
48 #include <linux/workqueue.h>
49 #include <linux/writeback.h>
50 #include <linux/blkdev.h>
51 #include <linux/backing-dev.h>
52 #include <linux/uaccess.h>
54 #include <asm/system.h>
56 /* gets a struct reiserfs_journal_list * from a list head */
57 #define JOURNAL_LIST_ENTRY(h) (list_entry((h), struct reiserfs_journal_list, \
58 j_list))
59 #define JOURNAL_WORK_ENTRY(h) (list_entry((h), struct reiserfs_journal_list, \
60 j_working_list))
62 /* the number of mounted filesystems. This is used to decide when to
63 ** start and kill the commit workqueue
65 static int reiserfs_mounted_fs_count;
67 static struct workqueue_struct *commit_wq;
69 #define JOURNAL_TRANS_HALF 1018 /* must be correct to keep the desc and commit
70 structs at 4k */
71 #define BUFNR 64 /*read ahead */
73 /* cnode stat bits. Move these into reiserfs_fs.h */
75 #define BLOCK_FREED 2 /* this block was freed, and can't be written. */
76 #define BLOCK_FREED_HOLDER 3 /* this block was freed during this transaction, and can't be written */
78 #define BLOCK_NEEDS_FLUSH 4 /* used in flush_journal_list */
79 #define BLOCK_DIRTIED 5
81 /* journal list state bits */
82 #define LIST_TOUCHED 1
83 #define LIST_DIRTY 2
84 #define LIST_COMMIT_PENDING 4 /* someone will commit this list */
86 /* flags for do_journal_end */
87 #define FLUSH_ALL 1 /* flush commit and real blocks */
88 #define COMMIT_NOW 2 /* end and commit this transaction */
89 #define WAIT 4 /* wait for the log blocks to hit the disk */
91 static int do_journal_end(struct reiserfs_transaction_handle *,
92 struct super_block *, unsigned long nblocks,
93 int flags);
94 static int flush_journal_list(struct super_block *s,
95 struct reiserfs_journal_list *jl, int flushall);
96 static int flush_commit_list(struct super_block *s,
97 struct reiserfs_journal_list *jl, int flushall);
98 static int can_dirty(struct reiserfs_journal_cnode *cn);
99 static int journal_join(struct reiserfs_transaction_handle *th,
100 struct super_block *sb, unsigned long nblocks);
101 static int release_journal_dev(struct super_block *super,
102 struct reiserfs_journal *journal);
103 static int dirty_one_transaction(struct super_block *s,
104 struct reiserfs_journal_list *jl);
105 static void flush_async_commits(struct work_struct *work);
106 static void queue_log_writer(struct super_block *s);
108 /* values for join in do_journal_begin_r */
109 enum {
110 JBEGIN_REG = 0, /* regular journal begin */
111 JBEGIN_JOIN = 1, /* join the running transaction if at all possible */
112 JBEGIN_ABORT = 2, /* called from cleanup code, ignores aborted flag */
115 static int do_journal_begin_r(struct reiserfs_transaction_handle *th,
116 struct super_block *sb,
117 unsigned long nblocks, int join);
119 static void init_journal_hash(struct super_block *sb)
121 struct reiserfs_journal *journal = SB_JOURNAL(sb);
122 memset(journal->j_hash_table, 0,
123 JOURNAL_HASH_SIZE * sizeof(struct reiserfs_journal_cnode *));
127 ** clears BH_Dirty and sticks the buffer on the clean list. Called because I can't allow refile_buffer to
128 ** make schedule happen after I've freed a block. Look at remove_from_transaction and journal_mark_freed for
129 ** more details.
131 static int reiserfs_clean_and_file_buffer(struct buffer_head *bh)
133 if (bh) {
134 clear_buffer_dirty(bh);
135 clear_buffer_journal_test(bh);
137 return 0;
140 static void disable_barrier(struct super_block *s)
142 REISERFS_SB(s)->s_mount_opt &= ~(1 << REISERFS_BARRIER_FLUSH);
143 printk("reiserfs: disabling flush barriers on %s\n",
144 reiserfs_bdevname(s));
147 static struct reiserfs_bitmap_node *allocate_bitmap_node(struct super_block
148 *sb)
150 struct reiserfs_bitmap_node *bn;
151 static int id;
153 bn = kmalloc(sizeof(struct reiserfs_bitmap_node), GFP_NOFS);
154 if (!bn) {
155 return NULL;
157 bn->data = kzalloc(sb->s_blocksize, GFP_NOFS);
158 if (!bn->data) {
159 kfree(bn);
160 return NULL;
162 bn->id = id++;
163 INIT_LIST_HEAD(&bn->list);
164 return bn;
167 static struct reiserfs_bitmap_node *get_bitmap_node(struct super_block *sb)
169 struct reiserfs_journal *journal = SB_JOURNAL(sb);
170 struct reiserfs_bitmap_node *bn = NULL;
171 struct list_head *entry = journal->j_bitmap_nodes.next;
173 journal->j_used_bitmap_nodes++;
174 repeat:
176 if (entry != &journal->j_bitmap_nodes) {
177 bn = list_entry(entry, struct reiserfs_bitmap_node, list);
178 list_del(entry);
179 memset(bn->data, 0, sb->s_blocksize);
180 journal->j_free_bitmap_nodes--;
181 return bn;
183 bn = allocate_bitmap_node(sb);
184 if (!bn) {
185 yield();
186 goto repeat;
188 return bn;
190 static inline void free_bitmap_node(struct super_block *sb,
191 struct reiserfs_bitmap_node *bn)
193 struct reiserfs_journal *journal = SB_JOURNAL(sb);
194 journal->j_used_bitmap_nodes--;
195 if (journal->j_free_bitmap_nodes > REISERFS_MAX_BITMAP_NODES) {
196 kfree(bn->data);
197 kfree(bn);
198 } else {
199 list_add(&bn->list, &journal->j_bitmap_nodes);
200 journal->j_free_bitmap_nodes++;
204 static void allocate_bitmap_nodes(struct super_block *sb)
206 int i;
207 struct reiserfs_journal *journal = SB_JOURNAL(sb);
208 struct reiserfs_bitmap_node *bn = NULL;
209 for (i = 0; i < REISERFS_MIN_BITMAP_NODES; i++) {
210 bn = allocate_bitmap_node(sb);
211 if (bn) {
212 list_add(&bn->list, &journal->j_bitmap_nodes);
213 journal->j_free_bitmap_nodes++;
214 } else {
215 break; /* this is ok, we'll try again when more are needed */
220 static int set_bit_in_list_bitmap(struct super_block *sb,
221 b_blocknr_t block,
222 struct reiserfs_list_bitmap *jb)
224 unsigned int bmap_nr = block / (sb->s_blocksize << 3);
225 unsigned int bit_nr = block % (sb->s_blocksize << 3);
227 if (!jb->bitmaps[bmap_nr]) {
228 jb->bitmaps[bmap_nr] = get_bitmap_node(sb);
230 set_bit(bit_nr, (unsigned long *)jb->bitmaps[bmap_nr]->data);
231 return 0;
234 static void cleanup_bitmap_list(struct super_block *sb,
235 struct reiserfs_list_bitmap *jb)
237 int i;
238 if (jb->bitmaps == NULL)
239 return;
241 for (i = 0; i < reiserfs_bmap_count(sb); i++) {
242 if (jb->bitmaps[i]) {
243 free_bitmap_node(sb, jb->bitmaps[i]);
244 jb->bitmaps[i] = NULL;
250 ** only call this on FS unmount.
252 static int free_list_bitmaps(struct super_block *sb,
253 struct reiserfs_list_bitmap *jb_array)
255 int i;
256 struct reiserfs_list_bitmap *jb;
257 for (i = 0; i < JOURNAL_NUM_BITMAPS; i++) {
258 jb = jb_array + i;
259 jb->journal_list = NULL;
260 cleanup_bitmap_list(sb, jb);
261 vfree(jb->bitmaps);
262 jb->bitmaps = NULL;
264 return 0;
267 static int free_bitmap_nodes(struct super_block *sb)
269 struct reiserfs_journal *journal = SB_JOURNAL(sb);
270 struct list_head *next = journal->j_bitmap_nodes.next;
271 struct reiserfs_bitmap_node *bn;
273 while (next != &journal->j_bitmap_nodes) {
274 bn = list_entry(next, struct reiserfs_bitmap_node, list);
275 list_del(next);
276 kfree(bn->data);
277 kfree(bn);
278 next = journal->j_bitmap_nodes.next;
279 journal->j_free_bitmap_nodes--;
282 return 0;
286 ** get memory for JOURNAL_NUM_BITMAPS worth of bitmaps.
287 ** jb_array is the array to be filled in.
289 int reiserfs_allocate_list_bitmaps(struct super_block *sb,
290 struct reiserfs_list_bitmap *jb_array,
291 unsigned int bmap_nr)
293 int i;
294 int failed = 0;
295 struct reiserfs_list_bitmap *jb;
296 int mem = bmap_nr * sizeof(struct reiserfs_bitmap_node *);
298 for (i = 0; i < JOURNAL_NUM_BITMAPS; i++) {
299 jb = jb_array + i;
300 jb->journal_list = NULL;
301 jb->bitmaps = vmalloc(mem);
302 if (!jb->bitmaps) {
303 reiserfs_warning(sb, "clm-2000", "unable to "
304 "allocate bitmaps for journal lists");
305 failed = 1;
306 break;
308 memset(jb->bitmaps, 0, mem);
310 if (failed) {
311 free_list_bitmaps(sb, jb_array);
312 return -1;
314 return 0;
318 ** find an available list bitmap. If you can't find one, flush a commit list
319 ** and try again
321 static struct reiserfs_list_bitmap *get_list_bitmap(struct super_block *sb,
322 struct reiserfs_journal_list
323 *jl)
325 int i, j;
326 struct reiserfs_journal *journal = SB_JOURNAL(sb);
327 struct reiserfs_list_bitmap *jb = NULL;
329 for (j = 0; j < (JOURNAL_NUM_BITMAPS * 3); j++) {
330 i = journal->j_list_bitmap_index;
331 journal->j_list_bitmap_index = (i + 1) % JOURNAL_NUM_BITMAPS;
332 jb = journal->j_list_bitmap + i;
333 if (journal->j_list_bitmap[i].journal_list) {
334 flush_commit_list(sb,
335 journal->j_list_bitmap[i].
336 journal_list, 1);
337 if (!journal->j_list_bitmap[i].journal_list) {
338 break;
340 } else {
341 break;
344 if (jb->journal_list) { /* double check to make sure if flushed correctly */
345 return NULL;
347 jb->journal_list = jl;
348 return jb;
352 ** allocates a new chunk of X nodes, and links them all together as a list.
353 ** Uses the cnode->next and cnode->prev pointers
354 ** returns NULL on failure
356 static struct reiserfs_journal_cnode *allocate_cnodes(int num_cnodes)
358 struct reiserfs_journal_cnode *head;
359 int i;
360 if (num_cnodes <= 0) {
361 return NULL;
363 head = vmalloc(num_cnodes * sizeof(struct reiserfs_journal_cnode));
364 if (!head) {
365 return NULL;
367 memset(head, 0, num_cnodes * sizeof(struct reiserfs_journal_cnode));
368 head[0].prev = NULL;
369 head[0].next = head + 1;
370 for (i = 1; i < num_cnodes; i++) {
371 head[i].prev = head + (i - 1);
372 head[i].next = head + (i + 1); /* if last one, overwrite it after the if */
374 head[num_cnodes - 1].next = NULL;
375 return head;
379 ** pulls a cnode off the free list, or returns NULL on failure
381 static struct reiserfs_journal_cnode *get_cnode(struct super_block *sb)
383 struct reiserfs_journal_cnode *cn;
384 struct reiserfs_journal *journal = SB_JOURNAL(sb);
386 reiserfs_check_lock_depth(sb, "get_cnode");
388 if (journal->j_cnode_free <= 0) {
389 return NULL;
391 journal->j_cnode_used++;
392 journal->j_cnode_free--;
393 cn = journal->j_cnode_free_list;
394 if (!cn) {
395 return cn;
397 if (cn->next) {
398 cn->next->prev = NULL;
400 journal->j_cnode_free_list = cn->next;
401 memset(cn, 0, sizeof(struct reiserfs_journal_cnode));
402 return cn;
406 ** returns a cnode to the free list
408 static void free_cnode(struct super_block *sb,
409 struct reiserfs_journal_cnode *cn)
411 struct reiserfs_journal *journal = SB_JOURNAL(sb);
413 reiserfs_check_lock_depth(sb, "free_cnode");
415 journal->j_cnode_used--;
416 journal->j_cnode_free++;
417 /* memset(cn, 0, sizeof(struct reiserfs_journal_cnode)) ; */
418 cn->next = journal->j_cnode_free_list;
419 if (journal->j_cnode_free_list) {
420 journal->j_cnode_free_list->prev = cn;
422 cn->prev = NULL; /* not needed with the memset, but I might kill the memset, and forget to do this */
423 journal->j_cnode_free_list = cn;
426 static void clear_prepared_bits(struct buffer_head *bh)
428 clear_buffer_journal_prepared(bh);
429 clear_buffer_journal_restore_dirty(bh);
432 /* utility function to force a BUG if it is called without the big
433 ** kernel lock held. caller is the string printed just before calling BUG()
435 void reiserfs_check_lock_depth(struct super_block *sb, char *caller)
437 #ifdef CONFIG_SMP
438 if (current->lock_depth < 0) {
439 reiserfs_panic(sb, "journal-1", "%s called without kernel "
440 "lock held", caller);
442 #else
444 #endif
447 /* return a cnode with same dev, block number and size in table, or null if not found */
448 static inline struct reiserfs_journal_cnode *get_journal_hash_dev(struct
449 super_block
450 *sb,
451 struct
452 reiserfs_journal_cnode
453 **table,
454 long bl)
456 struct reiserfs_journal_cnode *cn;
457 cn = journal_hash(table, sb, bl);
458 while (cn) {
459 if (cn->blocknr == bl && cn->sb == sb)
460 return cn;
461 cn = cn->hnext;
463 return (struct reiserfs_journal_cnode *)0;
467 ** this actually means 'can this block be reallocated yet?'. If you set search_all, a block can only be allocated
468 ** if it is not in the current transaction, was not freed by the current transaction, and has no chance of ever
469 ** being overwritten by a replay after crashing.
471 ** If you don't set search_all, a block can only be allocated if it is not in the current transaction. Since deleting
472 ** a block removes it from the current transaction, this case should never happen. If you don't set search_all, make
473 ** sure you never write the block without logging it.
475 ** next_zero_bit is a suggestion about the next block to try for find_forward.
476 ** when bl is rejected because it is set in a journal list bitmap, we search
477 ** for the next zero bit in the bitmap that rejected bl. Then, we return that
478 ** through next_zero_bit for find_forward to try.
480 ** Just because we return something in next_zero_bit does not mean we won't
481 ** reject it on the next call to reiserfs_in_journal
484 int reiserfs_in_journal(struct super_block *sb,
485 unsigned int bmap_nr, int bit_nr, int search_all,
486 b_blocknr_t * next_zero_bit)
488 struct reiserfs_journal *journal = SB_JOURNAL(sb);
489 struct reiserfs_journal_cnode *cn;
490 struct reiserfs_list_bitmap *jb;
491 int i;
492 unsigned long bl;
494 *next_zero_bit = 0; /* always start this at zero. */
496 PROC_INFO_INC(sb, journal.in_journal);
497 /* If we aren't doing a search_all, this is a metablock, and it will be logged before use.
498 ** if we crash before the transaction that freed it commits, this transaction won't
499 ** have committed either, and the block will never be written
501 if (search_all) {
502 for (i = 0; i < JOURNAL_NUM_BITMAPS; i++) {
503 PROC_INFO_INC(sb, journal.in_journal_bitmap);
504 jb = journal->j_list_bitmap + i;
505 if (jb->journal_list && jb->bitmaps[bmap_nr] &&
506 test_bit(bit_nr,
507 (unsigned long *)jb->bitmaps[bmap_nr]->
508 data)) {
509 *next_zero_bit =
510 find_next_zero_bit((unsigned long *)
511 (jb->bitmaps[bmap_nr]->
512 data),
513 sb->s_blocksize << 3,
514 bit_nr + 1);
515 return 1;
520 bl = bmap_nr * (sb->s_blocksize << 3) + bit_nr;
521 /* is it in any old transactions? */
522 if (search_all
523 && (cn =
524 get_journal_hash_dev(sb, journal->j_list_hash_table, bl))) {
525 return 1;
528 /* is it in the current transaction. This should never happen */
529 if ((cn = get_journal_hash_dev(sb, journal->j_hash_table, bl))) {
530 BUG();
531 return 1;
534 PROC_INFO_INC(sb, journal.in_journal_reusable);
535 /* safe for reuse */
536 return 0;
539 /* insert cn into table
541 static inline void insert_journal_hash(struct reiserfs_journal_cnode **table,
542 struct reiserfs_journal_cnode *cn)
544 struct reiserfs_journal_cnode *cn_orig;
546 cn_orig = journal_hash(table, cn->sb, cn->blocknr);
547 cn->hnext = cn_orig;
548 cn->hprev = NULL;
549 if (cn_orig) {
550 cn_orig->hprev = cn;
552 journal_hash(table, cn->sb, cn->blocknr) = cn;
555 /* lock the current transaction */
556 static inline void lock_journal(struct super_block *sb)
558 PROC_INFO_INC(sb, journal.lock_journal);
559 mutex_lock(&SB_JOURNAL(sb)->j_mutex);
562 /* unlock the current transaction */
563 static inline void unlock_journal(struct super_block *sb)
565 mutex_unlock(&SB_JOURNAL(sb)->j_mutex);
568 static inline void get_journal_list(struct reiserfs_journal_list *jl)
570 jl->j_refcount++;
573 static inline void put_journal_list(struct super_block *s,
574 struct reiserfs_journal_list *jl)
576 if (jl->j_refcount < 1) {
577 reiserfs_panic(s, "journal-2", "trans id %u, refcount at %d",
578 jl->j_trans_id, jl->j_refcount);
580 if (--jl->j_refcount == 0)
581 kfree(jl);
585 ** this used to be much more involved, and I'm keeping it just in case things get ugly again.
586 ** it gets called by flush_commit_list, and cleans up any data stored about blocks freed during a
587 ** transaction.
589 static void cleanup_freed_for_journal_list(struct super_block *sb,
590 struct reiserfs_journal_list *jl)
593 struct reiserfs_list_bitmap *jb = jl->j_list_bitmap;
594 if (jb) {
595 cleanup_bitmap_list(sb, jb);
597 jl->j_list_bitmap->journal_list = NULL;
598 jl->j_list_bitmap = NULL;
601 static int journal_list_still_alive(struct super_block *s,
602 unsigned int trans_id)
604 struct reiserfs_journal *journal = SB_JOURNAL(s);
605 struct list_head *entry = &journal->j_journal_list;
606 struct reiserfs_journal_list *jl;
608 if (!list_empty(entry)) {
609 jl = JOURNAL_LIST_ENTRY(entry->next);
610 if (jl->j_trans_id <= trans_id) {
611 return 1;
614 return 0;
618 * If page->mapping was null, we failed to truncate this page for
619 * some reason. Most likely because it was truncated after being
620 * logged via data=journal.
622 * This does a check to see if the buffer belongs to one of these
623 * lost pages before doing the final put_bh. If page->mapping was
624 * null, it tries to free buffers on the page, which should make the
625 * final page_cache_release drop the page from the lru.
627 static void release_buffer_page(struct buffer_head *bh)
629 struct page *page = bh->b_page;
630 if (!page->mapping && trylock_page(page)) {
631 page_cache_get(page);
632 put_bh(bh);
633 if (!page->mapping)
634 try_to_free_buffers(page);
635 unlock_page(page);
636 page_cache_release(page);
637 } else {
638 put_bh(bh);
642 static void reiserfs_end_buffer_io_sync(struct buffer_head *bh, int uptodate)
644 char b[BDEVNAME_SIZE];
646 if (buffer_journaled(bh)) {
647 reiserfs_warning(NULL, "clm-2084",
648 "pinned buffer %lu:%s sent to disk",
649 bh->b_blocknr, bdevname(bh->b_bdev, b));
651 if (uptodate)
652 set_buffer_uptodate(bh);
653 else
654 clear_buffer_uptodate(bh);
656 unlock_buffer(bh);
657 release_buffer_page(bh);
660 static void reiserfs_end_ordered_io(struct buffer_head *bh, int uptodate)
662 if (uptodate)
663 set_buffer_uptodate(bh);
664 else
665 clear_buffer_uptodate(bh);
666 unlock_buffer(bh);
667 put_bh(bh);
670 static void submit_logged_buffer(struct buffer_head *bh)
672 get_bh(bh);
673 bh->b_end_io = reiserfs_end_buffer_io_sync;
674 clear_buffer_journal_new(bh);
675 clear_buffer_dirty(bh);
676 if (!test_clear_buffer_journal_test(bh))
677 BUG();
678 if (!buffer_uptodate(bh))
679 BUG();
680 submit_bh(WRITE, bh);
683 static void submit_ordered_buffer(struct buffer_head *bh)
685 get_bh(bh);
686 bh->b_end_io = reiserfs_end_ordered_io;
687 clear_buffer_dirty(bh);
688 if (!buffer_uptodate(bh))
689 BUG();
690 submit_bh(WRITE, bh);
693 static int submit_barrier_buffer(struct buffer_head *bh)
695 get_bh(bh);
696 bh->b_end_io = reiserfs_end_ordered_io;
697 clear_buffer_dirty(bh);
698 if (!buffer_uptodate(bh))
699 BUG();
700 return submit_bh(WRITE_BARRIER, bh);
703 static void check_barrier_completion(struct super_block *s,
704 struct buffer_head *bh)
706 if (buffer_eopnotsupp(bh)) {
707 clear_buffer_eopnotsupp(bh);
708 disable_barrier(s);
709 set_buffer_uptodate(bh);
710 set_buffer_dirty(bh);
711 sync_dirty_buffer(bh);
715 #define CHUNK_SIZE 32
716 struct buffer_chunk {
717 struct buffer_head *bh[CHUNK_SIZE];
718 int nr;
721 static void write_chunk(struct buffer_chunk *chunk)
723 int i;
724 get_fs_excl();
725 for (i = 0; i < chunk->nr; i++) {
726 submit_logged_buffer(chunk->bh[i]);
728 chunk->nr = 0;
729 put_fs_excl();
732 static void write_ordered_chunk(struct buffer_chunk *chunk)
734 int i;
735 get_fs_excl();
736 for (i = 0; i < chunk->nr; i++) {
737 submit_ordered_buffer(chunk->bh[i]);
739 chunk->nr = 0;
740 put_fs_excl();
743 static int add_to_chunk(struct buffer_chunk *chunk, struct buffer_head *bh,
744 spinlock_t * lock, void (fn) (struct buffer_chunk *))
746 int ret = 0;
747 BUG_ON(chunk->nr >= CHUNK_SIZE);
748 chunk->bh[chunk->nr++] = bh;
749 if (chunk->nr >= CHUNK_SIZE) {
750 ret = 1;
751 if (lock)
752 spin_unlock(lock);
753 fn(chunk);
754 if (lock)
755 spin_lock(lock);
757 return ret;
760 static atomic_t nr_reiserfs_jh = ATOMIC_INIT(0);
761 static struct reiserfs_jh *alloc_jh(void)
763 struct reiserfs_jh *jh;
764 while (1) {
765 jh = kmalloc(sizeof(*jh), GFP_NOFS);
766 if (jh) {
767 atomic_inc(&nr_reiserfs_jh);
768 return jh;
770 yield();
775 * we want to free the jh when the buffer has been written
776 * and waited on
778 void reiserfs_free_jh(struct buffer_head *bh)
780 struct reiserfs_jh *jh;
782 jh = bh->b_private;
783 if (jh) {
784 bh->b_private = NULL;
785 jh->bh = NULL;
786 list_del_init(&jh->list);
787 kfree(jh);
788 if (atomic_read(&nr_reiserfs_jh) <= 0)
789 BUG();
790 atomic_dec(&nr_reiserfs_jh);
791 put_bh(bh);
795 static inline int __add_jh(struct reiserfs_journal *j, struct buffer_head *bh,
796 int tail)
798 struct reiserfs_jh *jh;
800 if (bh->b_private) {
801 spin_lock(&j->j_dirty_buffers_lock);
802 if (!bh->b_private) {
803 spin_unlock(&j->j_dirty_buffers_lock);
804 goto no_jh;
806 jh = bh->b_private;
807 list_del_init(&jh->list);
808 } else {
809 no_jh:
810 get_bh(bh);
811 jh = alloc_jh();
812 spin_lock(&j->j_dirty_buffers_lock);
813 /* buffer must be locked for __add_jh, should be able to have
814 * two adds at the same time
816 BUG_ON(bh->b_private);
817 jh->bh = bh;
818 bh->b_private = jh;
820 jh->jl = j->j_current_jl;
821 if (tail)
822 list_add_tail(&jh->list, &jh->jl->j_tail_bh_list);
823 else {
824 list_add_tail(&jh->list, &jh->jl->j_bh_list);
826 spin_unlock(&j->j_dirty_buffers_lock);
827 return 0;
830 int reiserfs_add_tail_list(struct inode *inode, struct buffer_head *bh)
832 return __add_jh(SB_JOURNAL(inode->i_sb), bh, 1);
834 int reiserfs_add_ordered_list(struct inode *inode, struct buffer_head *bh)
836 return __add_jh(SB_JOURNAL(inode->i_sb), bh, 0);
839 #define JH_ENTRY(l) list_entry((l), struct reiserfs_jh, list)
840 static int write_ordered_buffers(spinlock_t * lock,
841 struct reiserfs_journal *j,
842 struct reiserfs_journal_list *jl,
843 struct list_head *list)
845 struct buffer_head *bh;
846 struct reiserfs_jh *jh;
847 int ret = j->j_errno;
848 struct buffer_chunk chunk;
849 struct list_head tmp;
850 INIT_LIST_HEAD(&tmp);
852 chunk.nr = 0;
853 spin_lock(lock);
854 while (!list_empty(list)) {
855 jh = JH_ENTRY(list->next);
856 bh = jh->bh;
857 get_bh(bh);
858 if (!trylock_buffer(bh)) {
859 if (!buffer_dirty(bh)) {
860 list_move(&jh->list, &tmp);
861 goto loop_next;
863 spin_unlock(lock);
864 if (chunk.nr)
865 write_ordered_chunk(&chunk);
866 wait_on_buffer(bh);
867 cond_resched();
868 spin_lock(lock);
869 goto loop_next;
871 /* in theory, dirty non-uptodate buffers should never get here,
872 * but the upper layer io error paths still have a few quirks.
873 * Handle them here as gracefully as we can
875 if (!buffer_uptodate(bh) && buffer_dirty(bh)) {
876 clear_buffer_dirty(bh);
877 ret = -EIO;
879 if (buffer_dirty(bh)) {
880 list_move(&jh->list, &tmp);
881 add_to_chunk(&chunk, bh, lock, write_ordered_chunk);
882 } else {
883 reiserfs_free_jh(bh);
884 unlock_buffer(bh);
886 loop_next:
887 put_bh(bh);
888 cond_resched_lock(lock);
890 if (chunk.nr) {
891 spin_unlock(lock);
892 write_ordered_chunk(&chunk);
893 spin_lock(lock);
895 while (!list_empty(&tmp)) {
896 jh = JH_ENTRY(tmp.prev);
897 bh = jh->bh;
898 get_bh(bh);
899 reiserfs_free_jh(bh);
901 if (buffer_locked(bh)) {
902 spin_unlock(lock);
903 wait_on_buffer(bh);
904 spin_lock(lock);
906 if (!buffer_uptodate(bh)) {
907 ret = -EIO;
909 /* ugly interaction with invalidatepage here.
910 * reiserfs_invalidate_page will pin any buffer that has a valid
911 * journal head from an older transaction. If someone else sets
912 * our buffer dirty after we write it in the first loop, and
913 * then someone truncates the page away, nobody will ever write
914 * the buffer. We're safe if we write the page one last time
915 * after freeing the journal header.
917 if (buffer_dirty(bh) && unlikely(bh->b_page->mapping == NULL)) {
918 spin_unlock(lock);
919 ll_rw_block(WRITE, 1, &bh);
920 spin_lock(lock);
922 put_bh(bh);
923 cond_resched_lock(lock);
925 spin_unlock(lock);
926 return ret;
929 static int flush_older_commits(struct super_block *s,
930 struct reiserfs_journal_list *jl)
932 struct reiserfs_journal *journal = SB_JOURNAL(s);
933 struct reiserfs_journal_list *other_jl;
934 struct reiserfs_journal_list *first_jl;
935 struct list_head *entry;
936 unsigned int trans_id = jl->j_trans_id;
937 unsigned int other_trans_id;
938 unsigned int first_trans_id;
940 find_first:
942 * first we walk backwards to find the oldest uncommitted transation
944 first_jl = jl;
945 entry = jl->j_list.prev;
946 while (1) {
947 other_jl = JOURNAL_LIST_ENTRY(entry);
948 if (entry == &journal->j_journal_list ||
949 atomic_read(&other_jl->j_older_commits_done))
950 break;
952 first_jl = other_jl;
953 entry = other_jl->j_list.prev;
956 /* if we didn't find any older uncommitted transactions, return now */
957 if (first_jl == jl) {
958 return 0;
961 first_trans_id = first_jl->j_trans_id;
963 entry = &first_jl->j_list;
964 while (1) {
965 other_jl = JOURNAL_LIST_ENTRY(entry);
966 other_trans_id = other_jl->j_trans_id;
968 if (other_trans_id < trans_id) {
969 if (atomic_read(&other_jl->j_commit_left) != 0) {
970 flush_commit_list(s, other_jl, 0);
972 /* list we were called with is gone, return */
973 if (!journal_list_still_alive(s, trans_id))
974 return 1;
976 /* the one we just flushed is gone, this means all
977 * older lists are also gone, so first_jl is no longer
978 * valid either. Go back to the beginning.
980 if (!journal_list_still_alive
981 (s, other_trans_id)) {
982 goto find_first;
985 entry = entry->next;
986 if (entry == &journal->j_journal_list)
987 return 0;
988 } else {
989 return 0;
992 return 0;
995 static int reiserfs_async_progress_wait(struct super_block *s)
997 DEFINE_WAIT(wait);
998 struct reiserfs_journal *j = SB_JOURNAL(s);
999 if (atomic_read(&j->j_async_throttle))
1000 congestion_wait(BLK_RW_ASYNC, HZ / 10);
1001 return 0;
1005 ** if this journal list still has commit blocks unflushed, send them to disk.
1007 ** log areas must be flushed in order (transaction 2 can't commit before transaction 1)
1008 ** Before the commit block can by written, every other log block must be safely on disk
1011 static int flush_commit_list(struct super_block *s,
1012 struct reiserfs_journal_list *jl, int flushall)
1014 int i;
1015 b_blocknr_t bn;
1016 struct buffer_head *tbh = NULL;
1017 unsigned int trans_id = jl->j_trans_id;
1018 struct reiserfs_journal *journal = SB_JOURNAL(s);
1019 int barrier = 0;
1020 int retval = 0;
1021 int write_len;
1023 reiserfs_check_lock_depth(s, "flush_commit_list");
1025 if (atomic_read(&jl->j_older_commits_done)) {
1026 return 0;
1029 get_fs_excl();
1031 /* before we can put our commit blocks on disk, we have to make sure everyone older than
1032 ** us is on disk too
1034 BUG_ON(jl->j_len <= 0);
1035 BUG_ON(trans_id == journal->j_trans_id);
1037 get_journal_list(jl);
1038 if (flushall) {
1039 if (flush_older_commits(s, jl) == 1) {
1040 /* list disappeared during flush_older_commits. return */
1041 goto put_jl;
1045 /* make sure nobody is trying to flush this one at the same time */
1046 mutex_lock(&jl->j_commit_mutex);
1047 if (!journal_list_still_alive(s, trans_id)) {
1048 mutex_unlock(&jl->j_commit_mutex);
1049 goto put_jl;
1051 BUG_ON(jl->j_trans_id == 0);
1053 /* this commit is done, exit */
1054 if (atomic_read(&(jl->j_commit_left)) <= 0) {
1055 if (flushall) {
1056 atomic_set(&(jl->j_older_commits_done), 1);
1058 mutex_unlock(&jl->j_commit_mutex);
1059 goto put_jl;
1062 if (!list_empty(&jl->j_bh_list)) {
1063 int ret;
1064 unlock_kernel();
1065 ret = write_ordered_buffers(&journal->j_dirty_buffers_lock,
1066 journal, jl, &jl->j_bh_list);
1067 if (ret < 0 && retval == 0)
1068 retval = ret;
1069 lock_kernel();
1071 BUG_ON(!list_empty(&jl->j_bh_list));
1073 * for the description block and all the log blocks, submit any buffers
1074 * that haven't already reached the disk. Try to write at least 256
1075 * log blocks. later on, we will only wait on blocks that correspond
1076 * to this transaction, but while we're unplugging we might as well
1077 * get a chunk of data on there.
1079 atomic_inc(&journal->j_async_throttle);
1080 write_len = jl->j_len + 1;
1081 if (write_len < 256)
1082 write_len = 256;
1083 for (i = 0 ; i < write_len ; i++) {
1084 bn = SB_ONDISK_JOURNAL_1st_BLOCK(s) + (jl->j_start + i) %
1085 SB_ONDISK_JOURNAL_SIZE(s);
1086 tbh = journal_find_get_block(s, bn);
1087 if (tbh) {
1088 if (buffer_dirty(tbh))
1089 ll_rw_block(WRITE, 1, &tbh) ;
1090 put_bh(tbh) ;
1093 atomic_dec(&journal->j_async_throttle);
1095 /* We're skipping the commit if there's an error */
1096 if (retval || reiserfs_is_journal_aborted(journal))
1097 barrier = 0;
1099 /* wait on everything written so far before writing the commit
1100 * if we are in barrier mode, send the commit down now
1102 barrier = reiserfs_barrier_flush(s);
1103 if (barrier) {
1104 int ret;
1105 lock_buffer(jl->j_commit_bh);
1106 ret = submit_barrier_buffer(jl->j_commit_bh);
1107 if (ret == -EOPNOTSUPP) {
1108 set_buffer_uptodate(jl->j_commit_bh);
1109 disable_barrier(s);
1110 barrier = 0;
1113 for (i = 0; i < (jl->j_len + 1); i++) {
1114 bn = SB_ONDISK_JOURNAL_1st_BLOCK(s) +
1115 (jl->j_start + i) % SB_ONDISK_JOURNAL_SIZE(s);
1116 tbh = journal_find_get_block(s, bn);
1117 wait_on_buffer(tbh);
1118 // since we're using ll_rw_blk above, it might have skipped over
1119 // a locked buffer. Double check here
1121 if (buffer_dirty(tbh)) /* redundant, sync_dirty_buffer() checks */
1122 sync_dirty_buffer(tbh);
1123 if (unlikely(!buffer_uptodate(tbh))) {
1124 #ifdef CONFIG_REISERFS_CHECK
1125 reiserfs_warning(s, "journal-601",
1126 "buffer write failed");
1127 #endif
1128 retval = -EIO;
1130 put_bh(tbh); /* once for journal_find_get_block */
1131 put_bh(tbh); /* once due to original getblk in do_journal_end */
1132 atomic_dec(&(jl->j_commit_left));
1135 BUG_ON(atomic_read(&(jl->j_commit_left)) != 1);
1137 if (!barrier) {
1138 /* If there was a write error in the journal - we can't commit
1139 * this transaction - it will be invalid and, if successful,
1140 * will just end up propagating the write error out to
1141 * the file system. */
1142 if (likely(!retval && !reiserfs_is_journal_aborted (journal))) {
1143 if (buffer_dirty(jl->j_commit_bh))
1144 BUG();
1145 mark_buffer_dirty(jl->j_commit_bh) ;
1146 sync_dirty_buffer(jl->j_commit_bh) ;
1148 } else
1149 wait_on_buffer(jl->j_commit_bh);
1151 check_barrier_completion(s, jl->j_commit_bh);
1153 /* If there was a write error in the journal - we can't commit this
1154 * transaction - it will be invalid and, if successful, will just end
1155 * up propagating the write error out to the filesystem. */
1156 if (unlikely(!buffer_uptodate(jl->j_commit_bh))) {
1157 #ifdef CONFIG_REISERFS_CHECK
1158 reiserfs_warning(s, "journal-615", "buffer write failed");
1159 #endif
1160 retval = -EIO;
1162 bforget(jl->j_commit_bh);
1163 if (journal->j_last_commit_id != 0 &&
1164 (jl->j_trans_id - journal->j_last_commit_id) != 1) {
1165 reiserfs_warning(s, "clm-2200", "last commit %lu, current %lu",
1166 journal->j_last_commit_id, jl->j_trans_id);
1168 journal->j_last_commit_id = jl->j_trans_id;
1170 /* now, every commit block is on the disk. It is safe to allow blocks freed during this transaction to be reallocated */
1171 cleanup_freed_for_journal_list(s, jl);
1173 retval = retval ? retval : journal->j_errno;
1175 /* mark the metadata dirty */
1176 if (!retval)
1177 dirty_one_transaction(s, jl);
1178 atomic_dec(&(jl->j_commit_left));
1180 if (flushall) {
1181 atomic_set(&(jl->j_older_commits_done), 1);
1183 mutex_unlock(&jl->j_commit_mutex);
1184 put_jl:
1185 put_journal_list(s, jl);
1187 if (retval)
1188 reiserfs_abort(s, retval, "Journal write error in %s",
1189 __func__);
1190 put_fs_excl();
1191 return retval;
1195 ** flush_journal_list frequently needs to find a newer transaction for a given block. This does that, or
1196 ** returns NULL if it can't find anything
1198 static struct reiserfs_journal_list *find_newer_jl_for_cn(struct
1199 reiserfs_journal_cnode
1200 *cn)
1202 struct super_block *sb = cn->sb;
1203 b_blocknr_t blocknr = cn->blocknr;
1205 cn = cn->hprev;
1206 while (cn) {
1207 if (cn->sb == sb && cn->blocknr == blocknr && cn->jlist) {
1208 return cn->jlist;
1210 cn = cn->hprev;
1212 return NULL;
1215 static int newer_jl_done(struct reiserfs_journal_cnode *cn)
1217 struct super_block *sb = cn->sb;
1218 b_blocknr_t blocknr = cn->blocknr;
1220 cn = cn->hprev;
1221 while (cn) {
1222 if (cn->sb == sb && cn->blocknr == blocknr && cn->jlist &&
1223 atomic_read(&cn->jlist->j_commit_left) != 0)
1224 return 0;
1225 cn = cn->hprev;
1227 return 1;
1230 static void remove_journal_hash(struct super_block *,
1231 struct reiserfs_journal_cnode **,
1232 struct reiserfs_journal_list *, unsigned long,
1233 int);
1236 ** once all the real blocks have been flushed, it is safe to remove them from the
1237 ** journal list for this transaction. Aside from freeing the cnode, this also allows the
1238 ** block to be reallocated for data blocks if it had been deleted.
1240 static void remove_all_from_journal_list(struct super_block *sb,
1241 struct reiserfs_journal_list *jl,
1242 int debug)
1244 struct reiserfs_journal *journal = SB_JOURNAL(sb);
1245 struct reiserfs_journal_cnode *cn, *last;
1246 cn = jl->j_realblock;
1248 /* which is better, to lock once around the whole loop, or
1249 ** to lock for each call to remove_journal_hash?
1251 while (cn) {
1252 if (cn->blocknr != 0) {
1253 if (debug) {
1254 reiserfs_warning(sb, "reiserfs-2201",
1255 "block %u, bh is %d, state %ld",
1256 cn->blocknr, cn->bh ? 1 : 0,
1257 cn->state);
1259 cn->state = 0;
1260 remove_journal_hash(sb, journal->j_list_hash_table,
1261 jl, cn->blocknr, 1);
1263 last = cn;
1264 cn = cn->next;
1265 free_cnode(sb, last);
1267 jl->j_realblock = NULL;
1271 ** if this timestamp is greater than the timestamp we wrote last to the header block, write it to the header block.
1272 ** once this is done, I can safely say the log area for this transaction won't ever be replayed, and I can start
1273 ** releasing blocks in this transaction for reuse as data blocks.
1274 ** called by flush_journal_list, before it calls remove_all_from_journal_list
1277 static int _update_journal_header_block(struct super_block *sb,
1278 unsigned long offset,
1279 unsigned int trans_id)
1281 struct reiserfs_journal_header *jh;
1282 struct reiserfs_journal *journal = SB_JOURNAL(sb);
1284 if (reiserfs_is_journal_aborted(journal))
1285 return -EIO;
1287 if (trans_id >= journal->j_last_flush_trans_id) {
1288 if (buffer_locked((journal->j_header_bh))) {
1289 wait_on_buffer((journal->j_header_bh));
1290 if (unlikely(!buffer_uptodate(journal->j_header_bh))) {
1291 #ifdef CONFIG_REISERFS_CHECK
1292 reiserfs_warning(sb, "journal-699",
1293 "buffer write failed");
1294 #endif
1295 return -EIO;
1298 journal->j_last_flush_trans_id = trans_id;
1299 journal->j_first_unflushed_offset = offset;
1300 jh = (struct reiserfs_journal_header *)(journal->j_header_bh->
1301 b_data);
1302 jh->j_last_flush_trans_id = cpu_to_le32(trans_id);
1303 jh->j_first_unflushed_offset = cpu_to_le32(offset);
1304 jh->j_mount_id = cpu_to_le32(journal->j_mount_id);
1306 if (reiserfs_barrier_flush(sb)) {
1307 int ret;
1308 lock_buffer(journal->j_header_bh);
1309 ret = submit_barrier_buffer(journal->j_header_bh);
1310 if (ret == -EOPNOTSUPP) {
1311 set_buffer_uptodate(journal->j_header_bh);
1312 disable_barrier(sb);
1313 goto sync;
1315 wait_on_buffer(journal->j_header_bh);
1316 check_barrier_completion(sb, journal->j_header_bh);
1317 } else {
1318 sync:
1319 set_buffer_dirty(journal->j_header_bh);
1320 sync_dirty_buffer(journal->j_header_bh);
1322 if (!buffer_uptodate(journal->j_header_bh)) {
1323 reiserfs_warning(sb, "journal-837",
1324 "IO error during journal replay");
1325 return -EIO;
1328 return 0;
1331 static int update_journal_header_block(struct super_block *sb,
1332 unsigned long offset,
1333 unsigned int trans_id)
1335 return _update_journal_header_block(sb, offset, trans_id);
1339 ** flush any and all journal lists older than you are
1340 ** can only be called from flush_journal_list
1342 static int flush_older_journal_lists(struct super_block *sb,
1343 struct reiserfs_journal_list *jl)
1345 struct list_head *entry;
1346 struct reiserfs_journal_list *other_jl;
1347 struct reiserfs_journal *journal = SB_JOURNAL(sb);
1348 unsigned int trans_id = jl->j_trans_id;
1350 /* we know we are the only ones flushing things, no extra race
1351 * protection is required.
1353 restart:
1354 entry = journal->j_journal_list.next;
1355 /* Did we wrap? */
1356 if (entry == &journal->j_journal_list)
1357 return 0;
1358 other_jl = JOURNAL_LIST_ENTRY(entry);
1359 if (other_jl->j_trans_id < trans_id) {
1360 BUG_ON(other_jl->j_refcount <= 0);
1361 /* do not flush all */
1362 flush_journal_list(sb, other_jl, 0);
1364 /* other_jl is now deleted from the list */
1365 goto restart;
1367 return 0;
1370 static void del_from_work_list(struct super_block *s,
1371 struct reiserfs_journal_list *jl)
1373 struct reiserfs_journal *journal = SB_JOURNAL(s);
1374 if (!list_empty(&jl->j_working_list)) {
1375 list_del_init(&jl->j_working_list);
1376 journal->j_num_work_lists--;
1380 /* flush a journal list, both commit and real blocks
1382 ** always set flushall to 1, unless you are calling from inside
1383 ** flush_journal_list
1385 ** IMPORTANT. This can only be called while there are no journal writers,
1386 ** and the journal is locked. That means it can only be called from
1387 ** do_journal_end, or by journal_release
1389 static int flush_journal_list(struct super_block *s,
1390 struct reiserfs_journal_list *jl, int flushall)
1392 struct reiserfs_journal_list *pjl;
1393 struct reiserfs_journal_cnode *cn, *last;
1394 int count;
1395 int was_jwait = 0;
1396 int was_dirty = 0;
1397 struct buffer_head *saved_bh;
1398 unsigned long j_len_saved = jl->j_len;
1399 struct reiserfs_journal *journal = SB_JOURNAL(s);
1400 int err = 0;
1402 BUG_ON(j_len_saved <= 0);
1404 if (atomic_read(&journal->j_wcount) != 0) {
1405 reiserfs_warning(s, "clm-2048", "called with wcount %d",
1406 atomic_read(&journal->j_wcount));
1408 BUG_ON(jl->j_trans_id == 0);
1410 /* if flushall == 0, the lock is already held */
1411 if (flushall) {
1412 mutex_lock(&journal->j_flush_mutex);
1413 } else if (mutex_trylock(&journal->j_flush_mutex)) {
1414 BUG();
1417 count = 0;
1418 if (j_len_saved > journal->j_trans_max) {
1419 reiserfs_panic(s, "journal-715", "length is %lu, trans id %lu",
1420 j_len_saved, jl->j_trans_id);
1421 return 0;
1424 get_fs_excl();
1426 /* if all the work is already done, get out of here */
1427 if (atomic_read(&(jl->j_nonzerolen)) <= 0 &&
1428 atomic_read(&(jl->j_commit_left)) <= 0) {
1429 goto flush_older_and_return;
1432 /* start by putting the commit list on disk. This will also flush
1433 ** the commit lists of any olders transactions
1435 flush_commit_list(s, jl, 1);
1437 if (!(jl->j_state & LIST_DIRTY)
1438 && !reiserfs_is_journal_aborted(journal))
1439 BUG();
1441 /* are we done now? */
1442 if (atomic_read(&(jl->j_nonzerolen)) <= 0 &&
1443 atomic_read(&(jl->j_commit_left)) <= 0) {
1444 goto flush_older_and_return;
1447 /* loop through each cnode, see if we need to write it,
1448 ** or wait on a more recent transaction, or just ignore it
1450 if (atomic_read(&(journal->j_wcount)) != 0) {
1451 reiserfs_panic(s, "journal-844", "journal list is flushing, "
1452 "wcount is not 0");
1454 cn = jl->j_realblock;
1455 while (cn) {
1456 was_jwait = 0;
1457 was_dirty = 0;
1458 saved_bh = NULL;
1459 /* blocknr of 0 is no longer in the hash, ignore it */
1460 if (cn->blocknr == 0) {
1461 goto free_cnode;
1464 /* This transaction failed commit. Don't write out to the disk */
1465 if (!(jl->j_state & LIST_DIRTY))
1466 goto free_cnode;
1468 pjl = find_newer_jl_for_cn(cn);
1469 /* the order is important here. We check pjl to make sure we
1470 ** don't clear BH_JDirty_wait if we aren't the one writing this
1471 ** block to disk
1473 if (!pjl && cn->bh) {
1474 saved_bh = cn->bh;
1476 /* we do this to make sure nobody releases the buffer while
1477 ** we are working with it
1479 get_bh(saved_bh);
1481 if (buffer_journal_dirty(saved_bh)) {
1482 BUG_ON(!can_dirty(cn));
1483 was_jwait = 1;
1484 was_dirty = 1;
1485 } else if (can_dirty(cn)) {
1486 /* everything with !pjl && jwait should be writable */
1487 BUG();
1491 /* if someone has this block in a newer transaction, just make
1492 ** sure they are committed, and don't try writing it to disk
1494 if (pjl) {
1495 if (atomic_read(&pjl->j_commit_left))
1496 flush_commit_list(s, pjl, 1);
1497 goto free_cnode;
1500 /* bh == NULL when the block got to disk on its own, OR,
1501 ** the block got freed in a future transaction
1503 if (saved_bh == NULL) {
1504 goto free_cnode;
1507 /* this should never happen. kupdate_one_transaction has this list
1508 ** locked while it works, so we should never see a buffer here that
1509 ** is not marked JDirty_wait
1511 if ((!was_jwait) && !buffer_locked(saved_bh)) {
1512 reiserfs_warning(s, "journal-813",
1513 "BAD! buffer %llu %cdirty %cjwait, "
1514 "not in a newer tranasction",
1515 (unsigned long long)saved_bh->
1516 b_blocknr, was_dirty ? ' ' : '!',
1517 was_jwait ? ' ' : '!');
1519 if (was_dirty) {
1520 /* we inc again because saved_bh gets decremented at free_cnode */
1521 get_bh(saved_bh);
1522 set_bit(BLOCK_NEEDS_FLUSH, &cn->state);
1523 lock_buffer(saved_bh);
1524 BUG_ON(cn->blocknr != saved_bh->b_blocknr);
1525 if (buffer_dirty(saved_bh))
1526 submit_logged_buffer(saved_bh);
1527 else
1528 unlock_buffer(saved_bh);
1529 count++;
1530 } else {
1531 reiserfs_warning(s, "clm-2082",
1532 "Unable to flush buffer %llu in %s",
1533 (unsigned long long)saved_bh->
1534 b_blocknr, __func__);
1536 free_cnode:
1537 last = cn;
1538 cn = cn->next;
1539 if (saved_bh) {
1540 /* we incremented this to keep others from taking the buffer head away */
1541 put_bh(saved_bh);
1542 if (atomic_read(&(saved_bh->b_count)) < 0) {
1543 reiserfs_warning(s, "journal-945",
1544 "saved_bh->b_count < 0");
1548 if (count > 0) {
1549 cn = jl->j_realblock;
1550 while (cn) {
1551 if (test_bit(BLOCK_NEEDS_FLUSH, &cn->state)) {
1552 if (!cn->bh) {
1553 reiserfs_panic(s, "journal-1011",
1554 "cn->bh is NULL");
1556 wait_on_buffer(cn->bh);
1557 if (!cn->bh) {
1558 reiserfs_panic(s, "journal-1012",
1559 "cn->bh is NULL");
1561 if (unlikely(!buffer_uptodate(cn->bh))) {
1562 #ifdef CONFIG_REISERFS_CHECK
1563 reiserfs_warning(s, "journal-949",
1564 "buffer write failed");
1565 #endif
1566 err = -EIO;
1568 /* note, we must clear the JDirty_wait bit after the up to date
1569 ** check, otherwise we race against our flushpage routine
1571 BUG_ON(!test_clear_buffer_journal_dirty
1572 (cn->bh));
1574 /* drop one ref for us */
1575 put_bh(cn->bh);
1576 /* drop one ref for journal_mark_dirty */
1577 release_buffer_page(cn->bh);
1579 cn = cn->next;
1583 if (err)
1584 reiserfs_abort(s, -EIO,
1585 "Write error while pushing transaction to disk in %s",
1586 __func__);
1587 flush_older_and_return:
1589 /* before we can update the journal header block, we _must_ flush all
1590 ** real blocks from all older transactions to disk. This is because
1591 ** once the header block is updated, this transaction will not be
1592 ** replayed after a crash
1594 if (flushall) {
1595 flush_older_journal_lists(s, jl);
1598 err = journal->j_errno;
1599 /* before we can remove everything from the hash tables for this
1600 ** transaction, we must make sure it can never be replayed
1602 ** since we are only called from do_journal_end, we know for sure there
1603 ** are no allocations going on while we are flushing journal lists. So,
1604 ** we only need to update the journal header block for the last list
1605 ** being flushed
1607 if (!err && flushall) {
1608 err =
1609 update_journal_header_block(s,
1610 (jl->j_start + jl->j_len +
1611 2) % SB_ONDISK_JOURNAL_SIZE(s),
1612 jl->j_trans_id);
1613 if (err)
1614 reiserfs_abort(s, -EIO,
1615 "Write error while updating journal header in %s",
1616 __func__);
1618 remove_all_from_journal_list(s, jl, 0);
1619 list_del_init(&jl->j_list);
1620 journal->j_num_lists--;
1621 del_from_work_list(s, jl);
1623 if (journal->j_last_flush_id != 0 &&
1624 (jl->j_trans_id - journal->j_last_flush_id) != 1) {
1625 reiserfs_warning(s, "clm-2201", "last flush %lu, current %lu",
1626 journal->j_last_flush_id, jl->j_trans_id);
1628 journal->j_last_flush_id = jl->j_trans_id;
1630 /* not strictly required since we are freeing the list, but it should
1631 * help find code using dead lists later on
1633 jl->j_len = 0;
1634 atomic_set(&(jl->j_nonzerolen), 0);
1635 jl->j_start = 0;
1636 jl->j_realblock = NULL;
1637 jl->j_commit_bh = NULL;
1638 jl->j_trans_id = 0;
1639 jl->j_state = 0;
1640 put_journal_list(s, jl);
1641 if (flushall)
1642 mutex_unlock(&journal->j_flush_mutex);
1643 put_fs_excl();
1644 return err;
1647 static int test_transaction(struct super_block *s,
1648 struct reiserfs_journal_list *jl)
1650 struct reiserfs_journal_cnode *cn;
1652 if (jl->j_len == 0 || atomic_read(&jl->j_nonzerolen) == 0)
1653 return 1;
1655 cn = jl->j_realblock;
1656 while (cn) {
1657 /* if the blocknr == 0, this has been cleared from the hash,
1658 ** skip it
1660 if (cn->blocknr == 0) {
1661 goto next;
1663 if (cn->bh && !newer_jl_done(cn))
1664 return 0;
1665 next:
1666 cn = cn->next;
1667 cond_resched();
1669 return 0;
1672 static int write_one_transaction(struct super_block *s,
1673 struct reiserfs_journal_list *jl,
1674 struct buffer_chunk *chunk)
1676 struct reiserfs_journal_cnode *cn;
1677 int ret = 0;
1679 jl->j_state |= LIST_TOUCHED;
1680 del_from_work_list(s, jl);
1681 if (jl->j_len == 0 || atomic_read(&jl->j_nonzerolen) == 0) {
1682 return 0;
1685 cn = jl->j_realblock;
1686 while (cn) {
1687 /* if the blocknr == 0, this has been cleared from the hash,
1688 ** skip it
1690 if (cn->blocknr == 0) {
1691 goto next;
1693 if (cn->bh && can_dirty(cn) && buffer_dirty(cn->bh)) {
1694 struct buffer_head *tmp_bh;
1695 /* we can race against journal_mark_freed when we try
1696 * to lock_buffer(cn->bh), so we have to inc the buffer
1697 * count, and recheck things after locking
1699 tmp_bh = cn->bh;
1700 get_bh(tmp_bh);
1701 lock_buffer(tmp_bh);
1702 if (cn->bh && can_dirty(cn) && buffer_dirty(tmp_bh)) {
1703 if (!buffer_journal_dirty(tmp_bh) ||
1704 buffer_journal_prepared(tmp_bh))
1705 BUG();
1706 add_to_chunk(chunk, tmp_bh, NULL, write_chunk);
1707 ret++;
1708 } else {
1709 /* note, cn->bh might be null now */
1710 unlock_buffer(tmp_bh);
1712 put_bh(tmp_bh);
1714 next:
1715 cn = cn->next;
1716 cond_resched();
1718 return ret;
1721 /* used by flush_commit_list */
1722 static int dirty_one_transaction(struct super_block *s,
1723 struct reiserfs_journal_list *jl)
1725 struct reiserfs_journal_cnode *cn;
1726 struct reiserfs_journal_list *pjl;
1727 int ret = 0;
1729 jl->j_state |= LIST_DIRTY;
1730 cn = jl->j_realblock;
1731 while (cn) {
1732 /* look for a more recent transaction that logged this
1733 ** buffer. Only the most recent transaction with a buffer in
1734 ** it is allowed to send that buffer to disk
1736 pjl = find_newer_jl_for_cn(cn);
1737 if (!pjl && cn->blocknr && cn->bh
1738 && buffer_journal_dirty(cn->bh)) {
1739 BUG_ON(!can_dirty(cn));
1740 /* if the buffer is prepared, it will either be logged
1741 * or restored. If restored, we need to make sure
1742 * it actually gets marked dirty
1744 clear_buffer_journal_new(cn->bh);
1745 if (buffer_journal_prepared(cn->bh)) {
1746 set_buffer_journal_restore_dirty(cn->bh);
1747 } else {
1748 set_buffer_journal_test(cn->bh);
1749 mark_buffer_dirty(cn->bh);
1752 cn = cn->next;
1754 return ret;
1757 static int kupdate_transactions(struct super_block *s,
1758 struct reiserfs_journal_list *jl,
1759 struct reiserfs_journal_list **next_jl,
1760 unsigned int *next_trans_id,
1761 int num_blocks, int num_trans)
1763 int ret = 0;
1764 int written = 0;
1765 int transactions_flushed = 0;
1766 unsigned int orig_trans_id = jl->j_trans_id;
1767 struct buffer_chunk chunk;
1768 struct list_head *entry;
1769 struct reiserfs_journal *journal = SB_JOURNAL(s);
1770 chunk.nr = 0;
1772 mutex_lock(&journal->j_flush_mutex);
1773 if (!journal_list_still_alive(s, orig_trans_id)) {
1774 goto done;
1777 /* we've got j_flush_mutex held, nobody is going to delete any
1778 * of these lists out from underneath us
1780 while ((num_trans && transactions_flushed < num_trans) ||
1781 (!num_trans && written < num_blocks)) {
1783 if (jl->j_len == 0 || (jl->j_state & LIST_TOUCHED) ||
1784 atomic_read(&jl->j_commit_left)
1785 || !(jl->j_state & LIST_DIRTY)) {
1786 del_from_work_list(s, jl);
1787 break;
1789 ret = write_one_transaction(s, jl, &chunk);
1791 if (ret < 0)
1792 goto done;
1793 transactions_flushed++;
1794 written += ret;
1795 entry = jl->j_list.next;
1797 /* did we wrap? */
1798 if (entry == &journal->j_journal_list) {
1799 break;
1801 jl = JOURNAL_LIST_ENTRY(entry);
1803 /* don't bother with older transactions */
1804 if (jl->j_trans_id <= orig_trans_id)
1805 break;
1807 if (chunk.nr) {
1808 write_chunk(&chunk);
1811 done:
1812 mutex_unlock(&journal->j_flush_mutex);
1813 return ret;
1816 /* for o_sync and fsync heavy applications, they tend to use
1817 ** all the journa list slots with tiny transactions. These
1818 ** trigger lots and lots of calls to update the header block, which
1819 ** adds seeks and slows things down.
1821 ** This function tries to clear out a large chunk of the journal lists
1822 ** at once, which makes everything faster since only the newest journal
1823 ** list updates the header block
1825 static int flush_used_journal_lists(struct super_block *s,
1826 struct reiserfs_journal_list *jl)
1828 unsigned long len = 0;
1829 unsigned long cur_len;
1830 int ret;
1831 int i;
1832 int limit = 256;
1833 struct reiserfs_journal_list *tjl;
1834 struct reiserfs_journal_list *flush_jl;
1835 unsigned int trans_id;
1836 struct reiserfs_journal *journal = SB_JOURNAL(s);
1838 flush_jl = tjl = jl;
1840 /* in data logging mode, try harder to flush a lot of blocks */
1841 if (reiserfs_data_log(s))
1842 limit = 1024;
1843 /* flush for 256 transactions or limit blocks, whichever comes first */
1844 for (i = 0; i < 256 && len < limit; i++) {
1845 if (atomic_read(&tjl->j_commit_left) ||
1846 tjl->j_trans_id < jl->j_trans_id) {
1847 break;
1849 cur_len = atomic_read(&tjl->j_nonzerolen);
1850 if (cur_len > 0) {
1851 tjl->j_state &= ~LIST_TOUCHED;
1853 len += cur_len;
1854 flush_jl = tjl;
1855 if (tjl->j_list.next == &journal->j_journal_list)
1856 break;
1857 tjl = JOURNAL_LIST_ENTRY(tjl->j_list.next);
1859 /* try to find a group of blocks we can flush across all the
1860 ** transactions, but only bother if we've actually spanned
1861 ** across multiple lists
1863 if (flush_jl != jl) {
1864 ret = kupdate_transactions(s, jl, &tjl, &trans_id, len, i);
1866 flush_journal_list(s, flush_jl, 1);
1867 return 0;
1871 ** removes any nodes in table with name block and dev as bh.
1872 ** only touchs the hnext and hprev pointers.
1874 void remove_journal_hash(struct super_block *sb,
1875 struct reiserfs_journal_cnode **table,
1876 struct reiserfs_journal_list *jl,
1877 unsigned long block, int remove_freed)
1879 struct reiserfs_journal_cnode *cur;
1880 struct reiserfs_journal_cnode **head;
1882 head = &(journal_hash(table, sb, block));
1883 if (!head) {
1884 return;
1886 cur = *head;
1887 while (cur) {
1888 if (cur->blocknr == block && cur->sb == sb
1889 && (jl == NULL || jl == cur->jlist)
1890 && (!test_bit(BLOCK_FREED, &cur->state) || remove_freed)) {
1891 if (cur->hnext) {
1892 cur->hnext->hprev = cur->hprev;
1894 if (cur->hprev) {
1895 cur->hprev->hnext = cur->hnext;
1896 } else {
1897 *head = cur->hnext;
1899 cur->blocknr = 0;
1900 cur->sb = NULL;
1901 cur->state = 0;
1902 if (cur->bh && cur->jlist) /* anybody who clears the cur->bh will also dec the nonzerolen */
1903 atomic_dec(&(cur->jlist->j_nonzerolen));
1904 cur->bh = NULL;
1905 cur->jlist = NULL;
1907 cur = cur->hnext;
1911 static void free_journal_ram(struct super_block *sb)
1913 struct reiserfs_journal *journal = SB_JOURNAL(sb);
1914 kfree(journal->j_current_jl);
1915 journal->j_num_lists--;
1917 vfree(journal->j_cnode_free_orig);
1918 free_list_bitmaps(sb, journal->j_list_bitmap);
1919 free_bitmap_nodes(sb); /* must be after free_list_bitmaps */
1920 if (journal->j_header_bh) {
1921 brelse(journal->j_header_bh);
1923 /* j_header_bh is on the journal dev, make sure not to release the journal
1924 * dev until we brelse j_header_bh
1926 release_journal_dev(sb, journal);
1927 vfree(journal);
1931 ** call on unmount. Only set error to 1 if you haven't made your way out
1932 ** of read_super() yet. Any other caller must keep error at 0.
1934 static int do_journal_release(struct reiserfs_transaction_handle *th,
1935 struct super_block *sb, int error)
1937 struct reiserfs_transaction_handle myth;
1938 int flushed = 0;
1939 struct reiserfs_journal *journal = SB_JOURNAL(sb);
1941 /* we only want to flush out transactions if we were called with error == 0
1943 if (!error && !(sb->s_flags & MS_RDONLY)) {
1944 /* end the current trans */
1945 BUG_ON(!th->t_trans_id);
1946 do_journal_end(th, sb, 10, FLUSH_ALL);
1948 /* make sure something gets logged to force our way into the flush code */
1949 if (!journal_join(&myth, sb, 1)) {
1950 reiserfs_prepare_for_journal(sb,
1951 SB_BUFFER_WITH_SB(sb),
1953 journal_mark_dirty(&myth, sb,
1954 SB_BUFFER_WITH_SB(sb));
1955 do_journal_end(&myth, sb, 1, FLUSH_ALL);
1956 flushed = 1;
1960 /* this also catches errors during the do_journal_end above */
1961 if (!error && reiserfs_is_journal_aborted(journal)) {
1962 memset(&myth, 0, sizeof(myth));
1963 if (!journal_join_abort(&myth, sb, 1)) {
1964 reiserfs_prepare_for_journal(sb,
1965 SB_BUFFER_WITH_SB(sb),
1967 journal_mark_dirty(&myth, sb,
1968 SB_BUFFER_WITH_SB(sb));
1969 do_journal_end(&myth, sb, 1, FLUSH_ALL);
1973 reiserfs_mounted_fs_count--;
1974 /* wait for all commits to finish */
1975 cancel_delayed_work(&SB_JOURNAL(sb)->j_work);
1976 flush_workqueue(commit_wq);
1977 if (!reiserfs_mounted_fs_count) {
1978 destroy_workqueue(commit_wq);
1979 commit_wq = NULL;
1982 free_journal_ram(sb);
1984 return 0;
1988 ** call on unmount. flush all journal trans, release all alloc'd ram
1990 int journal_release(struct reiserfs_transaction_handle *th,
1991 struct super_block *sb)
1993 return do_journal_release(th, sb, 0);
1997 ** only call from an error condition inside reiserfs_read_super!
1999 int journal_release_error(struct reiserfs_transaction_handle *th,
2000 struct super_block *sb)
2002 return do_journal_release(th, sb, 1);
2005 /* compares description block with commit block. returns 1 if they differ, 0 if they are the same */
2006 static int journal_compare_desc_commit(struct super_block *sb,
2007 struct reiserfs_journal_desc *desc,
2008 struct reiserfs_journal_commit *commit)
2010 if (get_commit_trans_id(commit) != get_desc_trans_id(desc) ||
2011 get_commit_trans_len(commit) != get_desc_trans_len(desc) ||
2012 get_commit_trans_len(commit) > SB_JOURNAL(sb)->j_trans_max ||
2013 get_commit_trans_len(commit) <= 0) {
2014 return 1;
2016 return 0;
2019 /* returns 0 if it did not find a description block
2020 ** returns -1 if it found a corrupt commit block
2021 ** returns 1 if both desc and commit were valid
2023 static int journal_transaction_is_valid(struct super_block *sb,
2024 struct buffer_head *d_bh,
2025 unsigned int *oldest_invalid_trans_id,
2026 unsigned long *newest_mount_id)
2028 struct reiserfs_journal_desc *desc;
2029 struct reiserfs_journal_commit *commit;
2030 struct buffer_head *c_bh;
2031 unsigned long offset;
2033 if (!d_bh)
2034 return 0;
2036 desc = (struct reiserfs_journal_desc *)d_bh->b_data;
2037 if (get_desc_trans_len(desc) > 0
2038 && !memcmp(get_journal_desc_magic(d_bh), JOURNAL_DESC_MAGIC, 8)) {
2039 if (oldest_invalid_trans_id && *oldest_invalid_trans_id
2040 && get_desc_trans_id(desc) > *oldest_invalid_trans_id) {
2041 reiserfs_debug(sb, REISERFS_DEBUG_CODE,
2042 "journal-986: transaction "
2043 "is valid returning because trans_id %d is greater than "
2044 "oldest_invalid %lu",
2045 get_desc_trans_id(desc),
2046 *oldest_invalid_trans_id);
2047 return 0;
2049 if (newest_mount_id
2050 && *newest_mount_id > get_desc_mount_id(desc)) {
2051 reiserfs_debug(sb, REISERFS_DEBUG_CODE,
2052 "journal-1087: transaction "
2053 "is valid returning because mount_id %d is less than "
2054 "newest_mount_id %lu",
2055 get_desc_mount_id(desc),
2056 *newest_mount_id);
2057 return -1;
2059 if (get_desc_trans_len(desc) > SB_JOURNAL(sb)->j_trans_max) {
2060 reiserfs_warning(sb, "journal-2018",
2061 "Bad transaction length %d "
2062 "encountered, ignoring transaction",
2063 get_desc_trans_len(desc));
2064 return -1;
2066 offset = d_bh->b_blocknr - SB_ONDISK_JOURNAL_1st_BLOCK(sb);
2068 /* ok, we have a journal description block, lets see if the transaction was valid */
2069 c_bh =
2070 journal_bread(sb,
2071 SB_ONDISK_JOURNAL_1st_BLOCK(sb) +
2072 ((offset + get_desc_trans_len(desc) +
2073 1) % SB_ONDISK_JOURNAL_SIZE(sb)));
2074 if (!c_bh)
2075 return 0;
2076 commit = (struct reiserfs_journal_commit *)c_bh->b_data;
2077 if (journal_compare_desc_commit(sb, desc, commit)) {
2078 reiserfs_debug(sb, REISERFS_DEBUG_CODE,
2079 "journal_transaction_is_valid, commit offset %ld had bad "
2080 "time %d or length %d",
2081 c_bh->b_blocknr -
2082 SB_ONDISK_JOURNAL_1st_BLOCK(sb),
2083 get_commit_trans_id(commit),
2084 get_commit_trans_len(commit));
2085 brelse(c_bh);
2086 if (oldest_invalid_trans_id) {
2087 *oldest_invalid_trans_id =
2088 get_desc_trans_id(desc);
2089 reiserfs_debug(sb, REISERFS_DEBUG_CODE,
2090 "journal-1004: "
2091 "transaction_is_valid setting oldest invalid trans_id "
2092 "to %d",
2093 get_desc_trans_id(desc));
2095 return -1;
2097 brelse(c_bh);
2098 reiserfs_debug(sb, REISERFS_DEBUG_CODE,
2099 "journal-1006: found valid "
2100 "transaction start offset %llu, len %d id %d",
2101 d_bh->b_blocknr -
2102 SB_ONDISK_JOURNAL_1st_BLOCK(sb),
2103 get_desc_trans_len(desc),
2104 get_desc_trans_id(desc));
2105 return 1;
2106 } else {
2107 return 0;
2111 static void brelse_array(struct buffer_head **heads, int num)
2113 int i;
2114 for (i = 0; i < num; i++) {
2115 brelse(heads[i]);
2120 ** given the start, and values for the oldest acceptable transactions,
2121 ** this either reads in a replays a transaction, or returns because the transaction
2122 ** is invalid, or too old.
2124 static int journal_read_transaction(struct super_block *sb,
2125 unsigned long cur_dblock,
2126 unsigned long oldest_start,
2127 unsigned int oldest_trans_id,
2128 unsigned long newest_mount_id)
2130 struct reiserfs_journal *journal = SB_JOURNAL(sb);
2131 struct reiserfs_journal_desc *desc;
2132 struct reiserfs_journal_commit *commit;
2133 unsigned int trans_id = 0;
2134 struct buffer_head *c_bh;
2135 struct buffer_head *d_bh;
2136 struct buffer_head **log_blocks = NULL;
2137 struct buffer_head **real_blocks = NULL;
2138 unsigned int trans_offset;
2139 int i;
2140 int trans_half;
2142 d_bh = journal_bread(sb, cur_dblock);
2143 if (!d_bh)
2144 return 1;
2145 desc = (struct reiserfs_journal_desc *)d_bh->b_data;
2146 trans_offset = d_bh->b_blocknr - SB_ONDISK_JOURNAL_1st_BLOCK(sb);
2147 reiserfs_debug(sb, REISERFS_DEBUG_CODE, "journal-1037: "
2148 "journal_read_transaction, offset %llu, len %d mount_id %d",
2149 d_bh->b_blocknr - SB_ONDISK_JOURNAL_1st_BLOCK(sb),
2150 get_desc_trans_len(desc), get_desc_mount_id(desc));
2151 if (get_desc_trans_id(desc) < oldest_trans_id) {
2152 reiserfs_debug(sb, REISERFS_DEBUG_CODE, "journal-1039: "
2153 "journal_read_trans skipping because %lu is too old",
2154 cur_dblock -
2155 SB_ONDISK_JOURNAL_1st_BLOCK(sb));
2156 brelse(d_bh);
2157 return 1;
2159 if (get_desc_mount_id(desc) != newest_mount_id) {
2160 reiserfs_debug(sb, REISERFS_DEBUG_CODE, "journal-1146: "
2161 "journal_read_trans skipping because %d is != "
2162 "newest_mount_id %lu", get_desc_mount_id(desc),
2163 newest_mount_id);
2164 brelse(d_bh);
2165 return 1;
2167 c_bh = journal_bread(sb, SB_ONDISK_JOURNAL_1st_BLOCK(sb) +
2168 ((trans_offset + get_desc_trans_len(desc) + 1) %
2169 SB_ONDISK_JOURNAL_SIZE(sb)));
2170 if (!c_bh) {
2171 brelse(d_bh);
2172 return 1;
2174 commit = (struct reiserfs_journal_commit *)c_bh->b_data;
2175 if (journal_compare_desc_commit(sb, desc, commit)) {
2176 reiserfs_debug(sb, REISERFS_DEBUG_CODE,
2177 "journal_read_transaction, "
2178 "commit offset %llu had bad time %d or length %d",
2179 c_bh->b_blocknr -
2180 SB_ONDISK_JOURNAL_1st_BLOCK(sb),
2181 get_commit_trans_id(commit),
2182 get_commit_trans_len(commit));
2183 brelse(c_bh);
2184 brelse(d_bh);
2185 return 1;
2188 if (bdev_read_only(sb->s_bdev)) {
2189 reiserfs_warning(sb, "clm-2076",
2190 "device is readonly, unable to replay log");
2191 brelse(c_bh);
2192 brelse(d_bh);
2193 return -EROFS;
2196 trans_id = get_desc_trans_id(desc);
2197 /* now we know we've got a good transaction, and it was inside the valid time ranges */
2198 log_blocks = kmalloc(get_desc_trans_len(desc) *
2199 sizeof(struct buffer_head *), GFP_NOFS);
2200 real_blocks = kmalloc(get_desc_trans_len(desc) *
2201 sizeof(struct buffer_head *), GFP_NOFS);
2202 if (!log_blocks || !real_blocks) {
2203 brelse(c_bh);
2204 brelse(d_bh);
2205 kfree(log_blocks);
2206 kfree(real_blocks);
2207 reiserfs_warning(sb, "journal-1169",
2208 "kmalloc failed, unable to mount FS");
2209 return -1;
2211 /* get all the buffer heads */
2212 trans_half = journal_trans_half(sb->s_blocksize);
2213 for (i = 0; i < get_desc_trans_len(desc); i++) {
2214 log_blocks[i] =
2215 journal_getblk(sb,
2216 SB_ONDISK_JOURNAL_1st_BLOCK(sb) +
2217 (trans_offset + 1 +
2218 i) % SB_ONDISK_JOURNAL_SIZE(sb));
2219 if (i < trans_half) {
2220 real_blocks[i] =
2221 sb_getblk(sb,
2222 le32_to_cpu(desc->j_realblock[i]));
2223 } else {
2224 real_blocks[i] =
2225 sb_getblk(sb,
2226 le32_to_cpu(commit->
2227 j_realblock[i - trans_half]));
2229 if (real_blocks[i]->b_blocknr > SB_BLOCK_COUNT(sb)) {
2230 reiserfs_warning(sb, "journal-1207",
2231 "REPLAY FAILURE fsck required! "
2232 "Block to replay is outside of "
2233 "filesystem");
2234 goto abort_replay;
2236 /* make sure we don't try to replay onto log or reserved area */
2237 if (is_block_in_log_or_reserved_area
2238 (sb, real_blocks[i]->b_blocknr)) {
2239 reiserfs_warning(sb, "journal-1204",
2240 "REPLAY FAILURE fsck required! "
2241 "Trying to replay onto a log block");
2242 abort_replay:
2243 brelse_array(log_blocks, i);
2244 brelse_array(real_blocks, i);
2245 brelse(c_bh);
2246 brelse(d_bh);
2247 kfree(log_blocks);
2248 kfree(real_blocks);
2249 return -1;
2252 /* read in the log blocks, memcpy to the corresponding real block */
2253 ll_rw_block(READ, get_desc_trans_len(desc), log_blocks);
2254 for (i = 0; i < get_desc_trans_len(desc); i++) {
2255 wait_on_buffer(log_blocks[i]);
2256 if (!buffer_uptodate(log_blocks[i])) {
2257 reiserfs_warning(sb, "journal-1212",
2258 "REPLAY FAILURE fsck required! "
2259 "buffer write failed");
2260 brelse_array(log_blocks + i,
2261 get_desc_trans_len(desc) - i);
2262 brelse_array(real_blocks, get_desc_trans_len(desc));
2263 brelse(c_bh);
2264 brelse(d_bh);
2265 kfree(log_blocks);
2266 kfree(real_blocks);
2267 return -1;
2269 memcpy(real_blocks[i]->b_data, log_blocks[i]->b_data,
2270 real_blocks[i]->b_size);
2271 set_buffer_uptodate(real_blocks[i]);
2272 brelse(log_blocks[i]);
2274 /* flush out the real blocks */
2275 for (i = 0; i < get_desc_trans_len(desc); i++) {
2276 set_buffer_dirty(real_blocks[i]);
2277 ll_rw_block(SWRITE, 1, real_blocks + i);
2279 for (i = 0; i < get_desc_trans_len(desc); i++) {
2280 wait_on_buffer(real_blocks[i]);
2281 if (!buffer_uptodate(real_blocks[i])) {
2282 reiserfs_warning(sb, "journal-1226",
2283 "REPLAY FAILURE, fsck required! "
2284 "buffer write failed");
2285 brelse_array(real_blocks + i,
2286 get_desc_trans_len(desc) - i);
2287 brelse(c_bh);
2288 brelse(d_bh);
2289 kfree(log_blocks);
2290 kfree(real_blocks);
2291 return -1;
2293 brelse(real_blocks[i]);
2295 cur_dblock =
2296 SB_ONDISK_JOURNAL_1st_BLOCK(sb) +
2297 ((trans_offset + get_desc_trans_len(desc) +
2298 2) % SB_ONDISK_JOURNAL_SIZE(sb));
2299 reiserfs_debug(sb, REISERFS_DEBUG_CODE,
2300 "journal-1095: setting journal " "start to offset %ld",
2301 cur_dblock - SB_ONDISK_JOURNAL_1st_BLOCK(sb));
2303 /* init starting values for the first transaction, in case this is the last transaction to be replayed. */
2304 journal->j_start = cur_dblock - SB_ONDISK_JOURNAL_1st_BLOCK(sb);
2305 journal->j_last_flush_trans_id = trans_id;
2306 journal->j_trans_id = trans_id + 1;
2307 /* check for trans_id overflow */
2308 if (journal->j_trans_id == 0)
2309 journal->j_trans_id = 10;
2310 brelse(c_bh);
2311 brelse(d_bh);
2312 kfree(log_blocks);
2313 kfree(real_blocks);
2314 return 0;
2317 /* This function reads blocks starting from block and to max_block of bufsize
2318 size (but no more than BUFNR blocks at a time). This proved to improve
2319 mounting speed on self-rebuilding raid5 arrays at least.
2320 Right now it is only used from journal code. But later we might use it
2321 from other places.
2322 Note: Do not use journal_getblk/sb_getblk functions here! */
2323 static struct buffer_head *reiserfs_breada(struct block_device *dev,
2324 b_blocknr_t block, int bufsize,
2325 b_blocknr_t max_block)
2327 struct buffer_head *bhlist[BUFNR];
2328 unsigned int blocks = BUFNR;
2329 struct buffer_head *bh;
2330 int i, j;
2332 bh = __getblk(dev, block, bufsize);
2333 if (buffer_uptodate(bh))
2334 return (bh);
2336 if (block + BUFNR > max_block) {
2337 blocks = max_block - block;
2339 bhlist[0] = bh;
2340 j = 1;
2341 for (i = 1; i < blocks; i++) {
2342 bh = __getblk(dev, block + i, bufsize);
2343 if (buffer_uptodate(bh)) {
2344 brelse(bh);
2345 break;
2346 } else
2347 bhlist[j++] = bh;
2349 ll_rw_block(READ, j, bhlist);
2350 for (i = 1; i < j; i++)
2351 brelse(bhlist[i]);
2352 bh = bhlist[0];
2353 wait_on_buffer(bh);
2354 if (buffer_uptodate(bh))
2355 return bh;
2356 brelse(bh);
2357 return NULL;
2361 ** read and replay the log
2362 ** on a clean unmount, the journal header's next unflushed pointer will be to an invalid
2363 ** transaction. This tests that before finding all the transactions in the log, which makes normal mount times fast.
2365 ** After a crash, this starts with the next unflushed transaction, and replays until it finds one too old, or invalid.
2367 ** On exit, it sets things up so the first transaction will work correctly.
2369 static int journal_read(struct super_block *sb)
2371 struct reiserfs_journal *journal = SB_JOURNAL(sb);
2372 struct reiserfs_journal_desc *desc;
2373 unsigned int oldest_trans_id = 0;
2374 unsigned int oldest_invalid_trans_id = 0;
2375 time_t start;
2376 unsigned long oldest_start = 0;
2377 unsigned long cur_dblock = 0;
2378 unsigned long newest_mount_id = 9;
2379 struct buffer_head *d_bh;
2380 struct reiserfs_journal_header *jh;
2381 int valid_journal_header = 0;
2382 int replay_count = 0;
2383 int continue_replay = 1;
2384 int ret;
2385 char b[BDEVNAME_SIZE];
2387 cur_dblock = SB_ONDISK_JOURNAL_1st_BLOCK(sb);
2388 reiserfs_info(sb, "checking transaction log (%s)\n",
2389 bdevname(journal->j_dev_bd, b));
2390 start = get_seconds();
2392 /* step 1, read in the journal header block. Check the transaction it says
2393 ** is the first unflushed, and if that transaction is not valid,
2394 ** replay is done
2396 journal->j_header_bh = journal_bread(sb,
2397 SB_ONDISK_JOURNAL_1st_BLOCK(sb)
2398 + SB_ONDISK_JOURNAL_SIZE(sb));
2399 if (!journal->j_header_bh) {
2400 return 1;
2402 jh = (struct reiserfs_journal_header *)(journal->j_header_bh->b_data);
2403 if (le32_to_cpu(jh->j_first_unflushed_offset) <
2404 SB_ONDISK_JOURNAL_SIZE(sb)
2405 && le32_to_cpu(jh->j_last_flush_trans_id) > 0) {
2406 oldest_start =
2407 SB_ONDISK_JOURNAL_1st_BLOCK(sb) +
2408 le32_to_cpu(jh->j_first_unflushed_offset);
2409 oldest_trans_id = le32_to_cpu(jh->j_last_flush_trans_id) + 1;
2410 newest_mount_id = le32_to_cpu(jh->j_mount_id);
2411 reiserfs_debug(sb, REISERFS_DEBUG_CODE,
2412 "journal-1153: found in "
2413 "header: first_unflushed_offset %d, last_flushed_trans_id "
2414 "%lu", le32_to_cpu(jh->j_first_unflushed_offset),
2415 le32_to_cpu(jh->j_last_flush_trans_id));
2416 valid_journal_header = 1;
2418 /* now, we try to read the first unflushed offset. If it is not valid,
2419 ** there is nothing more we can do, and it makes no sense to read
2420 ** through the whole log.
2422 d_bh =
2423 journal_bread(sb,
2424 SB_ONDISK_JOURNAL_1st_BLOCK(sb) +
2425 le32_to_cpu(jh->j_first_unflushed_offset));
2426 ret = journal_transaction_is_valid(sb, d_bh, NULL, NULL);
2427 if (!ret) {
2428 continue_replay = 0;
2430 brelse(d_bh);
2431 goto start_log_replay;
2434 /* ok, there are transactions that need to be replayed. start with the first log block, find
2435 ** all the valid transactions, and pick out the oldest.
2437 while (continue_replay
2438 && cur_dblock <
2439 (SB_ONDISK_JOURNAL_1st_BLOCK(sb) +
2440 SB_ONDISK_JOURNAL_SIZE(sb))) {
2441 /* Note that it is required for blocksize of primary fs device and journal
2442 device to be the same */
2443 d_bh =
2444 reiserfs_breada(journal->j_dev_bd, cur_dblock,
2445 sb->s_blocksize,
2446 SB_ONDISK_JOURNAL_1st_BLOCK(sb) +
2447 SB_ONDISK_JOURNAL_SIZE(sb));
2448 ret =
2449 journal_transaction_is_valid(sb, d_bh,
2450 &oldest_invalid_trans_id,
2451 &newest_mount_id);
2452 if (ret == 1) {
2453 desc = (struct reiserfs_journal_desc *)d_bh->b_data;
2454 if (oldest_start == 0) { /* init all oldest_ values */
2455 oldest_trans_id = get_desc_trans_id(desc);
2456 oldest_start = d_bh->b_blocknr;
2457 newest_mount_id = get_desc_mount_id(desc);
2458 reiserfs_debug(sb, REISERFS_DEBUG_CODE,
2459 "journal-1179: Setting "
2460 "oldest_start to offset %llu, trans_id %lu",
2461 oldest_start -
2462 SB_ONDISK_JOURNAL_1st_BLOCK
2463 (sb), oldest_trans_id);
2464 } else if (oldest_trans_id > get_desc_trans_id(desc)) {
2465 /* one we just read was older */
2466 oldest_trans_id = get_desc_trans_id(desc);
2467 oldest_start = d_bh->b_blocknr;
2468 reiserfs_debug(sb, REISERFS_DEBUG_CODE,
2469 "journal-1180: Resetting "
2470 "oldest_start to offset %lu, trans_id %lu",
2471 oldest_start -
2472 SB_ONDISK_JOURNAL_1st_BLOCK
2473 (sb), oldest_trans_id);
2475 if (newest_mount_id < get_desc_mount_id(desc)) {
2476 newest_mount_id = get_desc_mount_id(desc);
2477 reiserfs_debug(sb, REISERFS_DEBUG_CODE,
2478 "journal-1299: Setting "
2479 "newest_mount_id to %d",
2480 get_desc_mount_id(desc));
2482 cur_dblock += get_desc_trans_len(desc) + 2;
2483 } else {
2484 cur_dblock++;
2486 brelse(d_bh);
2489 start_log_replay:
2490 cur_dblock = oldest_start;
2491 if (oldest_trans_id) {
2492 reiserfs_debug(sb, REISERFS_DEBUG_CODE,
2493 "journal-1206: Starting replay "
2494 "from offset %llu, trans_id %lu",
2495 cur_dblock - SB_ONDISK_JOURNAL_1st_BLOCK(sb),
2496 oldest_trans_id);
2499 replay_count = 0;
2500 while (continue_replay && oldest_trans_id > 0) {
2501 ret =
2502 journal_read_transaction(sb, cur_dblock, oldest_start,
2503 oldest_trans_id, newest_mount_id);
2504 if (ret < 0) {
2505 return ret;
2506 } else if (ret != 0) {
2507 break;
2509 cur_dblock =
2510 SB_ONDISK_JOURNAL_1st_BLOCK(sb) + journal->j_start;
2511 replay_count++;
2512 if (cur_dblock == oldest_start)
2513 break;
2516 if (oldest_trans_id == 0) {
2517 reiserfs_debug(sb, REISERFS_DEBUG_CODE,
2518 "journal-1225: No valid " "transactions found");
2520 /* j_start does not get set correctly if we don't replay any transactions.
2521 ** if we had a valid journal_header, set j_start to the first unflushed transaction value,
2522 ** copy the trans_id from the header
2524 if (valid_journal_header && replay_count == 0) {
2525 journal->j_start = le32_to_cpu(jh->j_first_unflushed_offset);
2526 journal->j_trans_id =
2527 le32_to_cpu(jh->j_last_flush_trans_id) + 1;
2528 /* check for trans_id overflow */
2529 if (journal->j_trans_id == 0)
2530 journal->j_trans_id = 10;
2531 journal->j_last_flush_trans_id =
2532 le32_to_cpu(jh->j_last_flush_trans_id);
2533 journal->j_mount_id = le32_to_cpu(jh->j_mount_id) + 1;
2534 } else {
2535 journal->j_mount_id = newest_mount_id + 1;
2537 reiserfs_debug(sb, REISERFS_DEBUG_CODE, "journal-1299: Setting "
2538 "newest_mount_id to %lu", journal->j_mount_id);
2539 journal->j_first_unflushed_offset = journal->j_start;
2540 if (replay_count > 0) {
2541 reiserfs_info(sb,
2542 "replayed %d transactions in %lu seconds\n",
2543 replay_count, get_seconds() - start);
2545 if (!bdev_read_only(sb->s_bdev) &&
2546 _update_journal_header_block(sb, journal->j_start,
2547 journal->j_last_flush_trans_id)) {
2548 /* replay failed, caller must call free_journal_ram and abort
2549 ** the mount
2551 return -1;
2553 return 0;
2556 static struct reiserfs_journal_list *alloc_journal_list(struct super_block *s)
2558 struct reiserfs_journal_list *jl;
2559 jl = kzalloc(sizeof(struct reiserfs_journal_list),
2560 GFP_NOFS | __GFP_NOFAIL);
2561 INIT_LIST_HEAD(&jl->j_list);
2562 INIT_LIST_HEAD(&jl->j_working_list);
2563 INIT_LIST_HEAD(&jl->j_tail_bh_list);
2564 INIT_LIST_HEAD(&jl->j_bh_list);
2565 mutex_init(&jl->j_commit_mutex);
2566 SB_JOURNAL(s)->j_num_lists++;
2567 get_journal_list(jl);
2568 return jl;
2571 static void journal_list_init(struct super_block *sb)
2573 SB_JOURNAL(sb)->j_current_jl = alloc_journal_list(sb);
2576 static int release_journal_dev(struct super_block *super,
2577 struct reiserfs_journal *journal)
2579 int result;
2581 result = 0;
2583 if (journal->j_dev_bd != NULL) {
2584 if (journal->j_dev_bd->bd_dev != super->s_dev)
2585 bd_release(journal->j_dev_bd);
2586 result = blkdev_put(journal->j_dev_bd, journal->j_dev_mode);
2587 journal->j_dev_bd = NULL;
2590 if (result != 0) {
2591 reiserfs_warning(super, "sh-457",
2592 "Cannot release journal device: %i", result);
2594 return result;
2597 static int journal_init_dev(struct super_block *super,
2598 struct reiserfs_journal *journal,
2599 const char *jdev_name)
2601 int result;
2602 dev_t jdev;
2603 fmode_t blkdev_mode = FMODE_READ | FMODE_WRITE;
2604 char b[BDEVNAME_SIZE];
2606 result = 0;
2608 journal->j_dev_bd = NULL;
2609 jdev = SB_ONDISK_JOURNAL_DEVICE(super) ?
2610 new_decode_dev(SB_ONDISK_JOURNAL_DEVICE(super)) : super->s_dev;
2612 if (bdev_read_only(super->s_bdev))
2613 blkdev_mode = FMODE_READ;
2615 /* there is no "jdev" option and journal is on separate device */
2616 if ((!jdev_name || !jdev_name[0])) {
2617 journal->j_dev_bd = open_by_devnum(jdev, blkdev_mode);
2618 journal->j_dev_mode = blkdev_mode;
2619 if (IS_ERR(journal->j_dev_bd)) {
2620 result = PTR_ERR(journal->j_dev_bd);
2621 journal->j_dev_bd = NULL;
2622 reiserfs_warning(super, "sh-458",
2623 "cannot init journal device '%s': %i",
2624 __bdevname(jdev, b), result);
2625 return result;
2626 } else if (jdev != super->s_dev) {
2627 result = bd_claim(journal->j_dev_bd, journal);
2628 if (result) {
2629 blkdev_put(journal->j_dev_bd, blkdev_mode);
2630 return result;
2633 set_blocksize(journal->j_dev_bd, super->s_blocksize);
2636 return 0;
2639 journal->j_dev_mode = blkdev_mode;
2640 journal->j_dev_bd = open_bdev_exclusive(jdev_name,
2641 blkdev_mode, journal);
2642 if (IS_ERR(journal->j_dev_bd)) {
2643 result = PTR_ERR(journal->j_dev_bd);
2644 journal->j_dev_bd = NULL;
2645 reiserfs_warning(super,
2646 "journal_init_dev: Cannot open '%s': %i",
2647 jdev_name, result);
2648 return result;
2651 set_blocksize(journal->j_dev_bd, super->s_blocksize);
2652 reiserfs_info(super,
2653 "journal_init_dev: journal device: %s\n",
2654 bdevname(journal->j_dev_bd, b));
2655 return 0;
2659 * When creating/tuning a file system user can assign some
2660 * journal params within boundaries which depend on the ratio
2661 * blocksize/standard_blocksize.
2663 * For blocks >= standard_blocksize transaction size should
2664 * be not less then JOURNAL_TRANS_MIN_DEFAULT, and not more
2665 * then JOURNAL_TRANS_MAX_DEFAULT.
2667 * For blocks < standard_blocksize these boundaries should be
2668 * decreased proportionally.
2670 #define REISERFS_STANDARD_BLKSIZE (4096)
2672 static int check_advise_trans_params(struct super_block *sb,
2673 struct reiserfs_journal *journal)
2675 if (journal->j_trans_max) {
2676 /* Non-default journal params.
2677 Do sanity check for them. */
2678 int ratio = 1;
2679 if (sb->s_blocksize < REISERFS_STANDARD_BLKSIZE)
2680 ratio = REISERFS_STANDARD_BLKSIZE / sb->s_blocksize;
2682 if (journal->j_trans_max > JOURNAL_TRANS_MAX_DEFAULT / ratio ||
2683 journal->j_trans_max < JOURNAL_TRANS_MIN_DEFAULT / ratio ||
2684 SB_ONDISK_JOURNAL_SIZE(sb) / journal->j_trans_max <
2685 JOURNAL_MIN_RATIO) {
2686 reiserfs_warning(sb, "sh-462",
2687 "bad transaction max size (%u). "
2688 "FSCK?", journal->j_trans_max);
2689 return 1;
2691 if (journal->j_max_batch != (journal->j_trans_max) *
2692 JOURNAL_MAX_BATCH_DEFAULT/JOURNAL_TRANS_MAX_DEFAULT) {
2693 reiserfs_warning(sb, "sh-463",
2694 "bad transaction max batch (%u). "
2695 "FSCK?", journal->j_max_batch);
2696 return 1;
2698 } else {
2699 /* Default journal params.
2700 The file system was created by old version
2701 of mkreiserfs, so some fields contain zeros,
2702 and we need to advise proper values for them */
2703 if (sb->s_blocksize != REISERFS_STANDARD_BLKSIZE) {
2704 reiserfs_warning(sb, "sh-464", "bad blocksize (%u)",
2705 sb->s_blocksize);
2706 return 1;
2708 journal->j_trans_max = JOURNAL_TRANS_MAX_DEFAULT;
2709 journal->j_max_batch = JOURNAL_MAX_BATCH_DEFAULT;
2710 journal->j_max_commit_age = JOURNAL_MAX_COMMIT_AGE;
2712 return 0;
2716 ** must be called once on fs mount. calls journal_read for you
2718 int journal_init(struct super_block *sb, const char *j_dev_name,
2719 int old_format, unsigned int commit_max_age)
2721 int num_cnodes = SB_ONDISK_JOURNAL_SIZE(sb) * 2;
2722 struct buffer_head *bhjh;
2723 struct reiserfs_super_block *rs;
2724 struct reiserfs_journal_header *jh;
2725 struct reiserfs_journal *journal;
2726 struct reiserfs_journal_list *jl;
2727 char b[BDEVNAME_SIZE];
2729 journal = SB_JOURNAL(sb) = vmalloc(sizeof(struct reiserfs_journal));
2730 if (!journal) {
2731 reiserfs_warning(sb, "journal-1256",
2732 "unable to get memory for journal structure");
2733 return 1;
2735 memset(journal, 0, sizeof(struct reiserfs_journal));
2736 INIT_LIST_HEAD(&journal->j_bitmap_nodes);
2737 INIT_LIST_HEAD(&journal->j_prealloc_list);
2738 INIT_LIST_HEAD(&journal->j_working_list);
2739 INIT_LIST_HEAD(&journal->j_journal_list);
2740 journal->j_persistent_trans = 0;
2741 if (reiserfs_allocate_list_bitmaps(sb,
2742 journal->j_list_bitmap,
2743 reiserfs_bmap_count(sb)))
2744 goto free_and_return;
2745 allocate_bitmap_nodes(sb);
2747 /* reserved for journal area support */
2748 SB_JOURNAL_1st_RESERVED_BLOCK(sb) = (old_format ?
2749 REISERFS_OLD_DISK_OFFSET_IN_BYTES
2750 / sb->s_blocksize +
2751 reiserfs_bmap_count(sb) +
2753 REISERFS_DISK_OFFSET_IN_BYTES /
2754 sb->s_blocksize + 2);
2756 /* Sanity check to see is the standard journal fitting withing first bitmap
2757 (actual for small blocksizes) */
2758 if (!SB_ONDISK_JOURNAL_DEVICE(sb) &&
2759 (SB_JOURNAL_1st_RESERVED_BLOCK(sb) +
2760 SB_ONDISK_JOURNAL_SIZE(sb) > sb->s_blocksize * 8)) {
2761 reiserfs_warning(sb, "journal-1393",
2762 "journal does not fit for area addressed "
2763 "by first of bitmap blocks. It starts at "
2764 "%u and its size is %u. Block size %ld",
2765 SB_JOURNAL_1st_RESERVED_BLOCK(sb),
2766 SB_ONDISK_JOURNAL_SIZE(sb),
2767 sb->s_blocksize);
2768 goto free_and_return;
2771 if (journal_init_dev(sb, journal, j_dev_name) != 0) {
2772 reiserfs_warning(sb, "sh-462",
2773 "unable to initialize jornal device");
2774 goto free_and_return;
2777 rs = SB_DISK_SUPER_BLOCK(sb);
2779 /* read journal header */
2780 bhjh = journal_bread(sb,
2781 SB_ONDISK_JOURNAL_1st_BLOCK(sb) +
2782 SB_ONDISK_JOURNAL_SIZE(sb));
2783 if (!bhjh) {
2784 reiserfs_warning(sb, "sh-459",
2785 "unable to read journal header");
2786 goto free_and_return;
2788 jh = (struct reiserfs_journal_header *)(bhjh->b_data);
2790 /* make sure that journal matches to the super block */
2791 if (is_reiserfs_jr(rs)
2792 && (le32_to_cpu(jh->jh_journal.jp_journal_magic) !=
2793 sb_jp_journal_magic(rs))) {
2794 reiserfs_warning(sb, "sh-460",
2795 "journal header magic %x (device %s) does "
2796 "not match to magic found in super block %x",
2797 jh->jh_journal.jp_journal_magic,
2798 bdevname(journal->j_dev_bd, b),
2799 sb_jp_journal_magic(rs));
2800 brelse(bhjh);
2801 goto free_and_return;
2804 journal->j_trans_max = le32_to_cpu(jh->jh_journal.jp_journal_trans_max);
2805 journal->j_max_batch = le32_to_cpu(jh->jh_journal.jp_journal_max_batch);
2806 journal->j_max_commit_age =
2807 le32_to_cpu(jh->jh_journal.jp_journal_max_commit_age);
2808 journal->j_max_trans_age = JOURNAL_MAX_TRANS_AGE;
2810 if (check_advise_trans_params(sb, journal) != 0)
2811 goto free_and_return;
2812 journal->j_default_max_commit_age = journal->j_max_commit_age;
2814 if (commit_max_age != 0) {
2815 journal->j_max_commit_age = commit_max_age;
2816 journal->j_max_trans_age = commit_max_age;
2819 reiserfs_info(sb, "journal params: device %s, size %u, "
2820 "journal first block %u, max trans len %u, max batch %u, "
2821 "max commit age %u, max trans age %u\n",
2822 bdevname(journal->j_dev_bd, b),
2823 SB_ONDISK_JOURNAL_SIZE(sb),
2824 SB_ONDISK_JOURNAL_1st_BLOCK(sb),
2825 journal->j_trans_max,
2826 journal->j_max_batch,
2827 journal->j_max_commit_age, journal->j_max_trans_age);
2829 brelse(bhjh);
2831 journal->j_list_bitmap_index = 0;
2832 journal_list_init(sb);
2834 memset(journal->j_list_hash_table, 0,
2835 JOURNAL_HASH_SIZE * sizeof(struct reiserfs_journal_cnode *));
2837 INIT_LIST_HEAD(&journal->j_dirty_buffers);
2838 spin_lock_init(&journal->j_dirty_buffers_lock);
2840 journal->j_start = 0;
2841 journal->j_len = 0;
2842 journal->j_len_alloc = 0;
2843 atomic_set(&(journal->j_wcount), 0);
2844 atomic_set(&(journal->j_async_throttle), 0);
2845 journal->j_bcount = 0;
2846 journal->j_trans_start_time = 0;
2847 journal->j_last = NULL;
2848 journal->j_first = NULL;
2849 init_waitqueue_head(&(journal->j_join_wait));
2850 mutex_init(&journal->j_mutex);
2851 mutex_init(&journal->j_flush_mutex);
2853 journal->j_trans_id = 10;
2854 journal->j_mount_id = 10;
2855 journal->j_state = 0;
2856 atomic_set(&(journal->j_jlock), 0);
2857 journal->j_cnode_free_list = allocate_cnodes(num_cnodes);
2858 journal->j_cnode_free_orig = journal->j_cnode_free_list;
2859 journal->j_cnode_free = journal->j_cnode_free_list ? num_cnodes : 0;
2860 journal->j_cnode_used = 0;
2861 journal->j_must_wait = 0;
2863 if (journal->j_cnode_free == 0) {
2864 reiserfs_warning(sb, "journal-2004", "Journal cnode memory "
2865 "allocation failed (%ld bytes). Journal is "
2866 "too large for available memory. Usually "
2867 "this is due to a journal that is too large.",
2868 sizeof (struct reiserfs_journal_cnode) * num_cnodes);
2869 goto free_and_return;
2872 init_journal_hash(sb);
2873 jl = journal->j_current_jl;
2874 jl->j_list_bitmap = get_list_bitmap(sb, jl);
2875 if (!jl->j_list_bitmap) {
2876 reiserfs_warning(sb, "journal-2005",
2877 "get_list_bitmap failed for journal list 0");
2878 goto free_and_return;
2880 if (journal_read(sb) < 0) {
2881 reiserfs_warning(sb, "reiserfs-2006",
2882 "Replay Failure, unable to mount");
2883 goto free_and_return;
2886 reiserfs_mounted_fs_count++;
2887 if (reiserfs_mounted_fs_count <= 1)
2888 commit_wq = create_workqueue("reiserfs");
2890 INIT_DELAYED_WORK(&journal->j_work, flush_async_commits);
2891 journal->j_work_sb = sb;
2892 return 0;
2893 free_and_return:
2894 free_journal_ram(sb);
2895 return 1;
2899 ** test for a polite end of the current transaction. Used by file_write, and should
2900 ** be used by delete to make sure they don't write more than can fit inside a single
2901 ** transaction
2903 int journal_transaction_should_end(struct reiserfs_transaction_handle *th,
2904 int new_alloc)
2906 struct reiserfs_journal *journal = SB_JOURNAL(th->t_super);
2907 time_t now = get_seconds();
2908 /* cannot restart while nested */
2909 BUG_ON(!th->t_trans_id);
2910 if (th->t_refcount > 1)
2911 return 0;
2912 if (journal->j_must_wait > 0 ||
2913 (journal->j_len_alloc + new_alloc) >= journal->j_max_batch ||
2914 atomic_read(&(journal->j_jlock)) ||
2915 (now - journal->j_trans_start_time) > journal->j_max_trans_age ||
2916 journal->j_cnode_free < (journal->j_trans_max * 3)) {
2917 return 1;
2919 /* protected by the BKL here */
2920 journal->j_len_alloc += new_alloc;
2921 th->t_blocks_allocated += new_alloc ;
2922 return 0;
2925 /* this must be called inside a transaction, and requires the
2926 ** kernel_lock to be held
2928 void reiserfs_block_writes(struct reiserfs_transaction_handle *th)
2930 struct reiserfs_journal *journal = SB_JOURNAL(th->t_super);
2931 BUG_ON(!th->t_trans_id);
2932 journal->j_must_wait = 1;
2933 set_bit(J_WRITERS_BLOCKED, &journal->j_state);
2934 return;
2937 /* this must be called without a transaction started, and does not
2938 ** require BKL
2940 void reiserfs_allow_writes(struct super_block *s)
2942 struct reiserfs_journal *journal = SB_JOURNAL(s);
2943 clear_bit(J_WRITERS_BLOCKED, &journal->j_state);
2944 wake_up(&journal->j_join_wait);
2947 /* this must be called without a transaction started, and does not
2948 ** require BKL
2950 void reiserfs_wait_on_write_block(struct super_block *s)
2952 struct reiserfs_journal *journal = SB_JOURNAL(s);
2953 wait_event(journal->j_join_wait,
2954 !test_bit(J_WRITERS_BLOCKED, &journal->j_state));
2957 static void queue_log_writer(struct super_block *s)
2959 wait_queue_t wait;
2960 struct reiserfs_journal *journal = SB_JOURNAL(s);
2961 set_bit(J_WRITERS_QUEUED, &journal->j_state);
2964 * we don't want to use wait_event here because
2965 * we only want to wait once.
2967 init_waitqueue_entry(&wait, current);
2968 add_wait_queue(&journal->j_join_wait, &wait);
2969 set_current_state(TASK_UNINTERRUPTIBLE);
2970 if (test_bit(J_WRITERS_QUEUED, &journal->j_state))
2971 schedule();
2972 __set_current_state(TASK_RUNNING);
2973 remove_wait_queue(&journal->j_join_wait, &wait);
2976 static void wake_queued_writers(struct super_block *s)
2978 struct reiserfs_journal *journal = SB_JOURNAL(s);
2979 if (test_and_clear_bit(J_WRITERS_QUEUED, &journal->j_state))
2980 wake_up(&journal->j_join_wait);
2983 static void let_transaction_grow(struct super_block *sb, unsigned int trans_id)
2985 struct reiserfs_journal *journal = SB_JOURNAL(sb);
2986 unsigned long bcount = journal->j_bcount;
2987 while (1) {
2988 schedule_timeout_uninterruptible(1);
2989 journal->j_current_jl->j_state |= LIST_COMMIT_PENDING;
2990 while ((atomic_read(&journal->j_wcount) > 0 ||
2991 atomic_read(&journal->j_jlock)) &&
2992 journal->j_trans_id == trans_id) {
2993 queue_log_writer(sb);
2995 if (journal->j_trans_id != trans_id)
2996 break;
2997 if (bcount == journal->j_bcount)
2998 break;
2999 bcount = journal->j_bcount;
3003 /* join == true if you must join an existing transaction.
3004 ** join == false if you can deal with waiting for others to finish
3006 ** this will block until the transaction is joinable. send the number of blocks you
3007 ** expect to use in nblocks.
3009 static int do_journal_begin_r(struct reiserfs_transaction_handle *th,
3010 struct super_block *sb, unsigned long nblocks,
3011 int join)
3013 time_t now = get_seconds();
3014 unsigned int old_trans_id;
3015 struct reiserfs_journal *journal = SB_JOURNAL(sb);
3016 struct reiserfs_transaction_handle myth;
3017 int sched_count = 0;
3018 int retval;
3020 reiserfs_check_lock_depth(sb, "journal_begin");
3021 BUG_ON(nblocks > journal->j_trans_max);
3023 PROC_INFO_INC(sb, journal.journal_being);
3024 /* set here for journal_join */
3025 th->t_refcount = 1;
3026 th->t_super = sb;
3028 relock:
3029 lock_journal(sb);
3030 if (join != JBEGIN_ABORT && reiserfs_is_journal_aborted(journal)) {
3031 unlock_journal(sb);
3032 retval = journal->j_errno;
3033 goto out_fail;
3035 journal->j_bcount++;
3037 if (test_bit(J_WRITERS_BLOCKED, &journal->j_state)) {
3038 unlock_journal(sb);
3039 reiserfs_wait_on_write_block(sb);
3040 PROC_INFO_INC(sb, journal.journal_relock_writers);
3041 goto relock;
3043 now = get_seconds();
3045 /* if there is no room in the journal OR
3046 ** if this transaction is too old, and we weren't called joinable, wait for it to finish before beginning
3047 ** we don't sleep if there aren't other writers
3050 if ((!join && journal->j_must_wait > 0) ||
3051 (!join
3052 && (journal->j_len_alloc + nblocks + 2) >= journal->j_max_batch)
3053 || (!join && atomic_read(&journal->j_wcount) > 0
3054 && journal->j_trans_start_time > 0
3055 && (now - journal->j_trans_start_time) >
3056 journal->j_max_trans_age) || (!join
3057 && atomic_read(&journal->j_jlock))
3058 || (!join && journal->j_cnode_free < (journal->j_trans_max * 3))) {
3060 old_trans_id = journal->j_trans_id;
3061 unlock_journal(sb); /* allow others to finish this transaction */
3063 if (!join && (journal->j_len_alloc + nblocks + 2) >=
3064 journal->j_max_batch &&
3065 ((journal->j_len + nblocks + 2) * 100) <
3066 (journal->j_len_alloc * 75)) {
3067 if (atomic_read(&journal->j_wcount) > 10) {
3068 sched_count++;
3069 queue_log_writer(sb);
3070 goto relock;
3073 /* don't mess with joining the transaction if all we have to do is
3074 * wait for someone else to do a commit
3076 if (atomic_read(&journal->j_jlock)) {
3077 while (journal->j_trans_id == old_trans_id &&
3078 atomic_read(&journal->j_jlock)) {
3079 queue_log_writer(sb);
3081 goto relock;
3083 retval = journal_join(&myth, sb, 1);
3084 if (retval)
3085 goto out_fail;
3087 /* someone might have ended the transaction while we joined */
3088 if (old_trans_id != journal->j_trans_id) {
3089 retval = do_journal_end(&myth, sb, 1, 0);
3090 } else {
3091 retval = do_journal_end(&myth, sb, 1, COMMIT_NOW);
3094 if (retval)
3095 goto out_fail;
3097 PROC_INFO_INC(sb, journal.journal_relock_wcount);
3098 goto relock;
3100 /* we are the first writer, set trans_id */
3101 if (journal->j_trans_start_time == 0) {
3102 journal->j_trans_start_time = get_seconds();
3104 atomic_inc(&(journal->j_wcount));
3105 journal->j_len_alloc += nblocks;
3106 th->t_blocks_logged = 0;
3107 th->t_blocks_allocated = nblocks;
3108 th->t_trans_id = journal->j_trans_id;
3109 unlock_journal(sb);
3110 INIT_LIST_HEAD(&th->t_list);
3111 get_fs_excl();
3112 return 0;
3114 out_fail:
3115 memset(th, 0, sizeof(*th));
3116 /* Re-set th->t_super, so we can properly keep track of how many
3117 * persistent transactions there are. We need to do this so if this
3118 * call is part of a failed restart_transaction, we can free it later */
3119 th->t_super = sb;
3120 return retval;
3123 struct reiserfs_transaction_handle *reiserfs_persistent_transaction(struct
3124 super_block
3126 int nblocks)
3128 int ret;
3129 struct reiserfs_transaction_handle *th;
3131 /* if we're nesting into an existing transaction. It will be
3132 ** persistent on its own
3134 if (reiserfs_transaction_running(s)) {
3135 th = current->journal_info;
3136 th->t_refcount++;
3137 BUG_ON(th->t_refcount < 2);
3139 return th;
3141 th = kmalloc(sizeof(struct reiserfs_transaction_handle), GFP_NOFS);
3142 if (!th)
3143 return NULL;
3144 ret = journal_begin(th, s, nblocks);
3145 if (ret) {
3146 kfree(th);
3147 return NULL;
3150 SB_JOURNAL(s)->j_persistent_trans++;
3151 return th;
3154 int reiserfs_end_persistent_transaction(struct reiserfs_transaction_handle *th)
3156 struct super_block *s = th->t_super;
3157 int ret = 0;
3158 if (th->t_trans_id)
3159 ret = journal_end(th, th->t_super, th->t_blocks_allocated);
3160 else
3161 ret = -EIO;
3162 if (th->t_refcount == 0) {
3163 SB_JOURNAL(s)->j_persistent_trans--;
3164 kfree(th);
3166 return ret;
3169 static int journal_join(struct reiserfs_transaction_handle *th,
3170 struct super_block *sb, unsigned long nblocks)
3172 struct reiserfs_transaction_handle *cur_th = current->journal_info;
3174 /* this keeps do_journal_end from NULLing out the current->journal_info
3175 ** pointer
3177 th->t_handle_save = cur_th;
3178 BUG_ON(cur_th && cur_th->t_refcount > 1);
3179 return do_journal_begin_r(th, sb, nblocks, JBEGIN_JOIN);
3182 int journal_join_abort(struct reiserfs_transaction_handle *th,
3183 struct super_block *sb, unsigned long nblocks)
3185 struct reiserfs_transaction_handle *cur_th = current->journal_info;
3187 /* this keeps do_journal_end from NULLing out the current->journal_info
3188 ** pointer
3190 th->t_handle_save = cur_th;
3191 BUG_ON(cur_th && cur_th->t_refcount > 1);
3192 return do_journal_begin_r(th, sb, nblocks, JBEGIN_ABORT);
3195 int journal_begin(struct reiserfs_transaction_handle *th,
3196 struct super_block *sb, unsigned long nblocks)
3198 struct reiserfs_transaction_handle *cur_th = current->journal_info;
3199 int ret;
3201 th->t_handle_save = NULL;
3202 if (cur_th) {
3203 /* we are nesting into the current transaction */
3204 if (cur_th->t_super == sb) {
3205 BUG_ON(!cur_th->t_refcount);
3206 cur_th->t_refcount++;
3207 memcpy(th, cur_th, sizeof(*th));
3208 if (th->t_refcount <= 1)
3209 reiserfs_warning(sb, "reiserfs-2005",
3210 "BAD: refcount <= 1, but "
3211 "journal_info != 0");
3212 return 0;
3213 } else {
3214 /* we've ended up with a handle from a different filesystem.
3215 ** save it and restore on journal_end. This should never
3216 ** really happen...
3218 reiserfs_warning(sb, "clm-2100",
3219 "nesting info a different FS");
3220 th->t_handle_save = current->journal_info;
3221 current->journal_info = th;
3223 } else {
3224 current->journal_info = th;
3226 ret = do_journal_begin_r(th, sb, nblocks, JBEGIN_REG);
3227 BUG_ON(current->journal_info != th);
3229 /* I guess this boils down to being the reciprocal of clm-2100 above.
3230 * If do_journal_begin_r fails, we need to put it back, since journal_end
3231 * won't be called to do it. */
3232 if (ret)
3233 current->journal_info = th->t_handle_save;
3234 else
3235 BUG_ON(!th->t_refcount);
3237 return ret;
3241 ** puts bh into the current transaction. If it was already there, reorders removes the
3242 ** old pointers from the hash, and puts new ones in (to make sure replay happen in the right order).
3244 ** if it was dirty, cleans and files onto the clean list. I can't let it be dirty again until the
3245 ** transaction is committed.
3247 ** if j_len, is bigger than j_len_alloc, it pushes j_len_alloc to 10 + j_len.
3249 int journal_mark_dirty(struct reiserfs_transaction_handle *th,
3250 struct super_block *sb, struct buffer_head *bh)
3252 struct reiserfs_journal *journal = SB_JOURNAL(sb);
3253 struct reiserfs_journal_cnode *cn = NULL;
3254 int count_already_incd = 0;
3255 int prepared = 0;
3256 BUG_ON(!th->t_trans_id);
3258 PROC_INFO_INC(sb, journal.mark_dirty);
3259 if (th->t_trans_id != journal->j_trans_id) {
3260 reiserfs_panic(th->t_super, "journal-1577",
3261 "handle trans id %ld != current trans id %ld",
3262 th->t_trans_id, journal->j_trans_id);
3265 sb->s_dirt = 1;
3267 prepared = test_clear_buffer_journal_prepared(bh);
3268 clear_buffer_journal_restore_dirty(bh);
3269 /* already in this transaction, we are done */
3270 if (buffer_journaled(bh)) {
3271 PROC_INFO_INC(sb, journal.mark_dirty_already);
3272 return 0;
3275 /* this must be turned into a panic instead of a warning. We can't allow
3276 ** a dirty or journal_dirty or locked buffer to be logged, as some changes
3277 ** could get to disk too early. NOT GOOD.
3279 if (!prepared || buffer_dirty(bh)) {
3280 reiserfs_warning(sb, "journal-1777",
3281 "buffer %llu bad state "
3282 "%cPREPARED %cLOCKED %cDIRTY %cJDIRTY_WAIT",
3283 (unsigned long long)bh->b_blocknr,
3284 prepared ? ' ' : '!',
3285 buffer_locked(bh) ? ' ' : '!',
3286 buffer_dirty(bh) ? ' ' : '!',
3287 buffer_journal_dirty(bh) ? ' ' : '!');
3290 if (atomic_read(&(journal->j_wcount)) <= 0) {
3291 reiserfs_warning(sb, "journal-1409",
3292 "returning because j_wcount was %d",
3293 atomic_read(&(journal->j_wcount)));
3294 return 1;
3296 /* this error means I've screwed up, and we've overflowed the transaction.
3297 ** Nothing can be done here, except make the FS readonly or panic.
3299 if (journal->j_len >= journal->j_trans_max) {
3300 reiserfs_panic(th->t_super, "journal-1413",
3301 "j_len (%lu) is too big",
3302 journal->j_len);
3305 if (buffer_journal_dirty(bh)) {
3306 count_already_incd = 1;
3307 PROC_INFO_INC(sb, journal.mark_dirty_notjournal);
3308 clear_buffer_journal_dirty(bh);
3311 if (journal->j_len > journal->j_len_alloc) {
3312 journal->j_len_alloc = journal->j_len + JOURNAL_PER_BALANCE_CNT;
3315 set_buffer_journaled(bh);
3317 /* now put this guy on the end */
3318 if (!cn) {
3319 cn = get_cnode(sb);
3320 if (!cn) {
3321 reiserfs_panic(sb, "journal-4", "get_cnode failed!");
3324 if (th->t_blocks_logged == th->t_blocks_allocated) {
3325 th->t_blocks_allocated += JOURNAL_PER_BALANCE_CNT;
3326 journal->j_len_alloc += JOURNAL_PER_BALANCE_CNT;
3328 th->t_blocks_logged++;
3329 journal->j_len++;
3331 cn->bh = bh;
3332 cn->blocknr = bh->b_blocknr;
3333 cn->sb = sb;
3334 cn->jlist = NULL;
3335 insert_journal_hash(journal->j_hash_table, cn);
3336 if (!count_already_incd) {
3337 get_bh(bh);
3340 cn->next = NULL;
3341 cn->prev = journal->j_last;
3342 cn->bh = bh;
3343 if (journal->j_last) {
3344 journal->j_last->next = cn;
3345 journal->j_last = cn;
3346 } else {
3347 journal->j_first = cn;
3348 journal->j_last = cn;
3350 return 0;
3353 int journal_end(struct reiserfs_transaction_handle *th,
3354 struct super_block *sb, unsigned long nblocks)
3356 if (!current->journal_info && th->t_refcount > 1)
3357 reiserfs_warning(sb, "REISER-NESTING",
3358 "th NULL, refcount %d", th->t_refcount);
3360 if (!th->t_trans_id) {
3361 WARN_ON(1);
3362 return -EIO;
3365 th->t_refcount--;
3366 if (th->t_refcount > 0) {
3367 struct reiserfs_transaction_handle *cur_th =
3368 current->journal_info;
3370 /* we aren't allowed to close a nested transaction on a different
3371 ** filesystem from the one in the task struct
3373 BUG_ON(cur_th->t_super != th->t_super);
3375 if (th != cur_th) {
3376 memcpy(current->journal_info, th, sizeof(*th));
3377 th->t_trans_id = 0;
3379 return 0;
3380 } else {
3381 return do_journal_end(th, sb, nblocks, 0);
3385 /* removes from the current transaction, relsing and descrementing any counters.
3386 ** also files the removed buffer directly onto the clean list
3388 ** called by journal_mark_freed when a block has been deleted
3390 ** returns 1 if it cleaned and relsed the buffer. 0 otherwise
3392 static int remove_from_transaction(struct super_block *sb,
3393 b_blocknr_t blocknr, int already_cleaned)
3395 struct buffer_head *bh;
3396 struct reiserfs_journal_cnode *cn;
3397 struct reiserfs_journal *journal = SB_JOURNAL(sb);
3398 int ret = 0;
3400 cn = get_journal_hash_dev(sb, journal->j_hash_table, blocknr);
3401 if (!cn || !cn->bh) {
3402 return ret;
3404 bh = cn->bh;
3405 if (cn->prev) {
3406 cn->prev->next = cn->next;
3408 if (cn->next) {
3409 cn->next->prev = cn->prev;
3411 if (cn == journal->j_first) {
3412 journal->j_first = cn->next;
3414 if (cn == journal->j_last) {
3415 journal->j_last = cn->prev;
3417 if (bh)
3418 remove_journal_hash(sb, journal->j_hash_table, NULL,
3419 bh->b_blocknr, 0);
3420 clear_buffer_journaled(bh); /* don't log this one */
3422 if (!already_cleaned) {
3423 clear_buffer_journal_dirty(bh);
3424 clear_buffer_dirty(bh);
3425 clear_buffer_journal_test(bh);
3426 put_bh(bh);
3427 if (atomic_read(&(bh->b_count)) < 0) {
3428 reiserfs_warning(sb, "journal-1752",
3429 "b_count < 0");
3431 ret = 1;
3433 journal->j_len--;
3434 journal->j_len_alloc--;
3435 free_cnode(sb, cn);
3436 return ret;
3440 ** for any cnode in a journal list, it can only be dirtied of all the
3441 ** transactions that include it are committed to disk.
3442 ** this checks through each transaction, and returns 1 if you are allowed to dirty,
3443 ** and 0 if you aren't
3445 ** it is called by dirty_journal_list, which is called after flush_commit_list has gotten all the log
3446 ** blocks for a given transaction on disk
3449 static int can_dirty(struct reiserfs_journal_cnode *cn)
3451 struct super_block *sb = cn->sb;
3452 b_blocknr_t blocknr = cn->blocknr;
3453 struct reiserfs_journal_cnode *cur = cn->hprev;
3454 int can_dirty = 1;
3456 /* first test hprev. These are all newer than cn, so any node here
3457 ** with the same block number and dev means this node can't be sent
3458 ** to disk right now.
3460 while (cur && can_dirty) {
3461 if (cur->jlist && cur->bh && cur->blocknr && cur->sb == sb &&
3462 cur->blocknr == blocknr) {
3463 can_dirty = 0;
3465 cur = cur->hprev;
3467 /* then test hnext. These are all older than cn. As long as they
3468 ** are committed to the log, it is safe to write cn to disk
3470 cur = cn->hnext;
3471 while (cur && can_dirty) {
3472 if (cur->jlist && cur->jlist->j_len > 0 &&
3473 atomic_read(&(cur->jlist->j_commit_left)) > 0 && cur->bh &&
3474 cur->blocknr && cur->sb == sb && cur->blocknr == blocknr) {
3475 can_dirty = 0;
3477 cur = cur->hnext;
3479 return can_dirty;
3482 /* syncs the commit blocks, but does not force the real buffers to disk
3483 ** will wait until the current transaction is done/committed before returning
3485 int journal_end_sync(struct reiserfs_transaction_handle *th,
3486 struct super_block *sb, unsigned long nblocks)
3488 struct reiserfs_journal *journal = SB_JOURNAL(sb);
3490 BUG_ON(!th->t_trans_id);
3491 /* you can sync while nested, very, very bad */
3492 BUG_ON(th->t_refcount > 1);
3493 if (journal->j_len == 0) {
3494 reiserfs_prepare_for_journal(sb, SB_BUFFER_WITH_SB(sb),
3496 journal_mark_dirty(th, sb, SB_BUFFER_WITH_SB(sb));
3498 return do_journal_end(th, sb, nblocks, COMMIT_NOW | WAIT);
3502 ** writeback the pending async commits to disk
3504 static void flush_async_commits(struct work_struct *work)
3506 struct reiserfs_journal *journal =
3507 container_of(work, struct reiserfs_journal, j_work.work);
3508 struct super_block *sb = journal->j_work_sb;
3509 struct reiserfs_journal_list *jl;
3510 struct list_head *entry;
3512 lock_kernel();
3513 if (!list_empty(&journal->j_journal_list)) {
3514 /* last entry is the youngest, commit it and you get everything */
3515 entry = journal->j_journal_list.prev;
3516 jl = JOURNAL_LIST_ENTRY(entry);
3517 flush_commit_list(sb, jl, 1);
3519 unlock_kernel();
3523 ** flushes any old transactions to disk
3524 ** ends the current transaction if it is too old
3526 int reiserfs_flush_old_commits(struct super_block *sb)
3528 time_t now;
3529 struct reiserfs_transaction_handle th;
3530 struct reiserfs_journal *journal = SB_JOURNAL(sb);
3532 now = get_seconds();
3533 /* safety check so we don't flush while we are replaying the log during
3534 * mount
3536 if (list_empty(&journal->j_journal_list)) {
3537 return 0;
3540 /* check the current transaction. If there are no writers, and it is
3541 * too old, finish it, and force the commit blocks to disk
3543 if (atomic_read(&journal->j_wcount) <= 0 &&
3544 journal->j_trans_start_time > 0 &&
3545 journal->j_len > 0 &&
3546 (now - journal->j_trans_start_time) > journal->j_max_trans_age) {
3547 if (!journal_join(&th, sb, 1)) {
3548 reiserfs_prepare_for_journal(sb,
3549 SB_BUFFER_WITH_SB(sb),
3551 journal_mark_dirty(&th, sb,
3552 SB_BUFFER_WITH_SB(sb));
3554 /* we're only being called from kreiserfsd, it makes no sense to do
3555 ** an async commit so that kreiserfsd can do it later
3557 do_journal_end(&th, sb, 1, COMMIT_NOW | WAIT);
3560 return sb->s_dirt;
3564 ** returns 0 if do_journal_end should return right away, returns 1 if do_journal_end should finish the commit
3566 ** if the current transaction is too old, but still has writers, this will wait on j_join_wait until all
3567 ** the writers are done. By the time it wakes up, the transaction it was called has already ended, so it just
3568 ** flushes the commit list and returns 0.
3570 ** Won't batch when flush or commit_now is set. Also won't batch when others are waiting on j_join_wait.
3572 ** Note, we can't allow the journal_end to proceed while there are still writers in the log.
3574 static int check_journal_end(struct reiserfs_transaction_handle *th,
3575 struct super_block *sb, unsigned long nblocks,
3576 int flags)
3579 time_t now;
3580 int flush = flags & FLUSH_ALL;
3581 int commit_now = flags & COMMIT_NOW;
3582 int wait_on_commit = flags & WAIT;
3583 struct reiserfs_journal_list *jl;
3584 struct reiserfs_journal *journal = SB_JOURNAL(sb);
3586 BUG_ON(!th->t_trans_id);
3588 if (th->t_trans_id != journal->j_trans_id) {
3589 reiserfs_panic(th->t_super, "journal-1577",
3590 "handle trans id %ld != current trans id %ld",
3591 th->t_trans_id, journal->j_trans_id);
3594 journal->j_len_alloc -= (th->t_blocks_allocated - th->t_blocks_logged);
3595 if (atomic_read(&(journal->j_wcount)) > 0) { /* <= 0 is allowed. unmounting might not call begin */
3596 atomic_dec(&(journal->j_wcount));
3599 /* BUG, deal with case where j_len is 0, but people previously freed blocks need to be released
3600 ** will be dealt with by next transaction that actually writes something, but should be taken
3601 ** care of in this trans
3603 BUG_ON(journal->j_len == 0);
3605 /* if wcount > 0, and we are called to with flush or commit_now,
3606 ** we wait on j_join_wait. We will wake up when the last writer has
3607 ** finished the transaction, and started it on its way to the disk.
3608 ** Then, we flush the commit or journal list, and just return 0
3609 ** because the rest of journal end was already done for this transaction.
3611 if (atomic_read(&(journal->j_wcount)) > 0) {
3612 if (flush || commit_now) {
3613 unsigned trans_id;
3615 jl = journal->j_current_jl;
3616 trans_id = jl->j_trans_id;
3617 if (wait_on_commit)
3618 jl->j_state |= LIST_COMMIT_PENDING;
3619 atomic_set(&(journal->j_jlock), 1);
3620 if (flush) {
3621 journal->j_next_full_flush = 1;
3623 unlock_journal(sb);
3625 /* sleep while the current transaction is still j_jlocked */
3626 while (journal->j_trans_id == trans_id) {
3627 if (atomic_read(&journal->j_jlock)) {
3628 queue_log_writer(sb);
3629 } else {
3630 lock_journal(sb);
3631 if (journal->j_trans_id == trans_id) {
3632 atomic_set(&(journal->j_jlock),
3635 unlock_journal(sb);
3638 BUG_ON(journal->j_trans_id == trans_id);
3640 if (commit_now
3641 && journal_list_still_alive(sb, trans_id)
3642 && wait_on_commit) {
3643 flush_commit_list(sb, jl, 1);
3645 return 0;
3647 unlock_journal(sb);
3648 return 0;
3651 /* deal with old transactions where we are the last writers */
3652 now = get_seconds();
3653 if ((now - journal->j_trans_start_time) > journal->j_max_trans_age) {
3654 commit_now = 1;
3655 journal->j_next_async_flush = 1;
3657 /* don't batch when someone is waiting on j_join_wait */
3658 /* don't batch when syncing the commit or flushing the whole trans */
3659 if (!(journal->j_must_wait > 0) && !(atomic_read(&(journal->j_jlock)))
3660 && !flush && !commit_now && (journal->j_len < journal->j_max_batch)
3661 && journal->j_len_alloc < journal->j_max_batch
3662 && journal->j_cnode_free > (journal->j_trans_max * 3)) {
3663 journal->j_bcount++;
3664 unlock_journal(sb);
3665 return 0;
3668 if (journal->j_start > SB_ONDISK_JOURNAL_SIZE(sb)) {
3669 reiserfs_panic(sb, "journal-003",
3670 "j_start (%ld) is too high",
3671 journal->j_start);
3673 return 1;
3677 ** Does all the work that makes deleting blocks safe.
3678 ** when deleting a block mark BH_JNew, just remove it from the current transaction, clean it's buffer_head and move on.
3680 ** otherwise:
3681 ** set a bit for the block in the journal bitmap. That will prevent it from being allocated for unformatted nodes
3682 ** before this transaction has finished.
3684 ** mark any cnodes for this block as BLOCK_FREED, and clear their bh pointers. That will prevent any old transactions with
3685 ** this block from trying to flush to the real location. Since we aren't removing the cnode from the journal_list_hash,
3686 ** the block can't be reallocated yet.
3688 ** Then remove it from the current transaction, decrementing any counters and filing it on the clean list.
3690 int journal_mark_freed(struct reiserfs_transaction_handle *th,
3691 struct super_block *sb, b_blocknr_t blocknr)
3693 struct reiserfs_journal *journal = SB_JOURNAL(sb);
3694 struct reiserfs_journal_cnode *cn = NULL;
3695 struct buffer_head *bh = NULL;
3696 struct reiserfs_list_bitmap *jb = NULL;
3697 int cleaned = 0;
3698 BUG_ON(!th->t_trans_id);
3700 cn = get_journal_hash_dev(sb, journal->j_hash_table, blocknr);
3701 if (cn && cn->bh) {
3702 bh = cn->bh;
3703 get_bh(bh);
3705 /* if it is journal new, we just remove it from this transaction */
3706 if (bh && buffer_journal_new(bh)) {
3707 clear_buffer_journal_new(bh);
3708 clear_prepared_bits(bh);
3709 reiserfs_clean_and_file_buffer(bh);
3710 cleaned = remove_from_transaction(sb, blocknr, cleaned);
3711 } else {
3712 /* set the bit for this block in the journal bitmap for this transaction */
3713 jb = journal->j_current_jl->j_list_bitmap;
3714 if (!jb) {
3715 reiserfs_panic(sb, "journal-1702",
3716 "journal_list_bitmap is NULL");
3718 set_bit_in_list_bitmap(sb, blocknr, jb);
3720 /* Note, the entire while loop is not allowed to schedule. */
3722 if (bh) {
3723 clear_prepared_bits(bh);
3724 reiserfs_clean_and_file_buffer(bh);
3726 cleaned = remove_from_transaction(sb, blocknr, cleaned);
3728 /* find all older transactions with this block, make sure they don't try to write it out */
3729 cn = get_journal_hash_dev(sb, journal->j_list_hash_table,
3730 blocknr);
3731 while (cn) {
3732 if (sb == cn->sb && blocknr == cn->blocknr) {
3733 set_bit(BLOCK_FREED, &cn->state);
3734 if (cn->bh) {
3735 if (!cleaned) {
3736 /* remove_from_transaction will brelse the buffer if it was
3737 ** in the current trans
3739 clear_buffer_journal_dirty(cn->
3740 bh);
3741 clear_buffer_dirty(cn->bh);
3742 clear_buffer_journal_test(cn->
3743 bh);
3744 cleaned = 1;
3745 put_bh(cn->bh);
3746 if (atomic_read
3747 (&(cn->bh->b_count)) < 0) {
3748 reiserfs_warning(sb,
3749 "journal-2138",
3750 "cn->bh->b_count < 0");
3753 if (cn->jlist) { /* since we are clearing the bh, we MUST dec nonzerolen */
3754 atomic_dec(&
3755 (cn->jlist->
3756 j_nonzerolen));
3758 cn->bh = NULL;
3761 cn = cn->hnext;
3765 if (bh)
3766 release_buffer_page(bh); /* get_hash grabs the buffer */
3767 return 0;
3770 void reiserfs_update_inode_transaction(struct inode *inode)
3772 struct reiserfs_journal *journal = SB_JOURNAL(inode->i_sb);
3773 REISERFS_I(inode)->i_jl = journal->j_current_jl;
3774 REISERFS_I(inode)->i_trans_id = journal->j_trans_id;
3778 * returns -1 on error, 0 if no commits/barriers were done and 1
3779 * if a transaction was actually committed and the barrier was done
3781 static int __commit_trans_jl(struct inode *inode, unsigned long id,
3782 struct reiserfs_journal_list *jl)
3784 struct reiserfs_transaction_handle th;
3785 struct super_block *sb = inode->i_sb;
3786 struct reiserfs_journal *journal = SB_JOURNAL(sb);
3787 int ret = 0;
3789 /* is it from the current transaction, or from an unknown transaction? */
3790 if (id == journal->j_trans_id) {
3791 jl = journal->j_current_jl;
3792 /* try to let other writers come in and grow this transaction */
3793 let_transaction_grow(sb, id);
3794 if (journal->j_trans_id != id) {
3795 goto flush_commit_only;
3798 ret = journal_begin(&th, sb, 1);
3799 if (ret)
3800 return ret;
3802 /* someone might have ended this transaction while we joined */
3803 if (journal->j_trans_id != id) {
3804 reiserfs_prepare_for_journal(sb, SB_BUFFER_WITH_SB(sb),
3806 journal_mark_dirty(&th, sb, SB_BUFFER_WITH_SB(sb));
3807 ret = journal_end(&th, sb, 1);
3808 goto flush_commit_only;
3811 ret = journal_end_sync(&th, sb, 1);
3812 if (!ret)
3813 ret = 1;
3815 } else {
3816 /* this gets tricky, we have to make sure the journal list in
3817 * the inode still exists. We know the list is still around
3818 * if we've got a larger transaction id than the oldest list
3820 flush_commit_only:
3821 if (journal_list_still_alive(inode->i_sb, id)) {
3823 * we only set ret to 1 when we know for sure
3824 * the barrier hasn't been started yet on the commit
3825 * block.
3827 if (atomic_read(&jl->j_commit_left) > 1)
3828 ret = 1;
3829 flush_commit_list(sb, jl, 1);
3830 if (journal->j_errno)
3831 ret = journal->j_errno;
3834 /* otherwise the list is gone, and long since committed */
3835 return ret;
3838 int reiserfs_commit_for_inode(struct inode *inode)
3840 unsigned int id = REISERFS_I(inode)->i_trans_id;
3841 struct reiserfs_journal_list *jl = REISERFS_I(inode)->i_jl;
3843 /* for the whole inode, assume unset id means it was
3844 * changed in the current transaction. More conservative
3846 if (!id || !jl) {
3847 reiserfs_update_inode_transaction(inode);
3848 id = REISERFS_I(inode)->i_trans_id;
3849 /* jl will be updated in __commit_trans_jl */
3852 return __commit_trans_jl(inode, id, jl);
3855 void reiserfs_restore_prepared_buffer(struct super_block *sb,
3856 struct buffer_head *bh)
3858 struct reiserfs_journal *journal = SB_JOURNAL(sb);
3859 PROC_INFO_INC(sb, journal.restore_prepared);
3860 if (!bh) {
3861 return;
3863 if (test_clear_buffer_journal_restore_dirty(bh) &&
3864 buffer_journal_dirty(bh)) {
3865 struct reiserfs_journal_cnode *cn;
3866 cn = get_journal_hash_dev(sb,
3867 journal->j_list_hash_table,
3868 bh->b_blocknr);
3869 if (cn && can_dirty(cn)) {
3870 set_buffer_journal_test(bh);
3871 mark_buffer_dirty(bh);
3874 clear_buffer_journal_prepared(bh);
3877 extern struct tree_balance *cur_tb;
3879 ** before we can change a metadata block, we have to make sure it won't
3880 ** be written to disk while we are altering it. So, we must:
3881 ** clean it
3882 ** wait on it.
3885 int reiserfs_prepare_for_journal(struct super_block *sb,
3886 struct buffer_head *bh, int wait)
3888 PROC_INFO_INC(sb, journal.prepare);
3890 if (!trylock_buffer(bh)) {
3891 if (!wait)
3892 return 0;
3893 lock_buffer(bh);
3895 set_buffer_journal_prepared(bh);
3896 if (test_clear_buffer_dirty(bh) && buffer_journal_dirty(bh)) {
3897 clear_buffer_journal_test(bh);
3898 set_buffer_journal_restore_dirty(bh);
3900 unlock_buffer(bh);
3901 return 1;
3904 static void flush_old_journal_lists(struct super_block *s)
3906 struct reiserfs_journal *journal = SB_JOURNAL(s);
3907 struct reiserfs_journal_list *jl;
3908 struct list_head *entry;
3909 time_t now = get_seconds();
3911 while (!list_empty(&journal->j_journal_list)) {
3912 entry = journal->j_journal_list.next;
3913 jl = JOURNAL_LIST_ENTRY(entry);
3914 /* this check should always be run, to send old lists to disk */
3915 if (jl->j_timestamp < (now - (JOURNAL_MAX_TRANS_AGE * 4)) &&
3916 atomic_read(&jl->j_commit_left) == 0 &&
3917 test_transaction(s, jl)) {
3918 flush_used_journal_lists(s, jl);
3919 } else {
3920 break;
3926 ** long and ugly. If flush, will not return until all commit
3927 ** blocks and all real buffers in the trans are on disk.
3928 ** If no_async, won't return until all commit blocks are on disk.
3930 ** keep reading, there are comments as you go along
3932 ** If the journal is aborted, we just clean up. Things like flushing
3933 ** journal lists, etc just won't happen.
3935 static int do_journal_end(struct reiserfs_transaction_handle *th,
3936 struct super_block *sb, unsigned long nblocks,
3937 int flags)
3939 struct reiserfs_journal *journal = SB_JOURNAL(sb);
3940 struct reiserfs_journal_cnode *cn, *next, *jl_cn;
3941 struct reiserfs_journal_cnode *last_cn = NULL;
3942 struct reiserfs_journal_desc *desc;
3943 struct reiserfs_journal_commit *commit;
3944 struct buffer_head *c_bh; /* commit bh */
3945 struct buffer_head *d_bh; /* desc bh */
3946 int cur_write_start = 0; /* start index of current log write */
3947 int old_start;
3948 int i;
3949 int flush;
3950 int wait_on_commit;
3951 struct reiserfs_journal_list *jl, *temp_jl;
3952 struct list_head *entry, *safe;
3953 unsigned long jindex;
3954 unsigned int commit_trans_id;
3955 int trans_half;
3957 BUG_ON(th->t_refcount > 1);
3958 BUG_ON(!th->t_trans_id);
3960 /* protect flush_older_commits from doing mistakes if the
3961 transaction ID counter gets overflowed. */
3962 if (th->t_trans_id == ~0U)
3963 flags |= FLUSH_ALL | COMMIT_NOW | WAIT;
3964 flush = flags & FLUSH_ALL;
3965 wait_on_commit = flags & WAIT;
3967 put_fs_excl();
3968 current->journal_info = th->t_handle_save;
3969 reiserfs_check_lock_depth(sb, "journal end");
3970 if (journal->j_len == 0) {
3971 reiserfs_prepare_for_journal(sb, SB_BUFFER_WITH_SB(sb),
3973 journal_mark_dirty(th, sb, SB_BUFFER_WITH_SB(sb));
3976 lock_journal(sb);
3977 if (journal->j_next_full_flush) {
3978 flags |= FLUSH_ALL;
3979 flush = 1;
3981 if (journal->j_next_async_flush) {
3982 flags |= COMMIT_NOW | WAIT;
3983 wait_on_commit = 1;
3986 /* check_journal_end locks the journal, and unlocks if it does not return 1
3987 ** it tells us if we should continue with the journal_end, or just return
3989 if (!check_journal_end(th, sb, nblocks, flags)) {
3990 sb->s_dirt = 1;
3991 wake_queued_writers(sb);
3992 reiserfs_async_progress_wait(sb);
3993 goto out;
3996 /* check_journal_end might set these, check again */
3997 if (journal->j_next_full_flush) {
3998 flush = 1;
4002 ** j must wait means we have to flush the log blocks, and the real blocks for
4003 ** this transaction
4005 if (journal->j_must_wait > 0) {
4006 flush = 1;
4008 #ifdef REISERFS_PREALLOCATE
4009 /* quota ops might need to nest, setup the journal_info pointer for them
4010 * and raise the refcount so that it is > 0. */
4011 current->journal_info = th;
4012 th->t_refcount++;
4013 reiserfs_discard_all_prealloc(th); /* it should not involve new blocks into
4014 * the transaction */
4015 th->t_refcount--;
4016 current->journal_info = th->t_handle_save;
4017 #endif
4019 /* setup description block */
4020 d_bh =
4021 journal_getblk(sb,
4022 SB_ONDISK_JOURNAL_1st_BLOCK(sb) +
4023 journal->j_start);
4024 set_buffer_uptodate(d_bh);
4025 desc = (struct reiserfs_journal_desc *)(d_bh)->b_data;
4026 memset(d_bh->b_data, 0, d_bh->b_size);
4027 memcpy(get_journal_desc_magic(d_bh), JOURNAL_DESC_MAGIC, 8);
4028 set_desc_trans_id(desc, journal->j_trans_id);
4030 /* setup commit block. Don't write (keep it clean too) this one until after everyone else is written */
4031 c_bh = journal_getblk(sb, SB_ONDISK_JOURNAL_1st_BLOCK(sb) +
4032 ((journal->j_start + journal->j_len +
4033 1) % SB_ONDISK_JOURNAL_SIZE(sb)));
4034 commit = (struct reiserfs_journal_commit *)c_bh->b_data;
4035 memset(c_bh->b_data, 0, c_bh->b_size);
4036 set_commit_trans_id(commit, journal->j_trans_id);
4037 set_buffer_uptodate(c_bh);
4039 /* init this journal list */
4040 jl = journal->j_current_jl;
4042 /* we lock the commit before doing anything because
4043 * we want to make sure nobody tries to run flush_commit_list until
4044 * the new transaction is fully setup, and we've already flushed the
4045 * ordered bh list
4047 mutex_lock(&jl->j_commit_mutex);
4049 /* save the transaction id in case we need to commit it later */
4050 commit_trans_id = jl->j_trans_id;
4052 atomic_set(&jl->j_older_commits_done, 0);
4053 jl->j_trans_id = journal->j_trans_id;
4054 jl->j_timestamp = journal->j_trans_start_time;
4055 jl->j_commit_bh = c_bh;
4056 jl->j_start = journal->j_start;
4057 jl->j_len = journal->j_len;
4058 atomic_set(&jl->j_nonzerolen, journal->j_len);
4059 atomic_set(&jl->j_commit_left, journal->j_len + 2);
4060 jl->j_realblock = NULL;
4062 /* The ENTIRE FOR LOOP MUST not cause schedule to occur.
4063 ** for each real block, add it to the journal list hash,
4064 ** copy into real block index array in the commit or desc block
4066 trans_half = journal_trans_half(sb->s_blocksize);
4067 for (i = 0, cn = journal->j_first; cn; cn = cn->next, i++) {
4068 if (buffer_journaled(cn->bh)) {
4069 jl_cn = get_cnode(sb);
4070 if (!jl_cn) {
4071 reiserfs_panic(sb, "journal-1676",
4072 "get_cnode returned NULL");
4074 if (i == 0) {
4075 jl->j_realblock = jl_cn;
4077 jl_cn->prev = last_cn;
4078 jl_cn->next = NULL;
4079 if (last_cn) {
4080 last_cn->next = jl_cn;
4082 last_cn = jl_cn;
4083 /* make sure the block we are trying to log is not a block
4084 of journal or reserved area */
4086 if (is_block_in_log_or_reserved_area
4087 (sb, cn->bh->b_blocknr)) {
4088 reiserfs_panic(sb, "journal-2332",
4089 "Trying to log block %lu, "
4090 "which is a log block",
4091 cn->bh->b_blocknr);
4093 jl_cn->blocknr = cn->bh->b_blocknr;
4094 jl_cn->state = 0;
4095 jl_cn->sb = sb;
4096 jl_cn->bh = cn->bh;
4097 jl_cn->jlist = jl;
4098 insert_journal_hash(journal->j_list_hash_table, jl_cn);
4099 if (i < trans_half) {
4100 desc->j_realblock[i] =
4101 cpu_to_le32(cn->bh->b_blocknr);
4102 } else {
4103 commit->j_realblock[i - trans_half] =
4104 cpu_to_le32(cn->bh->b_blocknr);
4106 } else {
4107 i--;
4110 set_desc_trans_len(desc, journal->j_len);
4111 set_desc_mount_id(desc, journal->j_mount_id);
4112 set_desc_trans_id(desc, journal->j_trans_id);
4113 set_commit_trans_len(commit, journal->j_len);
4115 /* special check in case all buffers in the journal were marked for not logging */
4116 BUG_ON(journal->j_len == 0);
4118 /* we're about to dirty all the log blocks, mark the description block
4119 * dirty now too. Don't mark the commit block dirty until all the
4120 * others are on disk
4122 mark_buffer_dirty(d_bh);
4124 /* first data block is j_start + 1, so add one to cur_write_start wherever you use it */
4125 cur_write_start = journal->j_start;
4126 cn = journal->j_first;
4127 jindex = 1; /* start at one so we don't get the desc again */
4128 while (cn) {
4129 clear_buffer_journal_new(cn->bh);
4130 /* copy all the real blocks into log area. dirty log blocks */
4131 if (buffer_journaled(cn->bh)) {
4132 struct buffer_head *tmp_bh;
4133 char *addr;
4134 struct page *page;
4135 tmp_bh =
4136 journal_getblk(sb,
4137 SB_ONDISK_JOURNAL_1st_BLOCK(sb) +
4138 ((cur_write_start +
4139 jindex) %
4140 SB_ONDISK_JOURNAL_SIZE(sb)));
4141 set_buffer_uptodate(tmp_bh);
4142 page = cn->bh->b_page;
4143 addr = kmap(page);
4144 memcpy(tmp_bh->b_data,
4145 addr + offset_in_page(cn->bh->b_data),
4146 cn->bh->b_size);
4147 kunmap(page);
4148 mark_buffer_dirty(tmp_bh);
4149 jindex++;
4150 set_buffer_journal_dirty(cn->bh);
4151 clear_buffer_journaled(cn->bh);
4152 } else {
4153 /* JDirty cleared sometime during transaction. don't log this one */
4154 reiserfs_warning(sb, "journal-2048",
4155 "BAD, buffer in journal hash, "
4156 "but not JDirty!");
4157 brelse(cn->bh);
4159 next = cn->next;
4160 free_cnode(sb, cn);
4161 cn = next;
4162 cond_resched();
4165 /* we are done with both the c_bh and d_bh, but
4166 ** c_bh must be written after all other commit blocks,
4167 ** so we dirty/relse c_bh in flush_commit_list, with commit_left <= 1.
4170 journal->j_current_jl = alloc_journal_list(sb);
4172 /* now it is safe to insert this transaction on the main list */
4173 list_add_tail(&jl->j_list, &journal->j_journal_list);
4174 list_add_tail(&jl->j_working_list, &journal->j_working_list);
4175 journal->j_num_work_lists++;
4177 /* reset journal values for the next transaction */
4178 old_start = journal->j_start;
4179 journal->j_start =
4180 (journal->j_start + journal->j_len +
4181 2) % SB_ONDISK_JOURNAL_SIZE(sb);
4182 atomic_set(&(journal->j_wcount), 0);
4183 journal->j_bcount = 0;
4184 journal->j_last = NULL;
4185 journal->j_first = NULL;
4186 journal->j_len = 0;
4187 journal->j_trans_start_time = 0;
4188 /* check for trans_id overflow */
4189 if (++journal->j_trans_id == 0)
4190 journal->j_trans_id = 10;
4191 journal->j_current_jl->j_trans_id = journal->j_trans_id;
4192 journal->j_must_wait = 0;
4193 journal->j_len_alloc = 0;
4194 journal->j_next_full_flush = 0;
4195 journal->j_next_async_flush = 0;
4196 init_journal_hash(sb);
4198 // make sure reiserfs_add_jh sees the new current_jl before we
4199 // write out the tails
4200 smp_mb();
4202 /* tail conversion targets have to hit the disk before we end the
4203 * transaction. Otherwise a later transaction might repack the tail
4204 * before this transaction commits, leaving the data block unflushed and
4205 * clean, if we crash before the later transaction commits, the data block
4206 * is lost.
4208 if (!list_empty(&jl->j_tail_bh_list)) {
4209 unlock_kernel();
4210 write_ordered_buffers(&journal->j_dirty_buffers_lock,
4211 journal, jl, &jl->j_tail_bh_list);
4212 lock_kernel();
4214 BUG_ON(!list_empty(&jl->j_tail_bh_list));
4215 mutex_unlock(&jl->j_commit_mutex);
4217 /* honor the flush wishes from the caller, simple commits can
4218 ** be done outside the journal lock, they are done below
4220 ** if we don't flush the commit list right now, we put it into
4221 ** the work queue so the people waiting on the async progress work
4222 ** queue don't wait for this proc to flush journal lists and such.
4224 if (flush) {
4225 flush_commit_list(sb, jl, 1);
4226 flush_journal_list(sb, jl, 1);
4227 } else if (!(jl->j_state & LIST_COMMIT_PENDING))
4228 queue_delayed_work(commit_wq, &journal->j_work, HZ / 10);
4230 /* if the next transaction has any chance of wrapping, flush
4231 ** transactions that might get overwritten. If any journal lists are very
4232 ** old flush them as well.
4234 first_jl:
4235 list_for_each_safe(entry, safe, &journal->j_journal_list) {
4236 temp_jl = JOURNAL_LIST_ENTRY(entry);
4237 if (journal->j_start <= temp_jl->j_start) {
4238 if ((journal->j_start + journal->j_trans_max + 1) >=
4239 temp_jl->j_start) {
4240 flush_used_journal_lists(sb, temp_jl);
4241 goto first_jl;
4242 } else if ((journal->j_start +
4243 journal->j_trans_max + 1) <
4244 SB_ONDISK_JOURNAL_SIZE(sb)) {
4245 /* if we don't cross into the next transaction and we don't
4246 * wrap, there is no way we can overlap any later transactions
4247 * break now
4249 break;
4251 } else if ((journal->j_start +
4252 journal->j_trans_max + 1) >
4253 SB_ONDISK_JOURNAL_SIZE(sb)) {
4254 if (((journal->j_start + journal->j_trans_max + 1) %
4255 SB_ONDISK_JOURNAL_SIZE(sb)) >=
4256 temp_jl->j_start) {
4257 flush_used_journal_lists(sb, temp_jl);
4258 goto first_jl;
4259 } else {
4260 /* we don't overlap anything from out start to the end of the
4261 * log, and our wrapped portion doesn't overlap anything at
4262 * the start of the log. We can break
4264 break;
4268 flush_old_journal_lists(sb);
4270 journal->j_current_jl->j_list_bitmap =
4271 get_list_bitmap(sb, journal->j_current_jl);
4273 if (!(journal->j_current_jl->j_list_bitmap)) {
4274 reiserfs_panic(sb, "journal-1996",
4275 "could not get a list bitmap");
4278 atomic_set(&(journal->j_jlock), 0);
4279 unlock_journal(sb);
4280 /* wake up any body waiting to join. */
4281 clear_bit(J_WRITERS_QUEUED, &journal->j_state);
4282 wake_up(&(journal->j_join_wait));
4284 if (!flush && wait_on_commit &&
4285 journal_list_still_alive(sb, commit_trans_id)) {
4286 flush_commit_list(sb, jl, 1);
4288 out:
4289 reiserfs_check_lock_depth(sb, "journal end2");
4291 memset(th, 0, sizeof(*th));
4292 /* Re-set th->t_super, so we can properly keep track of how many
4293 * persistent transactions there are. We need to do this so if this
4294 * call is part of a failed restart_transaction, we can free it later */
4295 th->t_super = sb;
4297 return journal->j_errno;
4300 /* Send the file system read only and refuse new transactions */
4301 void reiserfs_abort_journal(struct super_block *sb, int errno)
4303 struct reiserfs_journal *journal = SB_JOURNAL(sb);
4304 if (test_bit(J_ABORTED, &journal->j_state))
4305 return;
4307 if (!journal->j_errno)
4308 journal->j_errno = errno;
4310 sb->s_flags |= MS_RDONLY;
4311 set_bit(J_ABORTED, &journal->j_state);
4313 #ifdef CONFIG_REISERFS_CHECK
4314 dump_stack();
4315 #endif