ocfs2: Change the recovery map to an array of node numbers.
[linux-2.6/linux-2.6-openrd.git] / fs / ocfs2 / journal.c
blobca4c0ea5a4cd66314c7796b9f25bd29b8b802306
1 /* -*- mode: c; c-basic-offset: 8; -*-
2 * vim: noexpandtab sw=8 ts=8 sts=0:
4 * journal.c
6 * Defines functions of journalling api
8 * Copyright (C) 2003, 2004 Oracle. All rights reserved.
10 * This program is free software; you can redistribute it and/or
11 * modify it under the terms of the GNU General Public
12 * License as published by the Free Software Foundation; either
13 * version 2 of the License, or (at your option) any later version.
15 * This program is distributed in the hope that it will be useful,
16 * but WITHOUT ANY WARRANTY; without even the implied warranty of
17 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
18 * General Public License for more details.
20 * You should have received a copy of the GNU General Public
21 * License along with this program; if not, write to the
22 * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
23 * Boston, MA 021110-1307, USA.
26 #include <linux/fs.h>
27 #include <linux/types.h>
28 #include <linux/slab.h>
29 #include <linux/highmem.h>
30 #include <linux/kthread.h>
32 #define MLOG_MASK_PREFIX ML_JOURNAL
33 #include <cluster/masklog.h>
35 #include "ocfs2.h"
37 #include "alloc.h"
38 #include "dir.h"
39 #include "dlmglue.h"
40 #include "extent_map.h"
41 #include "heartbeat.h"
42 #include "inode.h"
43 #include "journal.h"
44 #include "localalloc.h"
45 #include "slot_map.h"
46 #include "super.h"
47 #include "sysfile.h"
49 #include "buffer_head_io.h"
51 DEFINE_SPINLOCK(trans_inc_lock);
53 static int ocfs2_force_read_journal(struct inode *inode);
54 static int ocfs2_recover_node(struct ocfs2_super *osb,
55 int node_num);
56 static int __ocfs2_recovery_thread(void *arg);
57 static int ocfs2_commit_cache(struct ocfs2_super *osb);
58 static int ocfs2_wait_on_mount(struct ocfs2_super *osb);
59 static int ocfs2_journal_toggle_dirty(struct ocfs2_super *osb,
60 int dirty);
61 static int ocfs2_trylock_journal(struct ocfs2_super *osb,
62 int slot_num);
63 static int ocfs2_recover_orphans(struct ocfs2_super *osb,
64 int slot);
65 static int ocfs2_commit_thread(void *arg);
69 * The recovery_list is a simple linked list of node numbers to recover.
70 * It is protected by the recovery_lock.
73 struct ocfs2_recovery_map {
74 int rm_used;
75 unsigned int *rm_entries;
78 int ocfs2_recovery_init(struct ocfs2_super *osb)
80 struct ocfs2_recovery_map *rm;
82 mutex_init(&osb->recovery_lock);
83 osb->disable_recovery = 0;
84 osb->recovery_thread_task = NULL;
85 init_waitqueue_head(&osb->recovery_event);
87 rm = kzalloc(sizeof(struct ocfs2_recovery_map) +
88 osb->max_slots * sizeof(unsigned int),
89 GFP_KERNEL);
90 if (!rm) {
91 mlog_errno(-ENOMEM);
92 return -ENOMEM;
95 rm->rm_entries = (unsigned int *)((char *)rm +
96 sizeof(struct ocfs2_recovery_map));
97 osb->recovery_map = rm;
99 return 0;
102 /* we can't grab the goofy sem lock from inside wait_event, so we use
103 * memory barriers to make sure that we'll see the null task before
104 * being woken up */
105 static int ocfs2_recovery_thread_running(struct ocfs2_super *osb)
107 mb();
108 return osb->recovery_thread_task != NULL;
111 void ocfs2_recovery_exit(struct ocfs2_super *osb)
113 struct ocfs2_recovery_map *rm;
115 /* disable any new recovery threads and wait for any currently
116 * running ones to exit. Do this before setting the vol_state. */
117 mutex_lock(&osb->recovery_lock);
118 osb->disable_recovery = 1;
119 mutex_unlock(&osb->recovery_lock);
120 wait_event(osb->recovery_event, !ocfs2_recovery_thread_running(osb));
122 /* At this point, we know that no more recovery threads can be
123 * launched, so wait for any recovery completion work to
124 * complete. */
125 flush_workqueue(ocfs2_wq);
128 * Now that recovery is shut down, and the osb is about to be
129 * freed, the osb_lock is not taken here.
131 rm = osb->recovery_map;
132 /* XXX: Should we bug if there are dirty entries? */
134 kfree(rm);
137 static int __ocfs2_recovery_map_test(struct ocfs2_super *osb,
138 unsigned int node_num)
140 int i;
141 struct ocfs2_recovery_map *rm = osb->recovery_map;
143 assert_spin_locked(&osb->osb_lock);
145 for (i = 0; i < rm->rm_used; i++) {
146 if (rm->rm_entries[i] == node_num)
147 return 1;
150 return 0;
153 /* Behaves like test-and-set. Returns the previous value */
154 static int ocfs2_recovery_map_set(struct ocfs2_super *osb,
155 unsigned int node_num)
157 struct ocfs2_recovery_map *rm = osb->recovery_map;
159 spin_lock(&osb->osb_lock);
160 if (__ocfs2_recovery_map_test(osb, node_num)) {
161 spin_unlock(&osb->osb_lock);
162 return 1;
165 /* XXX: Can this be exploited? Not from o2dlm... */
166 BUG_ON(rm->rm_used >= osb->max_slots);
168 rm->rm_entries[rm->rm_used] = node_num;
169 rm->rm_used++;
170 spin_unlock(&osb->osb_lock);
172 return 0;
175 static void ocfs2_recovery_map_clear(struct ocfs2_super *osb,
176 unsigned int node_num)
178 int i;
179 struct ocfs2_recovery_map *rm = osb->recovery_map;
181 spin_lock(&osb->osb_lock);
183 for (i = 0; i < rm->rm_used; i++) {
184 if (rm->rm_entries[i] == node_num)
185 break;
188 if (i < rm->rm_used) {
189 /* XXX: be careful with the pointer math */
190 memmove(&(rm->rm_entries[i]), &(rm->rm_entries[i + 1]),
191 (rm->rm_used - i - 1) * sizeof(unsigned int));
192 rm->rm_used--;
195 spin_unlock(&osb->osb_lock);
198 static int ocfs2_commit_cache(struct ocfs2_super *osb)
200 int status = 0;
201 unsigned int flushed;
202 unsigned long old_id;
203 struct ocfs2_journal *journal = NULL;
205 mlog_entry_void();
207 journal = osb->journal;
209 /* Flush all pending commits and checkpoint the journal. */
210 down_write(&journal->j_trans_barrier);
212 if (atomic_read(&journal->j_num_trans) == 0) {
213 up_write(&journal->j_trans_barrier);
214 mlog(0, "No transactions for me to flush!\n");
215 goto finally;
218 journal_lock_updates(journal->j_journal);
219 status = journal_flush(journal->j_journal);
220 journal_unlock_updates(journal->j_journal);
221 if (status < 0) {
222 up_write(&journal->j_trans_barrier);
223 mlog_errno(status);
224 goto finally;
227 old_id = ocfs2_inc_trans_id(journal);
229 flushed = atomic_read(&journal->j_num_trans);
230 atomic_set(&journal->j_num_trans, 0);
231 up_write(&journal->j_trans_barrier);
233 mlog(0, "commit_thread: flushed transaction %lu (%u handles)\n",
234 journal->j_trans_id, flushed);
236 ocfs2_wake_downconvert_thread(osb);
237 wake_up(&journal->j_checkpointed);
238 finally:
239 mlog_exit(status);
240 return status;
243 /* pass it NULL and it will allocate a new handle object for you. If
244 * you pass it a handle however, it may still return error, in which
245 * case it has free'd the passed handle for you. */
246 handle_t *ocfs2_start_trans(struct ocfs2_super *osb, int max_buffs)
248 journal_t *journal = osb->journal->j_journal;
249 handle_t *handle;
251 BUG_ON(!osb || !osb->journal->j_journal);
253 if (ocfs2_is_hard_readonly(osb))
254 return ERR_PTR(-EROFS);
256 BUG_ON(osb->journal->j_state == OCFS2_JOURNAL_FREE);
257 BUG_ON(max_buffs <= 0);
259 /* JBD might support this, but our journalling code doesn't yet. */
260 if (journal_current_handle()) {
261 mlog(ML_ERROR, "Recursive transaction attempted!\n");
262 BUG();
265 down_read(&osb->journal->j_trans_barrier);
267 handle = journal_start(journal, max_buffs);
268 if (IS_ERR(handle)) {
269 up_read(&osb->journal->j_trans_barrier);
271 mlog_errno(PTR_ERR(handle));
273 if (is_journal_aborted(journal)) {
274 ocfs2_abort(osb->sb, "Detected aborted journal");
275 handle = ERR_PTR(-EROFS);
277 } else {
278 if (!ocfs2_mount_local(osb))
279 atomic_inc(&(osb->journal->j_num_trans));
282 return handle;
285 int ocfs2_commit_trans(struct ocfs2_super *osb,
286 handle_t *handle)
288 int ret;
289 struct ocfs2_journal *journal = osb->journal;
291 BUG_ON(!handle);
293 ret = journal_stop(handle);
294 if (ret < 0)
295 mlog_errno(ret);
297 up_read(&journal->j_trans_barrier);
299 return ret;
303 * 'nblocks' is what you want to add to the current
304 * transaction. extend_trans will either extend the current handle by
305 * nblocks, or commit it and start a new one with nblocks credits.
307 * This might call journal_restart() which will commit dirty buffers
308 * and then restart the transaction. Before calling
309 * ocfs2_extend_trans(), any changed blocks should have been
310 * dirtied. After calling it, all blocks which need to be changed must
311 * go through another set of journal_access/journal_dirty calls.
313 * WARNING: This will not release any semaphores or disk locks taken
314 * during the transaction, so make sure they were taken *before*
315 * start_trans or we'll have ordering deadlocks.
317 * WARNING2: Note that we do *not* drop j_trans_barrier here. This is
318 * good because transaction ids haven't yet been recorded on the
319 * cluster locks associated with this handle.
321 int ocfs2_extend_trans(handle_t *handle, int nblocks)
323 int status;
325 BUG_ON(!handle);
326 BUG_ON(!nblocks);
328 mlog_entry_void();
330 mlog(0, "Trying to extend transaction by %d blocks\n", nblocks);
332 #ifdef OCFS2_DEBUG_FS
333 status = 1;
334 #else
335 status = journal_extend(handle, nblocks);
336 if (status < 0) {
337 mlog_errno(status);
338 goto bail;
340 #endif
342 if (status > 0) {
343 mlog(0, "journal_extend failed, trying journal_restart\n");
344 status = journal_restart(handle, nblocks);
345 if (status < 0) {
346 mlog_errno(status);
347 goto bail;
351 status = 0;
352 bail:
354 mlog_exit(status);
355 return status;
358 int ocfs2_journal_access(handle_t *handle,
359 struct inode *inode,
360 struct buffer_head *bh,
361 int type)
363 int status;
365 BUG_ON(!inode);
366 BUG_ON(!handle);
367 BUG_ON(!bh);
369 mlog_entry("bh->b_blocknr=%llu, type=%d (\"%s\"), bh->b_size = %zu\n",
370 (unsigned long long)bh->b_blocknr, type,
371 (type == OCFS2_JOURNAL_ACCESS_CREATE) ?
372 "OCFS2_JOURNAL_ACCESS_CREATE" :
373 "OCFS2_JOURNAL_ACCESS_WRITE",
374 bh->b_size);
376 /* we can safely remove this assertion after testing. */
377 if (!buffer_uptodate(bh)) {
378 mlog(ML_ERROR, "giving me a buffer that's not uptodate!\n");
379 mlog(ML_ERROR, "b_blocknr=%llu\n",
380 (unsigned long long)bh->b_blocknr);
381 BUG();
384 /* Set the current transaction information on the inode so
385 * that the locking code knows whether it can drop it's locks
386 * on this inode or not. We're protected from the commit
387 * thread updating the current transaction id until
388 * ocfs2_commit_trans() because ocfs2_start_trans() took
389 * j_trans_barrier for us. */
390 ocfs2_set_inode_lock_trans(OCFS2_SB(inode->i_sb)->journal, inode);
392 mutex_lock(&OCFS2_I(inode)->ip_io_mutex);
393 switch (type) {
394 case OCFS2_JOURNAL_ACCESS_CREATE:
395 case OCFS2_JOURNAL_ACCESS_WRITE:
396 status = journal_get_write_access(handle, bh);
397 break;
399 case OCFS2_JOURNAL_ACCESS_UNDO:
400 status = journal_get_undo_access(handle, bh);
401 break;
403 default:
404 status = -EINVAL;
405 mlog(ML_ERROR, "Uknown access type!\n");
407 mutex_unlock(&OCFS2_I(inode)->ip_io_mutex);
409 if (status < 0)
410 mlog(ML_ERROR, "Error %d getting %d access to buffer!\n",
411 status, type);
413 mlog_exit(status);
414 return status;
417 int ocfs2_journal_dirty(handle_t *handle,
418 struct buffer_head *bh)
420 int status;
422 mlog_entry("(bh->b_blocknr=%llu)\n",
423 (unsigned long long)bh->b_blocknr);
425 status = journal_dirty_metadata(handle, bh);
426 if (status < 0)
427 mlog(ML_ERROR, "Could not dirty metadata buffer. "
428 "(bh->b_blocknr=%llu)\n",
429 (unsigned long long)bh->b_blocknr);
431 mlog_exit(status);
432 return status;
435 int ocfs2_journal_dirty_data(handle_t *handle,
436 struct buffer_head *bh)
438 int err = journal_dirty_data(handle, bh);
439 if (err)
440 mlog_errno(err);
441 /* TODO: When we can handle it, abort the handle and go RO on
442 * error here. */
444 return err;
447 #define OCFS2_DEFAULT_COMMIT_INTERVAL (HZ * JBD_DEFAULT_MAX_COMMIT_AGE)
449 void ocfs2_set_journal_params(struct ocfs2_super *osb)
451 journal_t *journal = osb->journal->j_journal;
452 unsigned long commit_interval = OCFS2_DEFAULT_COMMIT_INTERVAL;
454 if (osb->osb_commit_interval)
455 commit_interval = osb->osb_commit_interval;
457 spin_lock(&journal->j_state_lock);
458 journal->j_commit_interval = commit_interval;
459 if (osb->s_mount_opt & OCFS2_MOUNT_BARRIER)
460 journal->j_flags |= JFS_BARRIER;
461 else
462 journal->j_flags &= ~JFS_BARRIER;
463 spin_unlock(&journal->j_state_lock);
466 int ocfs2_journal_init(struct ocfs2_journal *journal, int *dirty)
468 int status = -1;
469 struct inode *inode = NULL; /* the journal inode */
470 journal_t *j_journal = NULL;
471 struct ocfs2_dinode *di = NULL;
472 struct buffer_head *bh = NULL;
473 struct ocfs2_super *osb;
474 int inode_lock = 0;
476 mlog_entry_void();
478 BUG_ON(!journal);
480 osb = journal->j_osb;
482 /* already have the inode for our journal */
483 inode = ocfs2_get_system_file_inode(osb, JOURNAL_SYSTEM_INODE,
484 osb->slot_num);
485 if (inode == NULL) {
486 status = -EACCES;
487 mlog_errno(status);
488 goto done;
490 if (is_bad_inode(inode)) {
491 mlog(ML_ERROR, "access error (bad inode)\n");
492 iput(inode);
493 inode = NULL;
494 status = -EACCES;
495 goto done;
498 SET_INODE_JOURNAL(inode);
499 OCFS2_I(inode)->ip_open_count++;
501 /* Skip recovery waits here - journal inode metadata never
502 * changes in a live cluster so it can be considered an
503 * exception to the rule. */
504 status = ocfs2_inode_lock_full(inode, &bh, 1, OCFS2_META_LOCK_RECOVERY);
505 if (status < 0) {
506 if (status != -ERESTARTSYS)
507 mlog(ML_ERROR, "Could not get lock on journal!\n");
508 goto done;
511 inode_lock = 1;
512 di = (struct ocfs2_dinode *)bh->b_data;
514 if (inode->i_size < OCFS2_MIN_JOURNAL_SIZE) {
515 mlog(ML_ERROR, "Journal file size (%lld) is too small!\n",
516 inode->i_size);
517 status = -EINVAL;
518 goto done;
521 mlog(0, "inode->i_size = %lld\n", inode->i_size);
522 mlog(0, "inode->i_blocks = %llu\n",
523 (unsigned long long)inode->i_blocks);
524 mlog(0, "inode->ip_clusters = %u\n", OCFS2_I(inode)->ip_clusters);
526 /* call the kernels journal init function now */
527 j_journal = journal_init_inode(inode);
528 if (j_journal == NULL) {
529 mlog(ML_ERROR, "Linux journal layer error\n");
530 status = -EINVAL;
531 goto done;
534 mlog(0, "Returned from journal_init_inode\n");
535 mlog(0, "j_journal->j_maxlen = %u\n", j_journal->j_maxlen);
537 *dirty = (le32_to_cpu(di->id1.journal1.ij_flags) &
538 OCFS2_JOURNAL_DIRTY_FL);
540 journal->j_journal = j_journal;
541 journal->j_inode = inode;
542 journal->j_bh = bh;
544 ocfs2_set_journal_params(osb);
546 journal->j_state = OCFS2_JOURNAL_LOADED;
548 status = 0;
549 done:
550 if (status < 0) {
551 if (inode_lock)
552 ocfs2_inode_unlock(inode, 1);
553 if (bh != NULL)
554 brelse(bh);
555 if (inode) {
556 OCFS2_I(inode)->ip_open_count--;
557 iput(inode);
561 mlog_exit(status);
562 return status;
565 static int ocfs2_journal_toggle_dirty(struct ocfs2_super *osb,
566 int dirty)
568 int status;
569 unsigned int flags;
570 struct ocfs2_journal *journal = osb->journal;
571 struct buffer_head *bh = journal->j_bh;
572 struct ocfs2_dinode *fe;
574 mlog_entry_void();
576 fe = (struct ocfs2_dinode *)bh->b_data;
577 if (!OCFS2_IS_VALID_DINODE(fe)) {
578 /* This is called from startup/shutdown which will
579 * handle the errors in a specific manner, so no need
580 * to call ocfs2_error() here. */
581 mlog(ML_ERROR, "Journal dinode %llu has invalid "
582 "signature: %.*s",
583 (unsigned long long)le64_to_cpu(fe->i_blkno), 7,
584 fe->i_signature);
585 status = -EIO;
586 goto out;
589 flags = le32_to_cpu(fe->id1.journal1.ij_flags);
590 if (dirty)
591 flags |= OCFS2_JOURNAL_DIRTY_FL;
592 else
593 flags &= ~OCFS2_JOURNAL_DIRTY_FL;
594 fe->id1.journal1.ij_flags = cpu_to_le32(flags);
596 status = ocfs2_write_block(osb, bh, journal->j_inode);
597 if (status < 0)
598 mlog_errno(status);
600 out:
601 mlog_exit(status);
602 return status;
606 * If the journal has been kmalloc'd it needs to be freed after this
607 * call.
609 void ocfs2_journal_shutdown(struct ocfs2_super *osb)
611 struct ocfs2_journal *journal = NULL;
612 int status = 0;
613 struct inode *inode = NULL;
614 int num_running_trans = 0;
616 mlog_entry_void();
618 BUG_ON(!osb);
620 journal = osb->journal;
621 if (!journal)
622 goto done;
624 inode = journal->j_inode;
626 if (journal->j_state != OCFS2_JOURNAL_LOADED)
627 goto done;
629 /* need to inc inode use count as journal_destroy will iput. */
630 if (!igrab(inode))
631 BUG();
633 num_running_trans = atomic_read(&(osb->journal->j_num_trans));
634 if (num_running_trans > 0)
635 mlog(0, "Shutting down journal: must wait on %d "
636 "running transactions!\n",
637 num_running_trans);
639 /* Do a commit_cache here. It will flush our journal, *and*
640 * release any locks that are still held.
641 * set the SHUTDOWN flag and release the trans lock.
642 * the commit thread will take the trans lock for us below. */
643 journal->j_state = OCFS2_JOURNAL_IN_SHUTDOWN;
645 /* The OCFS2_JOURNAL_IN_SHUTDOWN will signal to commit_cache to not
646 * drop the trans_lock (which we want to hold until we
647 * completely destroy the journal. */
648 if (osb->commit_task) {
649 /* Wait for the commit thread */
650 mlog(0, "Waiting for ocfs2commit to exit....\n");
651 kthread_stop(osb->commit_task);
652 osb->commit_task = NULL;
655 BUG_ON(atomic_read(&(osb->journal->j_num_trans)) != 0);
657 if (ocfs2_mount_local(osb)) {
658 journal_lock_updates(journal->j_journal);
659 status = journal_flush(journal->j_journal);
660 journal_unlock_updates(journal->j_journal);
661 if (status < 0)
662 mlog_errno(status);
665 if (status == 0) {
667 * Do not toggle if flush was unsuccessful otherwise
668 * will leave dirty metadata in a "clean" journal
670 status = ocfs2_journal_toggle_dirty(osb, 0);
671 if (status < 0)
672 mlog_errno(status);
675 /* Shutdown the kernel journal system */
676 journal_destroy(journal->j_journal);
678 OCFS2_I(inode)->ip_open_count--;
680 /* unlock our journal */
681 ocfs2_inode_unlock(inode, 1);
683 brelse(journal->j_bh);
684 journal->j_bh = NULL;
686 journal->j_state = OCFS2_JOURNAL_FREE;
688 // up_write(&journal->j_trans_barrier);
689 done:
690 if (inode)
691 iput(inode);
692 mlog_exit_void();
695 static void ocfs2_clear_journal_error(struct super_block *sb,
696 journal_t *journal,
697 int slot)
699 int olderr;
701 olderr = journal_errno(journal);
702 if (olderr) {
703 mlog(ML_ERROR, "File system error %d recorded in "
704 "journal %u.\n", olderr, slot);
705 mlog(ML_ERROR, "File system on device %s needs checking.\n",
706 sb->s_id);
708 journal_ack_err(journal);
709 journal_clear_err(journal);
713 int ocfs2_journal_load(struct ocfs2_journal *journal, int local)
715 int status = 0;
716 struct ocfs2_super *osb;
718 mlog_entry_void();
720 if (!journal)
721 BUG();
723 osb = journal->j_osb;
725 status = journal_load(journal->j_journal);
726 if (status < 0) {
727 mlog(ML_ERROR, "Failed to load journal!\n");
728 goto done;
731 ocfs2_clear_journal_error(osb->sb, journal->j_journal, osb->slot_num);
733 status = ocfs2_journal_toggle_dirty(osb, 1);
734 if (status < 0) {
735 mlog_errno(status);
736 goto done;
739 /* Launch the commit thread */
740 if (!local) {
741 osb->commit_task = kthread_run(ocfs2_commit_thread, osb,
742 "ocfs2cmt");
743 if (IS_ERR(osb->commit_task)) {
744 status = PTR_ERR(osb->commit_task);
745 osb->commit_task = NULL;
746 mlog(ML_ERROR, "unable to launch ocfs2commit thread, "
747 "error=%d", status);
748 goto done;
750 } else
751 osb->commit_task = NULL;
753 done:
754 mlog_exit(status);
755 return status;
759 /* 'full' flag tells us whether we clear out all blocks or if we just
760 * mark the journal clean */
761 int ocfs2_journal_wipe(struct ocfs2_journal *journal, int full)
763 int status;
765 mlog_entry_void();
767 BUG_ON(!journal);
769 status = journal_wipe(journal->j_journal, full);
770 if (status < 0) {
771 mlog_errno(status);
772 goto bail;
775 status = ocfs2_journal_toggle_dirty(journal->j_osb, 0);
776 if (status < 0)
777 mlog_errno(status);
779 bail:
780 mlog_exit(status);
781 return status;
784 static int ocfs2_recovery_completed(struct ocfs2_super *osb)
786 int empty;
787 struct ocfs2_recovery_map *rm = osb->recovery_map;
789 spin_lock(&osb->osb_lock);
790 empty = (rm->rm_used == 0);
791 spin_unlock(&osb->osb_lock);
793 return empty;
796 void ocfs2_wait_for_recovery(struct ocfs2_super *osb)
798 wait_event(osb->recovery_event, ocfs2_recovery_completed(osb));
802 * JBD Might read a cached version of another nodes journal file. We
803 * don't want this as this file changes often and we get no
804 * notification on those changes. The only way to be sure that we've
805 * got the most up to date version of those blocks then is to force
806 * read them off disk. Just searching through the buffer cache won't
807 * work as there may be pages backing this file which are still marked
808 * up to date. We know things can't change on this file underneath us
809 * as we have the lock by now :)
811 static int ocfs2_force_read_journal(struct inode *inode)
813 int status = 0;
814 int i;
815 u64 v_blkno, p_blkno, p_blocks, num_blocks;
816 #define CONCURRENT_JOURNAL_FILL 32ULL
817 struct buffer_head *bhs[CONCURRENT_JOURNAL_FILL];
819 mlog_entry_void();
821 memset(bhs, 0, sizeof(struct buffer_head *) * CONCURRENT_JOURNAL_FILL);
823 num_blocks = ocfs2_blocks_for_bytes(inode->i_sb, inode->i_size);
824 v_blkno = 0;
825 while (v_blkno < num_blocks) {
826 status = ocfs2_extent_map_get_blocks(inode, v_blkno,
827 &p_blkno, &p_blocks, NULL);
828 if (status < 0) {
829 mlog_errno(status);
830 goto bail;
833 if (p_blocks > CONCURRENT_JOURNAL_FILL)
834 p_blocks = CONCURRENT_JOURNAL_FILL;
836 /* We are reading journal data which should not
837 * be put in the uptodate cache */
838 status = ocfs2_read_blocks(OCFS2_SB(inode->i_sb),
839 p_blkno, p_blocks, bhs, 0,
840 NULL);
841 if (status < 0) {
842 mlog_errno(status);
843 goto bail;
846 for(i = 0; i < p_blocks; i++) {
847 brelse(bhs[i]);
848 bhs[i] = NULL;
851 v_blkno += p_blocks;
854 bail:
855 for(i = 0; i < CONCURRENT_JOURNAL_FILL; i++)
856 if (bhs[i])
857 brelse(bhs[i]);
858 mlog_exit(status);
859 return status;
862 struct ocfs2_la_recovery_item {
863 struct list_head lri_list;
864 int lri_slot;
865 struct ocfs2_dinode *lri_la_dinode;
866 struct ocfs2_dinode *lri_tl_dinode;
869 /* Does the second half of the recovery process. By this point, the
870 * node is marked clean and can actually be considered recovered,
871 * hence it's no longer in the recovery map, but there's still some
872 * cleanup we can do which shouldn't happen within the recovery thread
873 * as locking in that context becomes very difficult if we are to take
874 * recovering nodes into account.
876 * NOTE: This function can and will sleep on recovery of other nodes
877 * during cluster locking, just like any other ocfs2 process.
879 void ocfs2_complete_recovery(struct work_struct *work)
881 int ret;
882 struct ocfs2_journal *journal =
883 container_of(work, struct ocfs2_journal, j_recovery_work);
884 struct ocfs2_super *osb = journal->j_osb;
885 struct ocfs2_dinode *la_dinode, *tl_dinode;
886 struct ocfs2_la_recovery_item *item, *n;
887 LIST_HEAD(tmp_la_list);
889 mlog_entry_void();
891 mlog(0, "completing recovery from keventd\n");
893 spin_lock(&journal->j_lock);
894 list_splice_init(&journal->j_la_cleanups, &tmp_la_list);
895 spin_unlock(&journal->j_lock);
897 list_for_each_entry_safe(item, n, &tmp_la_list, lri_list) {
898 list_del_init(&item->lri_list);
900 mlog(0, "Complete recovery for slot %d\n", item->lri_slot);
902 la_dinode = item->lri_la_dinode;
903 if (la_dinode) {
904 mlog(0, "Clean up local alloc %llu\n",
905 (unsigned long long)le64_to_cpu(la_dinode->i_blkno));
907 ret = ocfs2_complete_local_alloc_recovery(osb,
908 la_dinode);
909 if (ret < 0)
910 mlog_errno(ret);
912 kfree(la_dinode);
915 tl_dinode = item->lri_tl_dinode;
916 if (tl_dinode) {
917 mlog(0, "Clean up truncate log %llu\n",
918 (unsigned long long)le64_to_cpu(tl_dinode->i_blkno));
920 ret = ocfs2_complete_truncate_log_recovery(osb,
921 tl_dinode);
922 if (ret < 0)
923 mlog_errno(ret);
925 kfree(tl_dinode);
928 ret = ocfs2_recover_orphans(osb, item->lri_slot);
929 if (ret < 0)
930 mlog_errno(ret);
932 kfree(item);
935 mlog(0, "Recovery completion\n");
936 mlog_exit_void();
939 /* NOTE: This function always eats your references to la_dinode and
940 * tl_dinode, either manually on error, or by passing them to
941 * ocfs2_complete_recovery */
942 static void ocfs2_queue_recovery_completion(struct ocfs2_journal *journal,
943 int slot_num,
944 struct ocfs2_dinode *la_dinode,
945 struct ocfs2_dinode *tl_dinode)
947 struct ocfs2_la_recovery_item *item;
949 item = kmalloc(sizeof(struct ocfs2_la_recovery_item), GFP_NOFS);
950 if (!item) {
951 /* Though we wish to avoid it, we are in fact safe in
952 * skipping local alloc cleanup as fsck.ocfs2 is more
953 * than capable of reclaiming unused space. */
954 if (la_dinode)
955 kfree(la_dinode);
957 if (tl_dinode)
958 kfree(tl_dinode);
960 mlog_errno(-ENOMEM);
961 return;
964 INIT_LIST_HEAD(&item->lri_list);
965 item->lri_la_dinode = la_dinode;
966 item->lri_slot = slot_num;
967 item->lri_tl_dinode = tl_dinode;
969 spin_lock(&journal->j_lock);
970 list_add_tail(&item->lri_list, &journal->j_la_cleanups);
971 queue_work(ocfs2_wq, &journal->j_recovery_work);
972 spin_unlock(&journal->j_lock);
975 /* Called by the mount code to queue recovery the last part of
976 * recovery for it's own slot. */
977 void ocfs2_complete_mount_recovery(struct ocfs2_super *osb)
979 struct ocfs2_journal *journal = osb->journal;
981 if (osb->dirty) {
982 /* No need to queue up our truncate_log as regular
983 * cleanup will catch that. */
984 ocfs2_queue_recovery_completion(journal,
985 osb->slot_num,
986 osb->local_alloc_copy,
987 NULL);
988 ocfs2_schedule_truncate_log_flush(osb, 0);
990 osb->local_alloc_copy = NULL;
991 osb->dirty = 0;
995 static int __ocfs2_recovery_thread(void *arg)
997 int status, node_num;
998 struct ocfs2_super *osb = arg;
999 struct ocfs2_recovery_map *rm = osb->recovery_map;
1001 mlog_entry_void();
1003 status = ocfs2_wait_on_mount(osb);
1004 if (status < 0) {
1005 goto bail;
1008 restart:
1009 status = ocfs2_super_lock(osb, 1);
1010 if (status < 0) {
1011 mlog_errno(status);
1012 goto bail;
1015 spin_lock(&osb->osb_lock);
1016 while (rm->rm_used) {
1017 /* It's always safe to remove entry zero, as we won't
1018 * clear it until ocfs2_recover_node() has succeeded. */
1019 node_num = rm->rm_entries[0];
1020 spin_unlock(&osb->osb_lock);
1022 status = ocfs2_recover_node(osb, node_num);
1023 if (!status) {
1024 ocfs2_recovery_map_clear(osb, node_num);
1025 } else {
1026 mlog(ML_ERROR,
1027 "Error %d recovering node %d on device (%u,%u)!\n",
1028 status, node_num,
1029 MAJOR(osb->sb->s_dev), MINOR(osb->sb->s_dev));
1030 mlog(ML_ERROR, "Volume requires unmount.\n");
1033 spin_lock(&osb->osb_lock);
1035 spin_unlock(&osb->osb_lock);
1036 mlog(0, "All nodes recovered\n");
1038 ocfs2_super_unlock(osb, 1);
1040 /* We always run recovery on our own orphan dir - the dead
1041 * node(s) may have disallowd a previos inode delete. Re-processing
1042 * is therefore required. */
1043 ocfs2_queue_recovery_completion(osb->journal, osb->slot_num, NULL,
1044 NULL);
1046 bail:
1047 mutex_lock(&osb->recovery_lock);
1048 if (!status && !ocfs2_recovery_completed(osb)) {
1049 mutex_unlock(&osb->recovery_lock);
1050 goto restart;
1053 osb->recovery_thread_task = NULL;
1054 mb(); /* sync with ocfs2_recovery_thread_running */
1055 wake_up(&osb->recovery_event);
1057 mutex_unlock(&osb->recovery_lock);
1059 mlog_exit(status);
1060 /* no one is callint kthread_stop() for us so the kthread() api
1061 * requires that we call do_exit(). And it isn't exported, but
1062 * complete_and_exit() seems to be a minimal wrapper around it. */
1063 complete_and_exit(NULL, status);
1064 return status;
1067 void ocfs2_recovery_thread(struct ocfs2_super *osb, int node_num)
1069 mlog_entry("(node_num=%d, osb->node_num = %d)\n",
1070 node_num, osb->node_num);
1072 mutex_lock(&osb->recovery_lock);
1073 if (osb->disable_recovery)
1074 goto out;
1076 /* People waiting on recovery will wait on
1077 * the recovery map to empty. */
1078 if (ocfs2_recovery_map_set(osb, node_num))
1079 mlog(0, "node %d already in recovery map.\n", node_num);
1081 mlog(0, "starting recovery thread...\n");
1083 if (osb->recovery_thread_task)
1084 goto out;
1086 osb->recovery_thread_task = kthread_run(__ocfs2_recovery_thread, osb,
1087 "ocfs2rec");
1088 if (IS_ERR(osb->recovery_thread_task)) {
1089 mlog_errno((int)PTR_ERR(osb->recovery_thread_task));
1090 osb->recovery_thread_task = NULL;
1093 out:
1094 mutex_unlock(&osb->recovery_lock);
1095 wake_up(&osb->recovery_event);
1097 mlog_exit_void();
1100 /* Does the actual journal replay and marks the journal inode as
1101 * clean. Will only replay if the journal inode is marked dirty. */
1102 static int ocfs2_replay_journal(struct ocfs2_super *osb,
1103 int node_num,
1104 int slot_num)
1106 int status;
1107 int got_lock = 0;
1108 unsigned int flags;
1109 struct inode *inode = NULL;
1110 struct ocfs2_dinode *fe;
1111 journal_t *journal = NULL;
1112 struct buffer_head *bh = NULL;
1114 inode = ocfs2_get_system_file_inode(osb, JOURNAL_SYSTEM_INODE,
1115 slot_num);
1116 if (inode == NULL) {
1117 status = -EACCES;
1118 mlog_errno(status);
1119 goto done;
1121 if (is_bad_inode(inode)) {
1122 status = -EACCES;
1123 iput(inode);
1124 inode = NULL;
1125 mlog_errno(status);
1126 goto done;
1128 SET_INODE_JOURNAL(inode);
1130 status = ocfs2_inode_lock_full(inode, &bh, 1, OCFS2_META_LOCK_RECOVERY);
1131 if (status < 0) {
1132 mlog(0, "status returned from ocfs2_inode_lock=%d\n", status);
1133 if (status != -ERESTARTSYS)
1134 mlog(ML_ERROR, "Could not lock journal!\n");
1135 goto done;
1137 got_lock = 1;
1139 fe = (struct ocfs2_dinode *) bh->b_data;
1141 flags = le32_to_cpu(fe->id1.journal1.ij_flags);
1143 if (!(flags & OCFS2_JOURNAL_DIRTY_FL)) {
1144 mlog(0, "No recovery required for node %d\n", node_num);
1145 goto done;
1148 mlog(ML_NOTICE, "Recovering node %d from slot %d on device (%u,%u)\n",
1149 node_num, slot_num,
1150 MAJOR(osb->sb->s_dev), MINOR(osb->sb->s_dev));
1152 OCFS2_I(inode)->ip_clusters = le32_to_cpu(fe->i_clusters);
1154 status = ocfs2_force_read_journal(inode);
1155 if (status < 0) {
1156 mlog_errno(status);
1157 goto done;
1160 mlog(0, "calling journal_init_inode\n");
1161 journal = journal_init_inode(inode);
1162 if (journal == NULL) {
1163 mlog(ML_ERROR, "Linux journal layer error\n");
1164 status = -EIO;
1165 goto done;
1168 status = journal_load(journal);
1169 if (status < 0) {
1170 mlog_errno(status);
1171 if (!igrab(inode))
1172 BUG();
1173 journal_destroy(journal);
1174 goto done;
1177 ocfs2_clear_journal_error(osb->sb, journal, slot_num);
1179 /* wipe the journal */
1180 mlog(0, "flushing the journal.\n");
1181 journal_lock_updates(journal);
1182 status = journal_flush(journal);
1183 journal_unlock_updates(journal);
1184 if (status < 0)
1185 mlog_errno(status);
1187 /* This will mark the node clean */
1188 flags = le32_to_cpu(fe->id1.journal1.ij_flags);
1189 flags &= ~OCFS2_JOURNAL_DIRTY_FL;
1190 fe->id1.journal1.ij_flags = cpu_to_le32(flags);
1192 status = ocfs2_write_block(osb, bh, inode);
1193 if (status < 0)
1194 mlog_errno(status);
1196 if (!igrab(inode))
1197 BUG();
1199 journal_destroy(journal);
1201 done:
1202 /* drop the lock on this nodes journal */
1203 if (got_lock)
1204 ocfs2_inode_unlock(inode, 1);
1206 if (inode)
1207 iput(inode);
1209 if (bh)
1210 brelse(bh);
1212 mlog_exit(status);
1213 return status;
1217 * Do the most important parts of node recovery:
1218 * - Replay it's journal
1219 * - Stamp a clean local allocator file
1220 * - Stamp a clean truncate log
1221 * - Mark the node clean
1223 * If this function completes without error, a node in OCFS2 can be
1224 * said to have been safely recovered. As a result, failure during the
1225 * second part of a nodes recovery process (local alloc recovery) is
1226 * far less concerning.
1228 static int ocfs2_recover_node(struct ocfs2_super *osb,
1229 int node_num)
1231 int status = 0;
1232 int slot_num;
1233 struct ocfs2_dinode *la_copy = NULL;
1234 struct ocfs2_dinode *tl_copy = NULL;
1236 mlog_entry("(node_num=%d, osb->node_num = %d)\n",
1237 node_num, osb->node_num);
1239 mlog(0, "checking node %d\n", node_num);
1241 /* Should not ever be called to recover ourselves -- in that
1242 * case we should've called ocfs2_journal_load instead. */
1243 BUG_ON(osb->node_num == node_num);
1245 slot_num = ocfs2_node_num_to_slot(osb, node_num);
1246 if (slot_num == -ENOENT) {
1247 status = 0;
1248 mlog(0, "no slot for this node, so no recovery required.\n");
1249 goto done;
1252 mlog(0, "node %d was using slot %d\n", node_num, slot_num);
1254 status = ocfs2_replay_journal(osb, node_num, slot_num);
1255 if (status < 0) {
1256 mlog_errno(status);
1257 goto done;
1260 /* Stamp a clean local alloc file AFTER recovering the journal... */
1261 status = ocfs2_begin_local_alloc_recovery(osb, slot_num, &la_copy);
1262 if (status < 0) {
1263 mlog_errno(status);
1264 goto done;
1267 /* An error from begin_truncate_log_recovery is not
1268 * serious enough to warrant halting the rest of
1269 * recovery. */
1270 status = ocfs2_begin_truncate_log_recovery(osb, slot_num, &tl_copy);
1271 if (status < 0)
1272 mlog_errno(status);
1274 /* Likewise, this would be a strange but ultimately not so
1275 * harmful place to get an error... */
1276 status = ocfs2_clear_slot(osb, slot_num);
1277 if (status < 0)
1278 mlog_errno(status);
1280 /* This will kfree the memory pointed to by la_copy and tl_copy */
1281 ocfs2_queue_recovery_completion(osb->journal, slot_num, la_copy,
1282 tl_copy);
1284 status = 0;
1285 done:
1287 mlog_exit(status);
1288 return status;
1291 /* Test node liveness by trylocking his journal. If we get the lock,
1292 * we drop it here. Return 0 if we got the lock, -EAGAIN if node is
1293 * still alive (we couldn't get the lock) and < 0 on error. */
1294 static int ocfs2_trylock_journal(struct ocfs2_super *osb,
1295 int slot_num)
1297 int status, flags;
1298 struct inode *inode = NULL;
1300 inode = ocfs2_get_system_file_inode(osb, JOURNAL_SYSTEM_INODE,
1301 slot_num);
1302 if (inode == NULL) {
1303 mlog(ML_ERROR, "access error\n");
1304 status = -EACCES;
1305 goto bail;
1307 if (is_bad_inode(inode)) {
1308 mlog(ML_ERROR, "access error (bad inode)\n");
1309 iput(inode);
1310 inode = NULL;
1311 status = -EACCES;
1312 goto bail;
1314 SET_INODE_JOURNAL(inode);
1316 flags = OCFS2_META_LOCK_RECOVERY | OCFS2_META_LOCK_NOQUEUE;
1317 status = ocfs2_inode_lock_full(inode, NULL, 1, flags);
1318 if (status < 0) {
1319 if (status != -EAGAIN)
1320 mlog_errno(status);
1321 goto bail;
1324 ocfs2_inode_unlock(inode, 1);
1325 bail:
1326 if (inode)
1327 iput(inode);
1329 return status;
1332 /* Call this underneath ocfs2_super_lock. It also assumes that the
1333 * slot info struct has been updated from disk. */
1334 int ocfs2_mark_dead_nodes(struct ocfs2_super *osb)
1336 unsigned int node_num;
1337 int status, i;
1339 /* This is called with the super block cluster lock, so we
1340 * know that the slot map can't change underneath us. */
1342 spin_lock(&osb->osb_lock);
1343 for (i = 0; i < osb->max_slots; i++) {
1344 if (i == osb->slot_num)
1345 continue;
1347 status = ocfs2_slot_to_node_num_locked(osb, i, &node_num);
1348 if (status == -ENOENT)
1349 continue;
1351 if (__ocfs2_recovery_map_test(osb, node_num))
1352 continue;
1353 spin_unlock(&osb->osb_lock);
1355 /* Ok, we have a slot occupied by another node which
1356 * is not in the recovery map. We trylock his journal
1357 * file here to test if he's alive. */
1358 status = ocfs2_trylock_journal(osb, i);
1359 if (!status) {
1360 /* Since we're called from mount, we know that
1361 * the recovery thread can't race us on
1362 * setting / checking the recovery bits. */
1363 ocfs2_recovery_thread(osb, node_num);
1364 } else if ((status < 0) && (status != -EAGAIN)) {
1365 mlog_errno(status);
1366 goto bail;
1369 spin_lock(&osb->osb_lock);
1371 spin_unlock(&osb->osb_lock);
1373 status = 0;
1374 bail:
1375 mlog_exit(status);
1376 return status;
1379 struct ocfs2_orphan_filldir_priv {
1380 struct inode *head;
1381 struct ocfs2_super *osb;
1384 static int ocfs2_orphan_filldir(void *priv, const char *name, int name_len,
1385 loff_t pos, u64 ino, unsigned type)
1387 struct ocfs2_orphan_filldir_priv *p = priv;
1388 struct inode *iter;
1390 if (name_len == 1 && !strncmp(".", name, 1))
1391 return 0;
1392 if (name_len == 2 && !strncmp("..", name, 2))
1393 return 0;
1395 /* Skip bad inodes so that recovery can continue */
1396 iter = ocfs2_iget(p->osb, ino,
1397 OCFS2_FI_FLAG_ORPHAN_RECOVERY, 0);
1398 if (IS_ERR(iter))
1399 return 0;
1401 mlog(0, "queue orphan %llu\n",
1402 (unsigned long long)OCFS2_I(iter)->ip_blkno);
1403 /* No locking is required for the next_orphan queue as there
1404 * is only ever a single process doing orphan recovery. */
1405 OCFS2_I(iter)->ip_next_orphan = p->head;
1406 p->head = iter;
1408 return 0;
1411 static int ocfs2_queue_orphans(struct ocfs2_super *osb,
1412 int slot,
1413 struct inode **head)
1415 int status;
1416 struct inode *orphan_dir_inode = NULL;
1417 struct ocfs2_orphan_filldir_priv priv;
1418 loff_t pos = 0;
1420 priv.osb = osb;
1421 priv.head = *head;
1423 orphan_dir_inode = ocfs2_get_system_file_inode(osb,
1424 ORPHAN_DIR_SYSTEM_INODE,
1425 slot);
1426 if (!orphan_dir_inode) {
1427 status = -ENOENT;
1428 mlog_errno(status);
1429 return status;
1432 mutex_lock(&orphan_dir_inode->i_mutex);
1433 status = ocfs2_inode_lock(orphan_dir_inode, NULL, 0);
1434 if (status < 0) {
1435 mlog_errno(status);
1436 goto out;
1439 status = ocfs2_dir_foreach(orphan_dir_inode, &pos, &priv,
1440 ocfs2_orphan_filldir);
1441 if (status) {
1442 mlog_errno(status);
1443 goto out_cluster;
1446 *head = priv.head;
1448 out_cluster:
1449 ocfs2_inode_unlock(orphan_dir_inode, 0);
1450 out:
1451 mutex_unlock(&orphan_dir_inode->i_mutex);
1452 iput(orphan_dir_inode);
1453 return status;
1456 static int ocfs2_orphan_recovery_can_continue(struct ocfs2_super *osb,
1457 int slot)
1459 int ret;
1461 spin_lock(&osb->osb_lock);
1462 ret = !osb->osb_orphan_wipes[slot];
1463 spin_unlock(&osb->osb_lock);
1464 return ret;
1467 static void ocfs2_mark_recovering_orphan_dir(struct ocfs2_super *osb,
1468 int slot)
1470 spin_lock(&osb->osb_lock);
1471 /* Mark ourselves such that new processes in delete_inode()
1472 * know to quit early. */
1473 ocfs2_node_map_set_bit(osb, &osb->osb_recovering_orphan_dirs, slot);
1474 while (osb->osb_orphan_wipes[slot]) {
1475 /* If any processes are already in the middle of an
1476 * orphan wipe on this dir, then we need to wait for
1477 * them. */
1478 spin_unlock(&osb->osb_lock);
1479 wait_event_interruptible(osb->osb_wipe_event,
1480 ocfs2_orphan_recovery_can_continue(osb, slot));
1481 spin_lock(&osb->osb_lock);
1483 spin_unlock(&osb->osb_lock);
1486 static void ocfs2_clear_recovering_orphan_dir(struct ocfs2_super *osb,
1487 int slot)
1489 ocfs2_node_map_clear_bit(osb, &osb->osb_recovering_orphan_dirs, slot);
1493 * Orphan recovery. Each mounted node has it's own orphan dir which we
1494 * must run during recovery. Our strategy here is to build a list of
1495 * the inodes in the orphan dir and iget/iput them. The VFS does
1496 * (most) of the rest of the work.
1498 * Orphan recovery can happen at any time, not just mount so we have a
1499 * couple of extra considerations.
1501 * - We grab as many inodes as we can under the orphan dir lock -
1502 * doing iget() outside the orphan dir risks getting a reference on
1503 * an invalid inode.
1504 * - We must be sure not to deadlock with other processes on the
1505 * system wanting to run delete_inode(). This can happen when they go
1506 * to lock the orphan dir and the orphan recovery process attempts to
1507 * iget() inside the orphan dir lock. This can be avoided by
1508 * advertising our state to ocfs2_delete_inode().
1510 static int ocfs2_recover_orphans(struct ocfs2_super *osb,
1511 int slot)
1513 int ret = 0;
1514 struct inode *inode = NULL;
1515 struct inode *iter;
1516 struct ocfs2_inode_info *oi;
1518 mlog(0, "Recover inodes from orphan dir in slot %d\n", slot);
1520 ocfs2_mark_recovering_orphan_dir(osb, slot);
1521 ret = ocfs2_queue_orphans(osb, slot, &inode);
1522 ocfs2_clear_recovering_orphan_dir(osb, slot);
1524 /* Error here should be noted, but we want to continue with as
1525 * many queued inodes as we've got. */
1526 if (ret)
1527 mlog_errno(ret);
1529 while (inode) {
1530 oi = OCFS2_I(inode);
1531 mlog(0, "iput orphan %llu\n", (unsigned long long)oi->ip_blkno);
1533 iter = oi->ip_next_orphan;
1535 spin_lock(&oi->ip_lock);
1536 /* The remote delete code may have set these on the
1537 * assumption that the other node would wipe them
1538 * successfully. If they are still in the node's
1539 * orphan dir, we need to reset that state. */
1540 oi->ip_flags &= ~(OCFS2_INODE_DELETED|OCFS2_INODE_SKIP_DELETE);
1542 /* Set the proper information to get us going into
1543 * ocfs2_delete_inode. */
1544 oi->ip_flags |= OCFS2_INODE_MAYBE_ORPHANED;
1545 spin_unlock(&oi->ip_lock);
1547 iput(inode);
1549 inode = iter;
1552 return ret;
1555 static int ocfs2_wait_on_mount(struct ocfs2_super *osb)
1557 /* This check is good because ocfs2 will wait on our recovery
1558 * thread before changing it to something other than MOUNTED
1559 * or DISABLED. */
1560 wait_event(osb->osb_mount_event,
1561 atomic_read(&osb->vol_state) == VOLUME_MOUNTED ||
1562 atomic_read(&osb->vol_state) == VOLUME_DISABLED);
1564 /* If there's an error on mount, then we may never get to the
1565 * MOUNTED flag, but this is set right before
1566 * dismount_volume() so we can trust it. */
1567 if (atomic_read(&osb->vol_state) == VOLUME_DISABLED) {
1568 mlog(0, "mount error, exiting!\n");
1569 return -EBUSY;
1572 return 0;
1575 static int ocfs2_commit_thread(void *arg)
1577 int status;
1578 struct ocfs2_super *osb = arg;
1579 struct ocfs2_journal *journal = osb->journal;
1581 /* we can trust j_num_trans here because _should_stop() is only set in
1582 * shutdown and nobody other than ourselves should be able to start
1583 * transactions. committing on shutdown might take a few iterations
1584 * as final transactions put deleted inodes on the list */
1585 while (!(kthread_should_stop() &&
1586 atomic_read(&journal->j_num_trans) == 0)) {
1588 wait_event_interruptible(osb->checkpoint_event,
1589 atomic_read(&journal->j_num_trans)
1590 || kthread_should_stop());
1592 status = ocfs2_commit_cache(osb);
1593 if (status < 0)
1594 mlog_errno(status);
1596 if (kthread_should_stop() && atomic_read(&journal->j_num_trans)){
1597 mlog(ML_KTHREAD,
1598 "commit_thread: %u transactions pending on "
1599 "shutdown\n",
1600 atomic_read(&journal->j_num_trans));
1604 return 0;
1607 /* Look for a dirty journal without taking any cluster locks. Used for
1608 * hard readonly access to determine whether the file system journals
1609 * require recovery. */
1610 int ocfs2_check_journals_nolocks(struct ocfs2_super *osb)
1612 int ret = 0;
1613 unsigned int slot;
1614 struct buffer_head *di_bh;
1615 struct ocfs2_dinode *di;
1616 struct inode *journal = NULL;
1618 for(slot = 0; slot < osb->max_slots; slot++) {
1619 journal = ocfs2_get_system_file_inode(osb,
1620 JOURNAL_SYSTEM_INODE,
1621 slot);
1622 if (!journal || is_bad_inode(journal)) {
1623 ret = -EACCES;
1624 mlog_errno(ret);
1625 goto out;
1628 di_bh = NULL;
1629 ret = ocfs2_read_block(osb, OCFS2_I(journal)->ip_blkno, &di_bh,
1630 0, journal);
1631 if (ret < 0) {
1632 mlog_errno(ret);
1633 goto out;
1636 di = (struct ocfs2_dinode *) di_bh->b_data;
1638 if (le32_to_cpu(di->id1.journal1.ij_flags) &
1639 OCFS2_JOURNAL_DIRTY_FL)
1640 ret = -EROFS;
1642 brelse(di_bh);
1643 if (ret)
1644 break;
1647 out:
1648 if (journal)
1649 iput(journal);
1651 return ret;