Commit 53308383 authored by Adrian Bunk's avatar Adrian Bunk Committed by Linus Torvalds

make jbd/journal.c:__journal_abort_hard() static

__journal_abort_hard() can now become static.
Signed-off-by: default avatarAdrian Bunk <bunk@kernel.org>
Signed-off-by: default avatarAndrew Morton <akpm@linux-foundation.org>
Signed-off-by: default avatarLinus Torvalds <torvalds@linux-foundation.org>
parent e86e1438
...@@ -1457,7 +1457,7 @@ static const char *journal_dev_name(journal_t *journal, char *buffer) ...@@ -1457,7 +1457,7 @@ static const char *journal_dev_name(journal_t *journal, char *buffer)
* Aborts hard --- we mark the abort as occurred, but do _nothing_ else, * Aborts hard --- we mark the abort as occurred, but do _nothing_ else,
* and don't attempt to make any other journal updates. * and don't attempt to make any other journal updates.
*/ */
void __journal_abort_hard(journal_t *journal) static void __journal_abort_hard(journal_t *journal)
{ {
transaction_t *transaction; transaction_t *transaction;
char b[BDEVNAME_SIZE]; char b[BDEVNAME_SIZE];
......
...@@ -924,7 +924,6 @@ extern int journal_recover (journal_t *journal); ...@@ -924,7 +924,6 @@ extern int journal_recover (journal_t *journal);
extern int journal_wipe (journal_t *, int); extern int journal_wipe (journal_t *, int);
extern int journal_skip_recovery (journal_t *); extern int journal_skip_recovery (journal_t *);
extern void journal_update_superblock (journal_t *, int); extern void journal_update_superblock (journal_t *, int);
extern void __journal_abort_hard (journal_t *);
extern void journal_abort (journal_t *, int); extern void journal_abort (journal_t *, int);
extern int journal_errno (journal_t *); extern int journal_errno (journal_t *);
extern void journal_ack_err (journal_t *); extern void journal_ack_err (journal_t *);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment