diff --git a/fs/jbd2/journal.c b/fs/jbd2/journal.c index 8a51c1ad7088..e50aeefaa217 100644 --- a/fs/jbd2/journal.c +++ b/fs/jbd2/journal.c @@ -754,6 +754,7 @@ int jbd2_fc_start(journal_t *journal, tid_t tid) return 0; } +EXPORT_SYMBOL(jbd2_fc_start); /* * Stop a fast commit. If fallback is set, this function starts commit of @@ -778,11 +779,13 @@ int jbd2_fc_stop(journal_t *journal) { return __jbd2_fc_stop(journal, 0, 0); } +EXPORT_SYMBOL(jbd2_fc_stop); int jbd2_fc_stop_do_commit(journal_t *journal, tid_t tid) { return __jbd2_fc_stop(journal, tid, 1); } +EXPORT_SYMBOL(jbd2_fc_stop_do_commit); /* Return 1 when transaction with given tid has already committed. */ int jbd2_transaction_committed(journal_t *journal, tid_t tid) @@ -954,6 +957,7 @@ int jbd2_fc_release_bufs(journal_t *journal) return 0; } +EXPORT_SYMBOL(jbd2_fc_release_bufs); /* * Conversion of logical to physical block numbers for the journal @@ -1389,6 +1393,7 @@ int jbd2_fc_init(journal_t *journal, int num_fc_blks) return -ENOMEM; return 0; } +EXPORT_SYMBOL(jbd2_fc_init); /* jbd2_journal_init_dev and jbd2_journal_init_inode: *